/* =========================================================
   DD-CREA
   FEUILLE DE STYLE PRINCIPALE
   ========================================================= */


/* =========================================================
   1. VARIABLES
   ========================================================= */

:root {

    --navy: #0b1726;
    --navy-light: #13243a;

    --gold: #c9a45c;
    --gold-light: #dfc27e;

    --cream: #f7f5f0;
    --white: #ffffff;

    --text: #26313d;
    --text-light: #737b84;

    --border: rgba(11, 23, 38, 0.10);

    --shadow:
        0 20px 60px rgba(11, 23, 38, 0.08);

    --radius: 18px;

    --transition: 0.3s ease;

}


/* =========================================================
   2. RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--white);

    color: var(--text);

    line-height: 1.7;

    overflow-x: hidden;
}

img {

    max-width: 100%;

    display: block;
}

a {

    color: inherit;

    text-decoration: none;

}

button,
input,
textarea,
select {

    font: inherit;
}


/* =========================================================
   3. CONTAINER
   ========================================================= */

.container {

    width: min(1180px, 92%);

    margin: 0 auto;
}


/* =========================================================
   4. HEADER
   ========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.96);

    border-bottom:
        1px solid transparent;

    transition:
        background var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}


.site-header.scrolled {

    background:
        rgba(255, 255, 255, 0.98);

    border-color: var(--border);

    box-shadow:
        0 8px 30px rgba(11, 23, 38, 0.08);
}


.header-inner {

    min-height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   5. LOGO
   ========================================================= */

.logo {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    font-weight: 800;

    letter-spacing: -1px;

    flex-shrink: 0;
}


.logo-main {

    color: var(--gold);

    font-size: 30px;

    font-weight: 900;
}


.logo-sub {

    color: var(--navy);

    font-size: 30px;

    font-weight: 900;
}


/* =========================================================
   6. NAVIGATION
   ========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 34px;

    margin-left: auto;
}


.main-nav a {

    position: relative;

    color: var(--navy);

    font-size: 15px;

    font-weight: 600;

    padding: 8px 0;

    transition:
        color var(--transition);
}


.main-nav a:hover {

    color: var(--gold);
}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition:
        width var(--transition);
}


.main-nav a:hover::after,
.main-nav a.active::after {

    width: 100%;
}


.main-nav a.active {

    color: var(--gold);
}


/* =========================================================
   7. HEADER CTA
   ========================================================= */

.header-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 22px;

    border-radius: 6px;

    background: var(--navy);

    color: var(--white);

    font-size: 14px;

    font-weight: 700;

    transition:
        transform var(--transition),
        background var(--transition);
}


.header-cta:hover {

    background: var(--gold);

    transform: translateY(-2px);
}


/* =========================================================
   8. MOBILE MENU
   ========================================================= */

.menu-toggle {

    display: none;

    width: 44px;

    height: 44px;

    border: none;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;
}


.menu-toggle span {

    width: 24px;

    height: 2px;

    background: var(--navy);

    transition:
        transform var(--transition),
        opacity var(--transition);
}


.menu-toggle.open span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);
}


.menu-toggle.open span:nth-child(2) {

    opacity: 0;
}


.menu-toggle.open span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   9. PAGE HERO
   ========================================================= */

.page-hero {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    padding:
        150px 0
        100px;

    background:
        linear-gradient(
            135deg,
            var(--navy) 0%,
            var(--navy-light) 100%
        );

    color: var(--white);

    overflow: hidden;
}


.page-hero::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    border:
        1px solid
        rgba(201, 164, 92, 0.20);

    top: -200px;

    right: -100px;
}


.page-hero::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background:
        rgba(201, 164, 92, 0.06);

    bottom: -150px;

    left: -100px;
}


.page-hero .container {

    position: relative;

    z-index: 2;
}


.section-label {

    display: inline-block;

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.page-hero h1 {

    max-width: 900px;

    font-size:
        clamp(42px, 6vw, 76px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;

    margin-bottom: 30px;
}


.page-hero h1 span {

    display: block;

    color: var(--gold);
}


.page-hero-text {

    max-width: 720px;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   10. BOUTONS
   ========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding:
        14px 27px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.2px;

    border: 1px solid transparent;

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}


.btn:hover {

    transform: translateY(-3px);
}


.btn-primary {

    background: var(--gold);

    color: var(--navy);

    border-color: var(--gold);
}


.btn-primary:hover {

    background: var(--gold-light);

    border-color: var(--gold-light);
}


.btn-secondary {

    background: transparent;

    color: var(--navy);

    border-color:
        rgba(11, 23, 38, 0.20);
}


.btn-secondary:hover {

    background: var(--navy);

    color: var(--white);

    border-color: var(--navy);
}


.page-hero .btn-secondary {

    color: var(--white);

    border-color:
        rgba(255, 255, 255, 0.35);
}


.page-hero .btn-secondary:hover {

    background: var(--white);

    color: var(--navy);

    border-color: var(--white);
}


.hero-actions {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;

    flex-wrap: wrap;
}


/* =========================================================
   11. SECTIONS COMMUNES
   ========================================================= */

.about-section,
.services-section,
.approach-section,
.values-section,
.why-section,
.positioning-section,
.contact-section {

    padding: 100px 0;
}


.section-heading {

    max-width: 750px;

    margin-bottom: 60px;
}


.section-heading.center {

    margin-left: auto;

    margin-right: auto;

    text-align: center;
}


.section-heading h2,
.about-content h2,
.positioning-title h2,
.why-title h2,
.contact-info h2 {

    color: var(--navy);

    font-size:
        clamp(32px, 4vw, 52px);

    line-height: 1.15;

    letter-spacing: -1px;

    margin-bottom: 22px;
}


.section-heading h2 span,
.about-content h2 span,
.positioning-title h2 span,
.why-title h2 span {

    color: var(--gold);
}


.section-heading p {

    color: var(--text-light);

    font-size: 17px;
}


/* =========================================================
   12. ABOUT SECTION
   ========================================================= */

.about-section {

    background: var(--cream);
}


.about-grid {

    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    gap: 80px;

    align-items: center;
}


.about-content p {

    color: var(--text-light);

    font-size: 16px;

    margin-bottom: 18px;
}


.about-content .btn {

    margin-top: 20px;
}


.about-highlight {

    position: relative;

    padding: 55px 45px;

    background: var(--navy);

    border-radius: var(--radius);

    color: var(--white);

    overflow: hidden;

    box-shadow: var(--shadow);
}


.about-highlight::after {

    content: "";

    position: absolute;

    width: 230px;

    height: 230px;

    border-radius: 50%;

    border:
        1px solid
        rgba(201, 164, 92, 0.25);

    right: -100px;

    bottom: -100px;
}


.highlight-label {

    display: block;

    position: relative;

    z-index: 2;

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 20px;
}


.highlight-number {

    position: relative;

    z-index: 2;

    color: var(--gold);

    font-size: 80px;

    font-weight: 900;

    line-height: 1;

    margin-bottom: 25px;
}


.about-highlight h3 {

    position: relative;

    z-index: 2;

    color: var(--white);

    font-size: 28px;

    line-height: 1.25;

    margin-bottom: 18px;
}


.about-highlight p {

    position: relative;

    z-index: 2;

    color:
        rgba(255, 255, 255, 0.72);

    line-height: 1.8;
}


/* =========================================================
   13. SERVICES
   ========================================================= */

.services-section {

    background: var(--white);
}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


.service-card {

    display: flex;

    gap: 25px;

    padding: 35px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 14px;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}


.service-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

    border-color:
        rgba(201, 164, 92, 0.45);
}


.service-num {

    flex-shrink: 0;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--gold);

    border-radius: 8px;

    font-size: 14px;

    font-weight: 900;
}


.service-info h4 {

    color: var(--navy);

    font-size: 20px;

    margin-bottom: 10px;
}


.service-info p {

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   14. APPROACH / PROCESS
   ========================================================= */

.approach-section {

    background: var(--cream);
}


.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.process-card {

    padding: 35px 28px;

    background: var(--white);

    border-radius: 14px;

    border:
        1px solid var(--border);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


.process-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);
}


.process-number {

    color: var(--gold);

    font-size: 15px;

    font-weight: 900;

    margin-bottom: 25px;
}


.process-card h3 {

    color: var(--navy);

    font-size: 22px;

    margin-bottom: 12px;
}


.process-card p {

    color: var(--text-light);

    font-size: 15px;
}


/* =========================================================
   15. ENGAGEMENT / STATS
   ========================================================= */

.engagement-section {

    padding: 100px 0;

    background: var(--cream);

    color: var(--navy);
}


.engagement-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.engagement-card {

    padding: 45px 35px;

    text-align: center;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 14px;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


.engagement-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);
}


.engagement-number {

    display: block;

    color: var(--gold);

    font-size: 50px;

    line-height: 1;

    font-weight: 900;

    margin-bottom: 15px;
}


.engagement-number.engagement-small {

    font-size: 36px;
}


.engagement-label {

    display: block;

    color: var(--navy);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.engagement-card p {

    color: var(--text-light);

    font-size: 15px;
}


/* =========================================================
   16. POSITIONNEMENT
   ========================================================= */

.positioning-section {

    background: var(--white);
}


.positioning-grid {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 90px;

    align-items: start;
}


.positioning-text {

    padding-top: 30px;
}


.positioning-text p {

    color: var(--text-light);

    font-size: 17px;

    margin-bottom: 22px;
}


/* =========================================================
   17. VALEURS
   ========================================================= */

.values-section {

    background: var(--white);
}


.values-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.value-card {

    padding: 35px 28px;

    background: var(--cream);

    border-radius: 14px;

    border:
        1px solid var(--border);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


.value-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);
}


.value-number {

    display: block;

    color: var(--gold);

    font-size: 13px;

    font-weight: 900;

    margin-bottom: 25px;
}


.value-card h3 {

    color: var(--navy);

    font-size: 23px;

    margin-bottom: 12px;
}


.value-card p {

    color: var(--text-light);

    font-size: 15px;
}


/* =========================================================
   18. WHY SECTION
   ========================================================= */

.why-section {

    background: var(--cream);
}


.why-grid {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 90px;

    align-items: start;
}


.why-list {

    display: flex;

    flex-direction: column;

    gap: 15px;
}


.why-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 18px 20px;

    background: var(--white);

    border-radius: 10px;

    color: var(--text);

    font-size: 15px;

    border:
        1px solid var(--border);
}


.check {

    flex-shrink: 0;

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--gold);

    color: var(--navy);

    font-weight: 900;
}


/* =========================================================
   19. CTA
   ========================================================= */

.cta-section {

    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-light)
        );

    color: var(--white);

    text-align: center;
}


.cta-content {

    max-width: 800px;

    margin: 0 auto;
}


.cta-content .section-label {

    margin-bottom: 20px;
}


.cta-content h2 {

    color: var(--white);

    font-size:
        clamp(34px, 5vw, 58px);

    line-height: 1.12;

    letter-spacing: -1px;

    margin-bottom: 22px;
}


.cta-content h2 span {

    color: var(--gold);

    display: block;
}


.cta-content p {

    max-width: 650px;

    margin:
        0 auto
        30px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 17px;
}


/* =========================================================
   20. CONTACT
   ========================================================= */

.contact-section {

    background: var(--cream);
}


.contact-grid {

    display: grid;

    grid-template-columns:
        0.85fr
        1.15fr;

    gap: 70px;

    align-items: start;
}


.contact-info h2 {

    font-size:
        clamp(30px, 4vw, 48px);
}


.contact-info > p {

    color: var(--text-light);

    font-size: 16px;

    margin-bottom: 35px;
}


.contact-details {

    display: flex;

    flex-direction: column;

    gap: 20px;
}


.contact-detail {

    display: flex;

    align-items: flex-start;

    gap: 15px;
}


.contact-detail-icon {

    flex-shrink: 0;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--navy);

    color: var(--gold);

    border-radius: 8px;

    font-weight: 900;
}


.contact-detail strong {

    display: block;

    color: var(--navy);

    font-size: 14px;

    margin-bottom: 3px;
}


.contact-detail a,
.contact-detail span {

    display: block;

    color: var(--text-light);

    font-size: 15px;

    transition:
        color var(--transition);
}


.contact-detail a:hover {

    color: var(--gold);
}


/* =========================================================
   21. CONTACT FORM
   ========================================================= */

.contact-form-wrapper {

    background: var(--white);

    padding: 40px;

    border-radius: 16px;

    border-top:
        4px solid var(--gold);

    box-shadow: var(--shadow);
}


.contact-form {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.form-group.full {

    grid-column:
        1 / -1;
}


.form-group label {

    color: var(--navy);

    font-size: 13px;

    font-weight: 800;
}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border:
        1px solid
        rgba(11, 23, 38, 0.14);

    border-radius: 8px;

    background: var(--white);

    color: var(--text);

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}


.form-group input,
.form-group select {

    height: 50px;

    padding:
        0 15px;
}


.form-group textarea {

    min-height: 150px;

    padding: 14px 15px;

    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #a4aab0;
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(201, 164, 92, 0.12);
}


.form-submit {

    grid-column:
        1 / -1;

    margin-top: 5px;
}


.form-submit .btn {

    width: 100%;
}


.form-note {

    grid-column:
        1 / -1;

    color: var(--text-light);

    font-size: 12px;

    text-align: center;

    margin-top: 5px;
}


/* =========================================================
   22. FOOTER
   ========================================================= */

/*
   IMPORTANT :
   Le footer utilise un fond NAVY.
   Tous les textes sont donc explicitement définis en BLANC.
   Cela corrige le problème visible sur ta capture.
*/

.site-footer {

    background: var(--navy);

    color: var(--white);

    padding:
        80px 0
        25px;
}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 60px;
}


.footer-brand .logo-sub {

    color: var(--white);
}


.footer-brand p {

    max-width: 310px;

    margin-top: 20px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 15px;

    line-height: 1.8;
}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}


.footer-column h4 {

    color: var(--white);

    font-size: 14px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 10px;
}


.footer-column a,
.footer-column span {

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 14px;

    transition:
        color var(--transition);
}


.footer-column a:hover {

    color: var(--gold);
}


.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);
}


.footer-bottom p {

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 13px;
}


.footer-socials {

    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}


.footer-socials a {

    color:
        rgba(255, 255, 255, 0.60);

    font-size: 13px;

    transition:
        color var(--transition);
}


.footer-socials a:hover {

    color: var(--gold);
}


/* =========================================================
   23. ANIMATIONS
   ========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   24. RESPONSIVE TABLET
   ========================================================= */

@media (max-width: 1000px) {


    .main-nav {

        gap: 20px;
    }


    .header-cta {

        display: none;
    }


    .about-grid {

        grid-template-columns:
            1fr;

        gap: 50px;
    }


    .positioning-grid {

        grid-template-columns:
            1fr;

        gap: 20px;
    }


    .why-grid {

        grid-template-columns:
            1fr;

        gap: 30px;
    }


    .process-grid {

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


    .values-grid {

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


    .footer-grid {

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


    .contact-grid {

        grid-template-columns:
            1fr;

        gap: 50px;
    }

}


/* =========================================================
   25. RESPONSIVE MOBILE
   ========================================================= */

@media (max-width: 760px) {


    /* HEADER */

    .header-inner {

        min-height: 75px;
    }


    .logo-main,
    .logo-sub {

        font-size: 25px;
    }


    .menu-toggle {

        display: flex;
    }


    .main-nav {

        position: absolute;

        top: 75px;

        left: 0;

        width: 100%;

        padding: 25px;

        background: var(--white);

        border-top:
            1px solid var(--border);

        box-shadow:
            0 15px 30px
            rgba(11, 23, 38, 0.08);

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;

        transform:
            translateY(-20px);

        opacity: 0;

        visibility: hidden;

        transition:
            opacity var(--transition),
            transform var(--transition),
            visibility var(--transition);
    }


    .main-nav.open {

        transform:
            translateY(0);

        opacity: 1;

        visibility: visible;
    }


    .main-nav a {

        width: 100%;

        padding: 12px 0;
    }


    .main-nav a::after {

        display: none;
    }


    /* HERO */

    .page-hero {

        min-height: 570px;

        padding:
            130px 0
            80px;
    }


    .page-hero h1 {

        font-size:
            clamp(38px, 11vw, 55px);

        letter-spacing: -1.5px;
    }


    .page-hero-text {

        font-size: 16px;
    }


    /* BUTTONS */

    .hero-actions {

        flex-direction: column;

        align-items: stretch;
    }


    .hero-actions .btn {

        width: 100%;
    }


    .btn {

        width: 100%;
    }


    /* SECTIONS */

    .about-section,
    .services-section,
    .approach-section,
    .values-section,
    .why-section,
    .positioning-section,
    .contact-section {

        padding: 75px 0;
    }


    .engagement-section {

        padding: 75px 0;
    }


    .cta-section {

        padding: 80px 0;
    }


    .section-heading {

        margin-bottom: 40px;
    }


    .section-heading h2,
    .about-content h2,
    .positioning-title h2,
    .why-title h2,
    .contact-info h2 {

        font-size:
            clamp(30px, 9vw, 42px);
    }


    /* SERVICES */

    .services-grid {

        grid-template-columns:
            1fr;
    }


    .service-card {

        padding: 28px;

        gap: 18px;
    }


    .service-info h4 {

        font-size: 18px;
    }


    /* PROCESS */

    .process-grid {

        grid-template-columns:
            1fr;
    }


    /* ENGAGEMENT */

    .engagement-grid {

        grid-template-columns:
            1fr;
    }


    .engagement-number {

        font-size: 45px;
    }


    /* VALUES */

    .values-grid {

        grid-template-columns:
            1fr;
    }


    /* ABOUT */

    .about-highlight {

        padding: 40px 30px;
    }


    .highlight-number {

        font-size: 65px;
    }


    /* CONTACT */

    .contact-form-wrapper {

        padding: 25px 20px;
    }


    .contact-form {

        grid-template-columns:
            1fr;
    }


    .form-group.full,
    .form-submit,
    .form-note {

        grid-column:
            auto;
    }


    /* FOOTER */

    .site-footer {

        padding-top: 60px;
    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap: 40px;

        padding-bottom: 45px;
    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    .footer-socials {

        gap: 14px;
    }

}


/* =========================================================
   26. PETITS ÉCRANS
   ========================================================= */

@media (max-width: 480px) {


    .container {

        width: 90%;
    }


    .page-hero {

        min-height: 540px;
    }


    .page-hero h1 {

        font-size: 37px;
    }


    .service-card {

        flex-direction: column;
    }


    .service-num {

        width: 42px;

        height: 42px;
    }


    .about-highlight h3 {

        font-size: 24px;
    }


    .footer-socials {

        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   27. ACCESSIBILITÉ
   ========================================================= */

:focus-visible {

    outline:
        3px solid
        rgba(201, 164, 92, 0.45);

    outline-offset: 3px;
}

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

/* =========================================================
   DD-CREA — SERVICES
   Icônes des services + logo
   ========================================================= */


/* ---------------------------------------------------------
   LOGO HEADER
   --------------------------------------------------------- */

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: 145px;
    height: auto;
    object-fit: contain;
}


/* ---------------------------------------------------------
   LISTE DES SERVICES
   --------------------------------------------------------- */

.services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 55px;
}


/* ---------------------------------------------------------
   CARTE SERVICE
   --------------------------------------------------------- */

.service-item {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 35px;

    min-height: 245px;
    padding: 52px;

    border: 1px solid rgba(7, 21, 47, 0.12);
    border-radius: 22px;

    background: #ffffff;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.service-item::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 3px;
    height: 0;

    background: #c9a45c;

    transition: height 0.35s ease;
}

.service-item:hover {
    transform: translateY(-5px);

    border-color: rgba(201, 164, 92, 0.55);

    box-shadow:
        0 18px 45px rgba(7, 21, 47, 0.08);
}

.service-item:hover::before {
    height: 100%;
}


/* ---------------------------------------------------------
   ICÔNE
   --------------------------------------------------------- */

.service-icon {
    flex: 0 0 72px;

    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: #f6f3ec;

    color: #c9a45c;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.service-icon svg {
    width: 34px;
    height: 34px;

    display: block;
}

.service-item:hover .service-icon {
    background: #07152f;
    color: #c9a45c;

    transform: scale(1.05);
}


/* ---------------------------------------------------------
   CONTENU
   --------------------------------------------------------- */

.service-content {
    padding-right: 30px;
}

.service-content h3 {
    margin: 5px 0 18px;

    color: #07152f;

    font-family: "Manrope", sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
}

.service-content p {
    max-width: 620px;

    margin: 0;

    color: #607089;

    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   FLÈCHE
   --------------------------------------------------------- */

.service-arrow {
    position: absolute;

    top: 48px;
    right: 45px;

    color: #c9a45c;

    font-size: 25px;
    font-weight: 500;

    opacity: 0.35;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.service-item:hover .service-arrow {
    opacity: 1;
    transform: translate(3px, -3px);
}


/* ---------------------------------------------------------
   RESPONSIVE TABLETTE
   --------------------------------------------------------- */

@media (max-width: 1000px) {

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

    .service-item {
        min-height: auto;
    }
}


/* ---------------------------------------------------------
   RESPONSIVE MOBILE
   --------------------------------------------------------- */

@media (max-width: 650px) {

    .brand-logo {
        width: 125px;
    }

    .services-list {
        gap: 18px;
        margin-top: 35px;
    }

    .service-item {
        gap: 20px;

        padding: 30px 25px;

        border-radius: 17px;
    }

    .service-icon {
        flex: 0 0 55px;

        width: 55px;
        height: 55px;

        border-radius: 14px;
    }

    .service-icon svg {
        width: 27px;
        height: 27px;
    }

    .service-content {
        padding-right: 25px;
    }

    .service-content h3 {
        margin-top: 2px;
        margin-bottom: 12px;

        font-size: 20px;
    }

    .service-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .service-arrow {
        top: 25px;
        right: 20px;

        font-size: 20px;
    }
}

/* +++++++++++++++++++++++++++++ */
/* ---------------------------------------------------------
   TRÈS PETITS ÉCRANS
   --------------------------------------------------------- */

@media (max-width: 420px) {

    .service-item {
        gap: 16px;
        padding: 25px 20px;
    }

    .service-icon {
        flex-basis: 48px;

        width: 48px;
        height: 48px;
    }

    .service-icon svg {
        width: 23px;
        height: 23px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 14px;
    }
}

/* =========================================================
   LOGO DD-CREA — FOOTER
   ========================================================= */

.footer-logo {
    width: 180px !important;
    height: auto !important;
    max-width: 180px !important;
    display: block;
    object-fit: contain;
}


/* =========================================================
   LOGO DD-CREA — FOOTER
   ========================================================= */

.footer-logo {
    width: 180px !important;
    height: auto !important;
    max-width: 180px !important;
    display: block;
    object-fit: contain;
}


/* Version mobile */
@media (max-width: 650px) {
    .footer-logo {
        width: 140px !important;
        max-width: 140px !important;
    }
}

/* =========================================================
   DD-CREA — NOTRE APPROCHE
   Design éditorial + animations
   ========================================================= */

.process-list {
    width: 100%;
    margin-top: 50px;
    border-top: 1px solid rgba(7, 21, 47, 0.15);
}

.process-item {
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 35px;
    align-items: center;

    padding: 38px 20px;

    border-bottom: 1px solid rgba(7, 21, 47, 0.15);

    background: transparent;

    overflow: hidden;

    transition:
        background 0.4s ease,
        padding-left 0.4s ease;
}

/* Barre verticale marron */
.process-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 4px;
    height: 0;

    background: #a8793f;

    transition: height 0.4s ease;
}

.process-item:hover {
    background: rgba(168, 121, 63, 0.06);
    padding-left: 35px;
}

.process-item:hover::before {
    height: 100%;
}


/* Numéro 01 / 02 / 03 / 04 */

.process-number {
    color: #a8793f;

    font-family: "Manrope", sans-serif;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.15em;

    align-self: start;

    padding-top: 8px;
}


/* Partie principale */

.process-main {
    width: 100%;
}


/* Titre */

.process-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.process-title h3 {
    margin: 0;

    color: #07152f;

    font-family: "Manrope", sans-serif;

    font-size: 38px;
    font-weight: 600;

    line-height: 1.15;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.process-item:hover .process-title h3 {
    color: #a8793f;
    transform: translateX(7px);
}


/* Flèche */

.process-arrow {
    display: flex;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #a8793f;
    color: #ffffff;

    font-size: 20px;

    opacity: 0;

    transform: translateX(-15px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.process-item:hover .process-arrow {
    opacity: 1;
    transform: translateX(0);
}


/* Description */

.process-main p {
    max-width: 720px;

    margin: 14px 0 0;

    color: #68778b;

    font-family: "DM Sans", sans-serif;

    font-size: 16px;

    line-height: 1.75;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.process-item:hover .process-main p {
    color: #46566b;
    transform: translateX(7px);
}


/* =========================================================
   ANIMATION
   Important : visible ET active sont acceptés
   ========================================================= */

/* On laisse les éléments visibles par défaut */
.process-item.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Animation si ton JS utilise .visible */
.process-item.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation si ton JS utilise .active */
.process-item.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


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

@media (max-width: 900px) {

    .process-item {
        grid-template-columns: 70px 1fr;

        gap: 25px;
    }

    .process-title h3 {
        font-size: 32px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .process-list {
        margin-top: 35px;
    }

    .process-item {
        grid-template-columns: 55px 1fr;
        gap: 18px;

        padding: 30px 10px;
    }

    .process-item:hover {
        padding-left: 18px;
    }

    .process-number {
        font-size: 13px;
    }

    .process-title h3 {
        font-size: 27px;
    }

    .process-main p {
        font-size: 15px;
        line-height: 1.65;
    }

    .process-arrow {
        width: 36px;
        height: 36px;

        font-size: 17px;
    }
}


@media (max-width: 480px) {

    .process-item {
        grid-template-columns: 45px 1fr;
        gap: 12px;

        padding: 25px 5px;
    }

    .process-title h3 {
        font-size: 23px;
    }

    .process-main p {
        font-size: 14px;
    }

    .process-arrow {
        display: none;
    }
}

/* =========================================================
   RÉALISATIONS
   ========================================================= */

.realisations-section {
    background: #f8f6f2;
    overflow: hidden;
}

.realisations-section .section-heading {
    margin-bottom: 55px;
}

/* Grille des 4 réalisations */
.realisations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Carte image */
.realisation-item {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #07152f;
    border-radius: 6px;
    isolation: isolate;
}

/* Image */
.realisation-item img {
    width: 100%;
    height: 100%;
    display: block;

    /*
       Très important :
       toutes les images auront exactement
       la même hauteur même si leurs dimensions
       originales sont différentes.
    */
    object-fit: cover;
    object-position: center;

    transition:
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.6s ease;
}

/* Léger dégradé élégant */
.realisation-item::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(7, 21, 47, 0.45),
            rgba(7, 21, 47, 0.04) 55%,
            transparent 100%
        );

    pointer-events: none;
    z-index: 1;

    opacity: 0.65;
    transition: opacity 0.5s ease;
}

/* Numéro discret */
.realisation-number {
    position: absolute;
    top: 22px;
    right: 22px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(7, 21, 47, 0.35);
    backdrop-filter: blur(8px);

    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;

    z-index: 3;

    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s ease;
}

/* Barre dorée */
.realisation-item::before {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 65px;
    height: 4px;

    background: #a8793f;

    z-index: 4;

    transition: width 0.5s ease;
}

/* =========================
   HOVER
   ========================= */

.realisation-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.92);
}

.realisation-item:hover::after {
    opacity: 0.9;
}

.realisation-item:hover .realisation-number {
    background: #a8793f;
    border-color: #a8793f;
    transform: translateY(-3px);
}

.realisation-item:hover::before {
    width: 110px;
}


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

@media (max-width: 900px) {

    .realisations-grid {
        gap: 18px;
    }

    .realisation-item {
        height: 360px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .realisations-section .section-heading {
        margin-bottom: 35px;
    }

    .realisations-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .realisation-item {
        height: 380px;
    }

}


/* =========================================================
   PETITS TÉLÉPHONES
   ========================================================= */

@media (max-width: 420px) {

    .realisation-item {
        height: 320px;
    }

    .realisation-number {
        top: 16px;
        right: 16px;

        width: 36px;
        height: 36px;

        font-size: 10px;
    }

}

/* =========================================================
   RÉALISATION MISE EN AVANT — MADE IN MALI
   Carte pleine largeur : image + légende éditoriale
   ========================================================= */

.realisation-feature {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;

    box-shadow: var(--shadow, 0 20px 60px rgba(11, 23, 38, 0.08));
}

.realisation-feature-media {
    position: relative;
    min-height: 380px;
}

.realisation-feature-media img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.realisation-feature-media .realisation-number {
    position: absolute;
    top: 22px;
    right: 22px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(7, 21, 47, 0.35);
    backdrop-filter: blur(8px);

    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.realisation-feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 48px 50px;
}

.realisation-tag {
    display: inline-block;

    margin-bottom: 16px;

    color: #a8793f;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.realisation-feature-text h3 {
    margin: 0 0 18px;

    color: #07152f;

    font-family: "Manrope", sans-serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;

    line-height: 1.15;
}

.realisation-feature-text p {
    max-width: 480px;

    margin: 0;

    color: #607089;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.75;
}


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

@media (max-width: 900px) {

    .realisation-feature {
        grid-template-columns: 1fr;
    }

    .realisation-feature-media {
        min-height: 320px;
    }

    .realisation-feature-text {
        padding: 38px 35px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .realisation-feature-media {
        min-height: 280px;
    }

    .realisation-feature-text {
        padding: 30px 24px;
    }

    .realisation-feature-text p {
        max-width: none;
        font-size: 15px;
    }

}

/* =========================================================
   LABEL HERO — DD-CREA AGENCY (police Algerian)
   ========================================================= */

.hero-label {
    font-family: "Rye", "Impact", "Arial Black", sans-serif;
    font-size: 16px;
    letter-spacing: 1.5px;
}

/* =========================================================
   LÉGENDE SUR LES RÉALISATIONS SIMPLES
   ========================================================= */

.realisation-caption {
    position: absolute;
    left: 26px;
    right: 60px;
    bottom: 26px;

    z-index: 2;

    color: #ffffff;
}

.realisation-caption .realisation-tag {
    display: inline-block;

    margin-bottom: 8px;

    color: #dfc27e;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.realisation-caption h3 {
    margin: 0;

    max-width: 300px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.32;
}


@media (max-width: 650px) {

    .realisation-caption {
        left: 20px;
        right: 55px;
        bottom: 20px;
    }

    .realisation-caption h3 {
        font-size: 17px;
    }

}

/* =========================================================
   FIN DU CSS
   ========================================================= */