

:root {
    --bg: #05080d;
    --bg2: #07101b;
    --card: #0c1522;
    --line: rgba(255, 255, 255, .13);
    --soft: rgba(255, 255, 255, .64);
    --muted: rgba(255, 255, 255, .46);
    --white: #f4f7ff;
    --blue: #136bff;
    --blue2: #0057ff;
    --max: 1280px;
    --site-pad: clamp(72px, 10vw, 260px);
    --pad: 64px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font-family: "polymath", sans-serif;
    font-weight: 300;
    letter-spacing: .015em;
    overflow-x: hidden
}

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

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



.blue-veil {
    position: fixed;
    inset: auto -10vw 20vh auto;
    width: 58vw;
    height: 58vw;
    background: radial-gradient(circle, rgba(0, 77, 255, .18), transparent 60%);
    filter: blur(20px);
    z-index: -1
}

.topbar {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    padding: 0 46px;
    display: flex;
    align-items: center;
}

.logo {
    margin-right: auto;
    display: flex;
    align-items: center;
}

.logo img {
    width: 60px;
    height: auto;
    object-fit: contain;
}


.nav {
    display: flex;
    gap: 52px;
    margin-right: 56px;
    color: rgba(255, 255, 255, .72);
}

.nav a {
    position: relative;
    transition: .25s;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    transform: translateX(-50%) scale(0);
    transition: .25s;
}

.nav a.active::after {
    transform: translateX(-50%) scale(1);
}

.nav a:hover {
    color: white
}

.contact-pill {
    justify-self: end;
    border: 1px solid var(--blue);
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    transition: .25s;
}

.contact-pill:hover {
    background: rgba(19, 107, 255, .12);
    box-shadow: 0 0 24px rgba(19, 107, 255, .25);
}

.section {
    position: relative;

}

.hero {
    width: 100vw;
    max-width: none;
    min-height: 100svh;
    margin: 0;
    display: grid;
    grid-template-columns: 47vw 1fr;
    align-items: center;
    background: #02050a;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #02050a;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .02) 0%,
            rgba(0, 0, 0, .02) 40%,
            rgba(0, 0, 0, .18) 48%,
            rgba(0, 0, 0, .42) 100%);
}

.hero-copy {
    position: relative;
    z-index: 3;
    grid-column: 2;

    width: min(760px, 44vw);
    max-width: 760px;

    justify-self: start;
    margin-left: clamp(90px, 10vw, 220px);
    padding-top: 42px;

    transform: translateY(20px);
}


.kicker {
    display: none;
}

.hero h1 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 600 !important;
    font-size: clamp(54px, 4.9vw, 92px) !important;
    line-height: .92 !important;
    letter-spacing: -0.045em !important;
}

.hero h1 .line-white,
.hero h1 .line-mix {
    display: block;
    white-space: nowrap;
}

.hero h1 .line-mix span {
    color: var(--blue);
}

.hero-copy {
    position: relative;
    z-index: 3;

    grid-column: 2;

    width: min(780px, 100%);
    max-width: 100%;

    justify-self: start;

    padding-top: 42px;

    margin-left: clamp(40px, 8vw, 160px);

    transform: translateY(20px);
}

.lead {
    max-width: 640px;
    margin: 42px 0 34px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .72);
}

.lead:before {
    content: "";
    display: block;
    width: 82px;
    height: 4px;
    background: var(--blue);
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 28px;
    background: linear-gradient(135deg, #176fff, #004eff);
    border-radius: 6px;
    font-size: 18px;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
    box-shadow: 0 0 38px rgba(0, 83, 255, .27);
    transition: .28s;
}


.kicker {
    margin: 0 0 17px;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 9px;
    letter-spacing: .28em
}

.hero h1,
.section h2 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
    line-height: .9;
    letter-spacing: .035em
}

.hero h1 {
    font-size: clamp(68px, 5.45vw, 96px)
}

.section h2 span {
    color: var(--blue);
    text-shadow: 0 0 26px rgba(0, 91, 255, .32);
}

.hero h1 .line-white,
.hero h1 .line-mix {
    color: var(--white);
}

.hero h1 .line-mix .blue-word {
    color: var(--blue);
    text-shadow: 0 0 26px rgba(0, 91, 255, .32);
}

.lead {
    max-width: 520px;
    margin: 34px 0 26px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .72)
}

.btn {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 19px;
    background: linear-gradient(135deg, #176fff, #004eff);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .12em;
    box-shadow: 0 0 38px rgba(0, 83, 255, .27);
    transition: .28s
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 52px rgba(0, 83, 255, .48)
}

.intro {
    position: relative;
    z-index: 2;
    width: 100vw;
    max-width: none;
    padding: 180px 0;
    overflow: hidden;
    background: url("../assets/intro-bg.jpg") center/cover no-repeat !important;
}

.intro {
    background: url("../assets/intro-bg.jpg") center/cover no-repeat !important;
}



@media (max-width:768px) {

    .intro {
        padding: 90px 24px !important;
    }

    .grid-2 {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 32px !important;

        width: 100% !important;
    }

    .intro-line {
        width: 72px !important;
        height: 3px !important;
        background: var(--blue);

        margin: 0 !important;
    }

    .intro h2 {
        font-size: 52px !important;
        line-height: .9 !important;
    }

    .intro-text {
        grid-column: auto !important;

        width: 100% !important;
        max-width: 100% !important;

        padding: 0 !important;
        margin: 0 !important;

        border: none !important;

        font-size: 15px !important;
        line-height: 1.7 !important;
    }
}

.intro:after {
    content: "";
    position: absolute;
    right: -12vw;
    top: 38px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255, 255, 255, .05);
    transform: skewX(-28deg);
    opacity: .65
}

.intro h2 {
    font-size: 50px;
    line-height: .92;
    letter-spacing: -.03em;
}

.intro-text {
    grid-column: 3;
    max-width: 760px;
    border-left: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .88);
}

.intro-line {
    width: 3px;
    height: 170px;
    background: var(--blue);
}

.intro:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .02),
            transparent);
    pointer-events: none;
}

.intro:after {
    content: "";
    position: absolute;
    right: -140px;
    top: 50%;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .06);
    transform:
        translateY(-50%) skewX(-28deg);
    opacity: .8;
}




/* =========================================================
   SERVICES BLOCK
   Bloc "Des solutions pensées pour créer de l'impact"
========================================================= */

.section-head.compact {
    grid-template-columns: 43% 1fr;
    align-items: center;
}

.services {
    width: 100vw;
    max-width: none;

    padding:
        180px calc((100vw - min(1420px, calc(100vw - var(--pad)*2))) / 2) 200px;

    background: #04070d;
    overflow: hidden;
}

.services .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 90px;
}

.services h2 {
    max-width: 980px;

    font-size: 40px;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.tiny-link {
    display: flex;
    align-items: center;
    gap: 18px;

    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .78);
}

.tiny-link::after {
    content: "→";
    color: var(--blue);
    font-size: 38px;
    line-height: 1;
}

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

.card-grid {
    display: grid;
    gap: 28px;
}

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

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

.card {
    aspect-ratio: 1 / 1;

    background: #0b121c;
    border: 1px solid rgba(255, 255, 255, .06);

    padding: 46px 38px 90px;

    position: relative;
    overflow: hidden;

    transition: .35s;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 0,
            rgba(19, 107, 255, .12),
            transparent 40%);

    pointer-events: none;
    z-index: 0;
}

.card>* {
    position: relative;
    z-index: 1;
}

.service-icon{
    display:block;

    width:72px;
    height:72px;

    object-fit:contain;

    margin-bottom:48px;
}

.card h3 {
    margin: 0;

    text-transform: uppercase;
    font-weight: 800;

    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.card p {
    margin: 22px 0 0;

    max-width: 250px;

    color: rgba(255, 255, 255, .82);

    font-size: 16px;
    line-height: 1.55;
}

.services .card::before {
    content: "→";

    position: absolute;
    left: 38px;
    bottom: 15px;

    color: var(--blue);

    font-size: 34px;
    line-height: 1;
    font-weight: 300;

    z-index: 1;

    transition: .3s;
}

.services .card:hover::before {
    transform: translateX(8px);
}

.card:hover {
    transform: translateY(-8px);

    border-color: rgba(19, 107, 255, .4);

    box-shadow:
        0 0 40px rgba(19, 107, 255, .12);
}

.packs {
    width: 100vw;
    max-width: none;
    padding: 126px calc((100vw - min(var(--max), calc(100vw - var(--pad)*2)))/2);
    background: #050505
}

.section-copy {
    max-width: 630px;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    line-height: 1.7
}

.pack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 62px
}

.pack {
    min-height: 490px;
    border: 1px solid rgba(255, 255, 255, .16);
    padding: 28px 24px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0));
    display: flex;
    flex-direction: column
}

.pack.featured {
    background: linear-gradient(165deg, #176fff, #061126 72%);
    border-color: #1b6cff;
    box-shadow: 0 0 55px rgba(0, 85, 255, .22)
}

.pack small {
    color: rgba(255, 255, 255, .62);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: .16em
}

.pack h3 {
    font-size: 32px;
    line-height: .96;
    margin: 12px 0 22px
}

.pack p,
.pack li,
.pack em {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.55
}

.pack ul {
    padding-left: 16px;
    margin: 18px 0 28px
}

.pack li::marker {
    color: var(--blue)
}

.pack strong {
    margin-top: auto;
    font-weight: 800;
    font-size: 24px
}

.pack em {
    font-style: normal
}

.projects {
    width: 100vw;
    max-width: none;
    padding: 110px 0 120px;
    background:
        radial-gradient(circle at 8% 8%, rgba(19, 107, 255, .24), transparent 28%),
        linear-gradient(180deg, #050912 0%, #06101d 100%);
    overflow: hidden;
}

.projects-inner {
    width: min(var(--max), calc(100vw - var(--site-pad)));
    margin: 0 auto;
    max-width: 1440px;
}



.process {
    padding: 95px 0 105px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 70px;
    align-items: start;
}

.process .kicker {
    display: block;
    margin: 0 0 18px;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
}

.process h2 {
    font-size: 48px;
    line-height: .95;
    letter-spacing: -.045em;
    margin: 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
    padding-top: 4px;
}

.steps article {
    border-left: 3px solid var(--blue);
    padding-left: 28px;
    min-height: 138px;
}

.steps b {
    display: block;
    color: var(--blue);
    font-size: 38px;
    line-height: 1;
    font-weight: 300;
    margin-bottom: 18px;
}

.steps h3 {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 800;
}

.steps p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .74);
    line-height: 1.45;
}

.proof {
    width: 100vw;
    max-width: none;
    padding: 110px 0 0;
    background:
        radial-gradient(circle at 8% 4%, rgba(19, 107, 255, .28), transparent 28%),
        radial-gradient(circle at 82% 0%, rgba(19, 107, 255, .12), transparent 30%),
        #03070d;
    overflow: hidden;
}

.proof-inner {
    width: min(var(--max), calc(100vw - var(--site-pad)));
    margin: 0 auto;
    position: relative;
    padding-bottom: 110px;
}

.proof .kicker {
    display: block;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    margin: 0 0 18px;
}

.proof-head {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 160px;
    align-items: start;
    margin-bottom: 90px;
}

.proof h2 {
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -.04em;
    
}

.proof h2 span {
    color: var(--blue);
}

.proof-head>p {
    max-width: 430px;
    margin-top: 34px;
    color: rgba(255, 255, 255, .84);
    font-size: 15px;
    line-height: 1.5;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 80px;
}

.proof-stats article {
    position: relative;
    padding: 0 70px 0 0;
}




.proof-stats strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 16px;
}

.proof-stats span {
    display: block;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
}

.proof-stats p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.45;
}

.proof-bottom blockquote {
    display: grid;
    grid-template-columns: 76px 1fr;
    column-gap: 26px;
    row-gap: 14px;
    margin: 0;
    align-items: start;
}

.proof-bottom blockquote b {
    grid-row: 1 / span 2;
    color: var(--blue);
    font-size: 118px;
    line-height: .72;
    font-weight: 800;
    transform: translateY(-4px);
}

.proof-bottom blockquote p {
    margin: 0;
    max-width: 360px;
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    line-height: 1.6;
}

.proof-bottom {
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding-top: 62px;
    display: grid;
    grid-template-columns: 1fr 1fr 340px;
    gap: 64px;
    align-items: start;
}

.proof-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 34px;
    color: rgba(255, 255, 255, .66);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .06em;
}

.cta {
    width: 100vw;
    max-width: none;
    min-height: 620px;
    padding: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(19, 107, 255, .15), transparent 30%),
        #03070d;
    overflow: hidden;
}

.cta-inner {
    width: min(var(--max), calc(100vw - var(--site-pad)));
    min-height: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    position: relative;
}

.cta .kicker {
    display: block;
    margin: 0 0 28px;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .08em;
}

.cta h2 {
    margin: 0 0 44px;
    font-size: 62px;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.cta h2 span {
    color: var(--blue);
}

.cta .btn {
    height: 42px !important;
    padding: 0 22px !important;
    font-size: 14px !important;
    border-radius: 5px !important;
}

.cta-inner {
    position: relative;
    overflow: hidden;

    width: 100%;
    min-height: 620px;

    display: flex;
    align-items: center;

    padding-left: var(--site-pad);

    background:
        linear-gradient(90deg,
            rgba(2, 5, 10, .88) 0%,
            rgba(2, 5, 10, .55) 34%,
            rgba(2, 5, 10, .08) 60%,
            rgba(2, 5, 10, 0) 100%),
        url("../assets/footer-statue.jpg");

    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-copy {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.footer {
    width: min(var(--max), calc(100vw - var(--pad)*2));
    margin: -42px auto 0;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    letter-spacing: .12em;
    padding-bottom: 34px
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .85s ease, transform .85s cubic-bezier(.2, .75, .2, 1)
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none
}

@media (max-width:900px) {
    :root {
        --pad: 24px
    }

    .topbar {
        position: fixed;
        background: rgba(5, 8, 13, .8);
        backdrop-filter: blur(16px);
        padding: 0 22px;
        grid-template-columns: 1fr auto
    }

    .nav {
        display: none
    }

    .hero {
        grid-template-columns: var(--pad) 1fr var(--pad);
        min-height: 760px
    }

    .hero-video {
        object-position: 30% center
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(1, 4, 9, .08), rgba(1, 4, 9, .56)), linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .54))
    }

    .hero:after {
        left: 38%;
        top: 18%;
        height: 340px;
        min-height: 0;
        opacity: .42
    }

    .hero-copy {
        grid-column: 2;
        transform: none;
        width: min(var(--max), calc(100vw - var(--pad)*2));
        padding: 120px 0 78px
    }

    .hero h1 {
        font-size: 50px
    }

    .section h2,
    .process h2,
    .cta h2 {
        font-size: 38px
    }

    .grid-2,
    .section-head,
    .section-head.compact,
    .pack-grid,
    .project-grid,
    .steps,
    .quotes,
    .cta {
        grid-template-columns: 1fr
    }

    .grid-2 {
        position: relative;
    }

    .intro,
    .services,
    .packs,
    .projects,
    .process,
    .proof,
    .cta {
        padding-top: 78px;
        padding-bottom: 78px
    }

    .four,
    .three {
        grid-template-columns: 1fr
    }

    .intro-text,
    .section-head>p {
        border-left: 2px solid var(--blue);
        padding-left: 22px
    }

    .pack {
        min-height: auto
    }

    .cta {
        min-height: auto
    }

    .cta-separator {
        display: none
    }

    .footer {
        margin: 0 auto
    }
}



/* === CORRECTIONS HERO FINAL === */

.hero .hero-copy h1,
.hero h1,
main .hero h1 {

    font-weight: 600 !important;

    font-size: clamp(54px, 5.4vw, 104px) !important;

    line-height: .92 !important;

    letter-spacing: -0.045em !important;

    text-transform: uppercase !important;

    max-width: 10ch;
}

.hero h1 span {
    color: var(--blue);
}

.btn {
    height: 50px !important;
    padding: 0 28px !important;
    border-radius: 6px !important;
    font-size: 18px !important;
    text-transform: none !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.hero-copy {
    width: 780px !important;
    max-width: 780px !important;
}

/* RESET FINAL HERO TITLE */
.hero .hero-copy h1,
.hero h1,
main .hero h1 {
    font-weight: 600 !important;
    font-size: clamp(74px, 5.4vw, 104px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
    text-transform: uppercase !important;
}



.cursor-click {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(19, 107, 255, .9);

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

    transform: translate(-50%, -50%);
    animation: cursorPulse .45s ease-out forwards;
}

@keyframes cursorPulse {

    0% {
        width: 8px;
        height: 8px;
        opacity: 1;
    }

    100% {
        width: 54px;
        height: 54px;
        opacity: 0;
    }

}

html,
body,
a,
button,
input,
textarea,
select,
label,
[role="button"] {
    cursor: none !important;
}

.cursor-dot {
    position: fixed;
    left: 0;
    top: 0;

    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #136bff;

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

    transform: translate(-50%, -50%);

    box-shadow:
        0 0 12px rgba(19, 107, 255, .9),
        0 0 24px rgba(19, 107, 255, .45);
}

.cursor-click {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(19, 107, 255, .9);

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

    transform: translate(-50%, -50%);
    animation: cursorPulse .45s ease-out forwards;
}

@keyframes cursorPulse {

    0% {
        width: 8px;
        height: 8px;
        opacity: 1;
    }

    100% {
        width: 54px;
        height: 54px;
        opacity: 0;
    }

}


/* =========================================================
   IMMERSIVE PACKS SECTION
========================================================= */

.packs-immersive {
    position: relative;
    height: 400vh;
    background: #02050a;
}

.packs-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: #02050a;
}

.packs-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 44%, rgba(19, 107, 255, .22), transparent 28%),
        radial-gradient(circle at 50% 60%, rgba(19, 107, 255, .12), transparent 32%),
        linear-gradient(180deg, #05080d, #02050a);
}

.packs-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .14;
    mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.packs-ui {
    position: relative;
    z-index: 2;
    height: 100%;
    width: min(1420px, calc(100vw - 128px));
    margin: 0 auto;
}

.pack-kicker {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    font-size: 28px;
}

.pack-progress{
    position:absolute;
    left:0;
    top:55%;
    transform:translateY(-50%);

    display:flex;
    flex-direction:column;
    gap:45px;

    font-size:18px;
    color:rgba(255,255,255,.35);
}

.pack-progress span.is-active {
    color: var(--blue);
}

.pack-copy {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 360px;
    z-index: 10;
}

.pack-index {
    display: block;
    font-size: 96px;
    font-weight: 800;
    color: rgba(255, 255, 255, .06);
    margin-bottom: -12px;
}

.pack-type {
    display: block;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: .22em;
    margin-bottom: 18px;
}

.pack-copy h2 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 52px;
    line-height: .92;
    letter-spacing: -.04em;
}

.pack-copy p {
    max-width: 300px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .66);
    font-size: 15px;
    line-height: 1.75;
}

.pack-copy p::before {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--blue);
    margin-bottom: 22px;
}

.pack-object-wrap {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 900px;
}

.pack-object {
    position: relative;
    z-index: 2;
    width: 700px;
    max-height: 700px;
    object-fit: contain;
    transform:
        rotateX(0deg) rotateY(0deg) translateY(0);
    transition:
        transform .8s cubic-bezier(.2, .8, .2, 1),
        filter .45s ease,
        opacity .45s ease;
}



.pack-orbit {
    position: absolute;
    bottom: 72px;
    left: 50%;
    width: 460px;
    height: 90px;
    border: 1px solid rgba(19, 107, 255, .32);
    border-radius: 50%;
    transform: translateX(-50%) rotateX(70deg);
    box-shadow: 0 0 40px rgba(19, 107, 255, .18);
}

.pack-hint {
    position: absolute;
    right: -220px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .12em;
}

.pack-reveal-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid var(--blue);
    background: rgba(2, 5, 10, .55);
    color: white;
    font-size: 34px;
    line-height: 1;
    cursor: none;
    box-shadow: 0 0 28px rgba(19, 107, 255, .2);
}

.pack-details {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(30px);
    width: 340px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(5, 10, 18, .68);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: .45s ease;
}

.packs-ui.is-open .pack-details {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.pack-close {
    position: absolute;
    right: 18px;
    top: 14px;
    border: 0;
    background: none;
    color: white;
    font-size: 28px;
    cursor: none;
}

.pack-detail-label {
    margin: 0 0 22px;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .18em;
}

.pack-details ul {
    margin: 0;
    padding-left: 18px;
}

.pack-details li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    line-height: 1.4;
}

.pack-details li::marker {
    color: var(--blue);
}

.pack-price {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.pack-price strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
}

.pack-price span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
}

.pack-detail-link {
    display: inline-block;
    margin-top: 28px;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .16em;
}


.pack-object {

    transform-origin: center;

    will-change: transform, opacity;

    transition:
        transform .7s cubic-bezier(.16, 1, .3, 1),
        opacity .5s ease;
}

.packs-ui.is-sensing .pack-object {
    animation-play-state: paused;
    filter:
        drop-shadow(0 0 28px rgba(0, 140, 255, .55)) drop-shadow(0 0 70px rgba(0, 140, 255, .18));
}

@keyframes artifactFloat {
    0% {
        transform: translateY(0) rotateZ(-1deg) rotateY(0deg);
    }

    50% {
        transform: translateY(-24px) rotateZ(1.4deg) rotateY(5deg);
    }

    100% {
        transform: translateY(0) rotateZ(-1deg) rotateY(0deg);
    }
}

section#services.services .section-head h2 {
    font-size: 48px !important;
    line-height: 1.08 !important;
    max-width: 760px !important;
}

/* =========================================================
   DESKTOP / TABLET FIX — HERO ONLY
   Ne touche pas au mobile
========================================================= */

@media (min-width: 769px) {

    .hero {
        min-height: 100vh;
        grid-template-columns: 42vw 1fr;
        align-items: center;
    }

    .hero-video {
        object-fit: cover;
        object-position: left center;
    }

    .hero-copy {
        margin-left: clamp(70px, 7vw, 130px) !important;
        padding-top: 0 !important;
        transform: translateY(-45px) !important;
        width: min(780px, 48vw) !important;
        max-width: 780px !important;
    }

    .hero .hero-copy h1,
    .hero h1,
    main .hero h1 {
        font-size: clamp(62px, 5vw, 96px) !important;
        line-height: .98 !important;
    }

    .lead {
        margin-top: 26px !important;
    }

    .lead:before {
        margin-bottom: 34px !important;
    }
}


/* =========================================================
   MOBILE RESPONSIVE — CLEAN FINAL
   Aucun impact desktop
========================================================= */

@media (max-width:768px) {

    /* =========================
       GLOBAL
    ========================= */

    section {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .services,
    .projects,
    .process,
    .proof {
        padding-top: 110px !important;
        padding-bottom: 110px !important;
    }

    .kicker {
        margin-bottom: 24px !important;
    }

    h2 {
        font-size: 42px !important;
        line-height: .92 !important;
    }

    /* =========================
       TOPBAR
    ========================= */

    .topbar {
        position: fixed;
        height: 64px;
        padding: 0 16px;
        background: rgba(2, 5, 10, .82);
        backdrop-filter: blur(18px);
    }

    .nav {
        display: none !important;
    }

    .logo img {
        width: 44px;
    }

    .contact-pill {
        padding: 10px 14px;
        font-size: 13px;
    }

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

    .hero {
        min-height: 100svh;
        display: flex;
        align-items: center;
        padding: 120px 24px 80px;
        overflow: hidden;
    }

    .hero-media,
    .hero-overlay {
        display: none !important;
    }

    .hero-mobile-video {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 0;
    }

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        to bottom,
        rgba(5, 8, 13, .32),
        rgba(5, 8, 13, .86)
    );

    pointer-events: none;
}
.hero-copy {
    position: relative !important;
    z-index: 999 !important;
}

.hero-copy .btn {
    position: relative !important;
    z-index: 1000 !important;
    pointer-events: auto !important;
}
    

    .hero-copy {
        position: relative;
        z-index: 3;

        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        padding: 0 !important;

        transform: none !important;
    }

    .hero h1 {
        font-size: clamp(44px, 13vw, 58px) !important;
        line-height: .92 !important;
        max-width: 8ch !important;
    }

    .lead {
        max-width: 280px !important;
        margin: 32px 0 26px !important;

        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    /* =========================
       INTRO
    ========================= */

    .intro {
        padding: 90px 24px !important;
    }

    .grid-2 {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }

    .intro-line {
        width: 72px !important;
        height: 3px !important;
    }

    .intro h2 {
        font-size: 52px !important;
    }

    .intro-text {
        max-width: 100% !important;
        padding: 0 !important;
        border: none !important;

        font-size: 15px !important;
        line-height: 1.7 !important;
    }

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

    .services {
        padding: 90px 24px !important;
    }

    .services .section-head {
        display: block !important;
        margin-bottom: 52px !important;
    }

    .services h2 {
        max-width: 7ch !important;
    }

    .tiny-link {
        display: none !important;
    }

    .card-grid {
        display: flex !important;
        gap: 18px !important;

        overflow-x: auto;
        scroll-snap-type: x mandatory;

        padding-bottom: 12px;
    }

    .card-grid::-webkit-scrollbar {
        display: none;
    }

    .card {
        min-width: 82vw !important;

        min-height: 320px !important;

        border-radius: 16px;

        scroll-snap-align: start;
    }

    /* =========================
       PROJECTS
    ========================= */

    .projects {
        padding: 120px 0 !important;
        overflow: hidden !important;
    }

    .projects-head {
        display: block !important;
        padding: 15 15px !important;
        margin-bottom: 42px !important;
    }

    .projects-head::before {
        display: none !important;
    }

    .projects h2 {
        max-width: 7ch !important;
    }

    .projects-intro {
        max-width: 260px !important;

        margin-top: 28px !important;

        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .project-grid {
        display: flex !important;

        gap: 18px !important;

        overflow-x: auto !important;

        scroll-snap-type: x mandatory;

        padding: 0 24px 18px !important;
    }

    .project-grid::-webkit-scrollbar {
        display: none;
    }

    .project {
        min-width: 68vw !important;
        width: 68vw !important;

        height: 68vw !important;

        border-radius: 16px !important;

        overflow: hidden !important;

        scroll-snap-align: start;
    }

    .project-number {
        display: none !important;
    }

#realisations .project img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

    display:block;
}

    .project-info {
        padding: 120px 22px 42px !important;

        background: linear-gradient(to top,
                rgba(3, 7, 13, .98),
                rgba(3, 7, 13, .12)) !important;
    }

    .project-info h3 {
        font-size: 22px !important;
    }

    .project-info p {
        font-size: 13px !important;
    }

    .project::after {
        content: "→";

        position: absolute;

        left: 22px;
        bottom: 18px;

        color: var(--blue);

        font-size: 24px;

        z-index: 5;
    }

    .project-dots {
        display: flex !important;
        justify-content: center;

        gap: 10px;

        margin-top: 22px !important;
    }

    .project-dots span {
        width: 8px;
        height: 8px;

        border-radius: 50%;

        background: rgba(255, 255, 255, .24);
    }

    .project-dots span.active {
        width: 24px;

        border-radius: 999px;

        background: var(--blue);
    }

    /* =========================
       PROCESS
    ========================= */

    .process {
        display: block !important;

        padding: 120px 24px !important;
    }

    .process-title {
        margin-bottom: 46px !important;
    }

    .process h2 {
        max-width: 6ch !important;
    }

    .process-title::after {
        content: "Un process clair et éprouvé pour des résultats concrets.";

        display: block;

        max-width: 240px;

        margin-top: 22px;

        color: rgba(255, 255, 255, .72);

        font-size: 15px;

        line-height: 1.6;
    }

    .steps {
        display: grid !important;

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

        gap: 16px !important;
    }

    .steps article {
        padding: 20px !important;

        border: 1px solid rgba(255, 255, 255, .08);

        border-radius: 16px;

        background: rgba(255, 255, 255, .02);

        min-height: auto !important;
    }

    .steps article::before,
    .steps article::after {
        display: none !important;
    }

    .steps b {
        display: block !important;

        margin-bottom: 14px !important;

        font-size: 42px !important;

        line-height: 1 !important;

        color: rgba(19, 107, 255, .22) !important;
    }

    .steps h3 {
        margin: 0 0 10px !important;

        padding: 0 !important;

        font-size: 15px !important;

        line-height: 1.2 !important;
    }

    .steps p {
        margin: 0 !important;

        padding: 0 !important;

        font-size: 13px !important;

        line-height: 1.55 !important;

        color: rgba(255, 255, 255, .68);
    }

    /* =========================
       PROOF
    ========================= */

    .proof {
        overflow: hidden;
    }

    .proof-head {
        display: block !important;

        padding: 0 24px;

        margin-bottom: 70px !important;
    }

    .proof h2 {
        max-width: 6ch !important;
    }

    .proof-head>p {
        max-width: 260px;

        margin-top: 32px !important;

        font-size: 15px !important;

        line-height: 1.65 !important;
    }

.proof-stats {

    display:flex !important;

    flex-direction:column !important;

    gap:14px !important;

    overflow:visible !important;

    padding:0 !important;

    margin-bottom:70px !important;
}

    .proof-stats::-webkit-scrollbar {
        display: none;
    }

.proof-stats article {

    width: 100% !important;
    min-width: 0 !important;

    display: grid !important;
    grid-template-columns: 90px 1fr;

    column-gap: 20px;

    align-items: center;

    padding: 24px !important;

    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            rgba(19, 107, 255, .12),
            rgba(255, 255, 255, .02)
        );

    box-sizing: border-box !important;

    scroll-snap-align: none !important;
}

    .proof-stats article::after,
    .proof-stats i {
        display: none !important;
    }

    .proof-bottom {
        display: flex !important;

        gap: 18px !important;

        overflow-x: auto !important;

        scroll-snap-type: x mandatory;

        padding: 0 24px 26px !important;

        border: none !important;
    }

    .proof-bottom::-webkit-scrollbar {
        display: none;
    }

    .proof-bottom blockquote {
        min-width: 84vw !important;
        max-width: 84vw !important;

        padding: 34px 28px !important;

        border-radius: 18px;

        background:
            linear-gradient(180deg,
                rgba(19, 107, 255, .12),
                rgba(255, 255, 255, .025));

        scroll-snap-align: start;
    }

    .proof-logos {
        display: none !important;
    }

    /* =========================
       CTA
    ========================= */

    .cta {
        min-height: 100svh !important;

        padding: 0 !important;
    }

    .cta-inner {
        display: flex !important;

        align-items: flex-end !important;

        min-height: 100svh !important;

        padding: 120px 24px 60px !important;

        background-position: center center !important;
        background-size: cover !important;
    }

    .cta-inner::before {
        content: "";

        position: absolute;
        inset: 0;

        background:
            linear-gradient(to top,
                rgba(3, 7, 13, .96),
                rgba(3, 7, 13, .14));

        z-index: 1;
    }

    .cta-copy {
        position: relative;
        z-index: 2;
    }

.cta h2 {
    max-width: 340px !important;
    font-size: 45px !important;
}
}

/* =========================================================
   MOBILE FIX 01 — HERO TITLE + PACK PNG
   Desktop intact
========================================================= */

@media (max-width:768px) {

    .hero {
        padding: 120px 0 80px !important;
        overflow: hidden !important;
    }

    .hero-copy {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }

   .topbar,
.section,
.projects-inner,
.proof-inner,
.cta-inner {
    padding-left: var(--mobile-pad) !important;
    padding-right: var(--mobile-pad) !important;
}
    

    .hero h1 .line-white,
    .hero h1 .line-mix {
        display: block !important;
        white-space: normal !important;
    }

    .packs-immersive .pack-object-wrap,
    .packs-immersive .pack-object,
    .packs-immersive .pack-hint {
        display: none !important;
    }

}

/* =========================================================
   MOBILE FIX — PROOF SECTION FINAL
   Pourquoi nous ? uniquement mobile
========================================================= */

@media (max-width:768px) {

    .proof {
        padding: 110px 0 90px !important;
        background:
            radial-gradient(circle at 60% 0%, rgba(19, 107, 255, .18), transparent 36%),
            #03070d !important;
        overflow: visible !important;
    }

    .proof-inner {
        width: 100% !important;
        padding: 0 !important;
    }

.proof-head {
    display: block !important;
    padding: 0 !important;
}

    .proof .kicker {
        font-size: 11px !important;
        letter-spacing: .22em !important;
        margin-bottom: 22px !important;
    }



    .proof-head>p {
        max-width: 280px !important;
        margin-top: 34px !important;
        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    .proof-head>p::before {
        content: "";
        display: block;
        width: 58px;
        height: 3px;
        background: var(--blue);
        margin-bottom: 34px;
    }

    /* STATS SUR UNE LIGNE */
.proof-stats{

    display:flex !important;
    flex-direction:column !important;

    gap:14px !important;

    padding:0 12px !important;

    margin-bottom:70px !important;

    overflow:visible !important;
}



.proof-stats article{

    width:auto !important;

    min-width:0 !important;

    box-sizing:border-box !important;

    display:grid !important;

    grid-template-columns:90px 1fr;

    column-gap:20px;

    align-items:center;

    padding:24px !important;
}

.proof-stats strong{
    grid-column:1;
    grid-row:1 / span 2;

    margin:0 !important;

    font-size:42px !important;
    line-height:1 !important;
}

.proof-stats span{
    grid-column:2;
    grid-row:1;

    margin:0 !important;

    display:block !important;

    font-size:12px !important;
    line-height:1.2 !important;

    white-space: normal !important;
}

.proof-stats p{
    grid-column:2;
    grid-row:2;

    margin:4px 0 0 0 !important;

    font-size:12px !important;
    line-height:1.4 !important;

    color:rgba(255,255,255,.7);
}

    /* TESTIMONIAL CAROUSEL */
    .proof-bottom {
        display: flex !important;
        gap: 18px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        padding: 0 28px 20px !important;
        border: none !important;
    }

    .proof-bottom::-webkit-scrollbar {
        display: none;
    }

    .proof-bottom blockquote {
        min-width: 82vw !important;
        max-width: 82vw !important;
        margin: 0 !important;
        padding: 34px 30px !important;
        border-radius: 18px !important;
        border: 1px solid rgba(255, 255, 255, .1) !important;
        background:
            linear-gradient(145deg, rgba(19, 107, 255, .16), rgba(255, 255, 255, .025)) !important;
        scroll-snap-align: start;
    }

    .proof-bottom blockquote b {
        display: block !important;
        font-size: 70px !important;
        line-height: .7 !important;
        margin-bottom: 22px !important;
        color: var(--blue) !important;
    }

    .proof-bottom blockquote p {
        max-width: 250px !important;
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    .proof-bottom cite {
        display: block !important;
        margin-top: 26px !important;
        font-size: 13px !important;
        line-height: 1.45 !important;
        color: rgba(255, 255, 255, .72) !important;
    }

    .proof-logos {
        display: none !important;
    }
}

/* =========================================================
   MOBILE FIX — TESTIMONIAL CARD FINAL
========================================================= */

@media (max-width:768px) {

    .proof-bottom blockquote {
        position: relative !important;

        min-width: 86vw !important;
        max-width: 86vw !important;

        min-height: 190px !important;

        padding: 26px 24px !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .proof-bottom blockquote p {
        max-width: 220px !important;

        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .proof-bottom cite {
        margin-top: 26px !important;

        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    .proof-bottom blockquote::after {
        content: "";

        position: absolute;

        right: 24px;
        bottom: 24px;

        width: 62px;
        height: 62px;

        border-radius: 50%;

        background:
            url("../assets/client-avatar.png") center/cover no-repeat;

        border: 2px solid rgba(255, 255, 255, .16);
    }
    .proof-bottom blockquote::after{
    display:none !important;
}

}

/* =========================================================
   MOBILE FIX — TESTIMONIAL RECTANGLE + DOTS
========================================================= */

@media (max-width:768px) {

    .proof-bottom {
        padding: 0 28px 18px !important;
        gap: 14px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
    }

    .proof-bottom blockquote {
        min-width: 78vw !important;
        max-width: 78vw !important;

        min-height: 190px !important;

        padding: 28px 26px !important;

        border-radius: 16px !important;

        scroll-snap-align: start !important;
    }

    .proof-bottom blockquote p {
        max-width: 235px !important;

        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    .proof-bottom cite {
        margin-top: 18px !important;
        font-size: 12px !important;
    }

    .proof-bottom blockquote::after {
        width: 52px !important;
        height: 52px !important;

        right: 22px !important;
        bottom: 22px !important;
    }

    .proof-bottom blockquote:not(:first-child) {
        opacity: .55 !important;
        transform: scale(.98) !important;
    }

    .proof-bottom::after {
        content: "";
        display: none !important;
    }

    .proof .project-dots,
    .proof-dots {
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;

        margin-top: 18px !important;
    }

    .proof .project-dots span,
    .proof-dots span {
        width: 8px !important;
        height: 8px !important;

        border-radius: 999px !important;

        background: rgba(255, 255, 255, .28) !important;
    }

    .proof .project-dots span.active,
    .proof-dots span.active {
        width: 22px !important;

        background: var(--blue) !important;
    }
}

/* =========================================================
   MOBILE FIX — TESTIMONIAL DOTS
========================================================= */

@media (max-width:768px) {

    .proof-dots {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;

        gap: 10px !important;

        margin-top: 18px !important;
        margin-bottom: 10px !important;
    }

    .proof-dots span {
        width: 8px;
        height: 8px;

        border-radius: 999px;

        background: rgba(255, 255, 255, .24);

        transition: .3s ease;
    }

    .proof-dots span.active {
        width: 24px;

        background: var(--blue);
    }

.proof-testimonial{

    flex:0 0 78vw;

    min-width:78vw;

    position:relative;

    margin:40px 0 0 0;

    padding:34px 18px 60px;

    scroll-snap-align:start;
}


.proof-counter{

    position:absolute;

    top:24px;
    right:24px;

    color:var(--blue);

    font-size:15px;
    font-weight:600;
}

.proof-testimonial blockquote{

padding-top:18px;
padding-left:30px !important;

padding-left:30px;
    margin:0;

    font-size:16px;

    line-height:1.7;

    font-weight:300;

    max-width:none;

    color:#fff;
}
.proof-testimonial blockquote{

    background:none !important;
    border:none !important;

    min-width:auto !important;
    max-width:none !important;
    min-height:auto !important;

    padding:0 !important;
    border-radius:0 !important;

    display:block !important;
}

.proof-author{

margin-top:auto;
padding-top:40px;
    position:relative;
    z-index:2;
}

.proof-author strong{

    display:block;

    margin-bottom:8px;

    color:#fff;

    font-size:18px;

    font-weight:600;
}


.proof-testimonial::before{
    content:"“";
    position:absolute;
    top:8px;
    left:18px;
    font-size:56px;
    color:var(--blue);
    
}
.proof-client-logo{

    display:block;

    margin-top:18px;

    width:180px;

    height:auto;

    opacity:.9;
}
}




/* =========================================================
   FIX HEADER — LOGO + BURGER DESKTOP
========================================================= */

/* Enlève le cadre bleu autour du logo */
.logo,
.logo:focus,
.logo:focus-visible,
.logo img {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Cache le burger / carré blanc en desktop */
.burger {
    display: none !important;
}

/* Le burger ne réapparaît qu’en mobile */
@media (max-width:768px) {
    .burger {
        display: flex !important;
    }
}

/* =========================================================
   FIX DESKTOP — INTRO / WE BUILD CLARITY
   Ne touche pas au mobile
========================================================= */

@media (min-width:769px) {

    .intro {
        padding: 150px 0 160px !important;
        overflow: hidden !important;
    }

    .intro .grid-2 {
        width: min(1180px, calc(100vw - 140px)) !important;
        margin: 0 auto !important;

        display: grid !important;
        grid-template-columns: 360px 3px 520px !important;
        gap: 55px !important;

        align-items: center !important;
    }

    .intro h2 {
        font-size: 72px !important;
        line-height: .9 !important;
        letter-spacing: -0.06em !important;
        margin: 0 !important;
    }

    .intro-line {
        width: 3px !important;
        height: 180px !important;
        background: var(--blue) !important;
        margin: 0 !important;
    }

    .intro-text {
        grid-column: 3 !important;

        max-width: 520px !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;

        font-size: 16px !important;
        line-height: 1.55 !important;
        color: rgba(255, 255, 255, .92) !important;
    }
}

/* =========================================================
   FIX SERVICES — FLÈCHE SANS CHEVAUCHEMENT
========================================================= */

.services .card {
    aspect-ratio: auto !important;
    min-height: 390px !important;
    padding: 46px 38px 82px !important;
}

.services .card p {
    margin: 22px 0 0 !important;
}

.services .card::before {
    position: absolute !important;
    left: 38px !important;
    bottom: 34px !important;
}


/* =========================================================
   FIX DESKTOP — PROJECTS / RÉALISATIONS
========================================================= */

@media (min-width:769px) {

    .projects {
        padding: 120px 0 140px !important;
    }

    .projects-inner {
        width: min(980px, calc(100vw - 140px)) !important;
        margin: 0 auto !important;
    }

    .projects-head {
        display: grid !important;
        grid-template-columns: 300px 3px 430px !important;
        gap: 42px !important;
        align-items: start !important;
        margin-bottom: 100px !important;
    }

    .projects-head::before {
        width: 3px !important;
        height: 120px !important;
        background: var(--blue) !important;
    }

    .projects h2 {
        font-size: 36px !important;
        line-height: 1.08 !important;
        letter-spacing: -.045em !important;
    }

    .projects-intro {
        max-width: 430px !important;
        margin: 18px 0 0 !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    .projects-link {
        margin-top: 42px !important;
        font-size: 11px !important;
        letter-spacing: .12em !important;
    }

    .project-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 22px !important;
    }

    .project {
        min-height: 250px !important;
        border-left: 3px solid var(--blue) !important;
        overflow: visible !important;
    }

    .project-number {
        top: -62px !important;
        left: 0 !important;
        font-size: 82px !important;
        color: rgba(255, 255, 255, .10) !important;
    }

    .project img {
        height: 178px !important;
        width: 100% !important;
        object-fit: cover !important;
        filter: grayscale(.35) contrast(1.15) brightness(.72) !important;
    }

    .project-info {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;

        padding: 24px 24px 26px !important;

        background: linear-gradient(180deg,
                rgba(3, 7, 13, .78),
                rgba(3, 7, 13, .96)) !important;
    }

    .project-info h3 {
        font-size: 16px !important;
        margin: 0 0 6px !important;
    }

    .project-info p {
        font-size: 13px !important;
        color: rgba(255, 255, 255, .78) !important;
    }

    .project-dots {
        margin-top: 100px !important;
    }
}



/* =========================================================
   FINAL DESKTOP — RÉALISATIONS
========================================================= */

@media (min-width:769px) {

    #realisations.projects {
        padding: 120px 0 20px !important;
        background:
            radial-gradient(circle at 18% 18%, rgba(19,107,255,.22), transparent 34%),
            linear-gradient(180deg, #050912 0%, #06101d 100%) !important;
    }

    #realisations .projects-inner {
        width: min(980px, calc(100vw - 140px)) !important;
        margin: 0 auto !important;
    }

    #realisations .projects-head {
        display: grid !important;
        grid-template-columns: 420px 3px 430px !important;
        gap: 42px !important;
        align-items: start !important;
        margin-bottom: 105px !important;
    }

    #realisations .projects-head::before {
        content: "" !important;
        grid-column: 2 !important;
        grid-row: 1 !important;
        width: 3px !important;
        height: 110px !important;
        background: var(--blue) !important;
    }

    #realisations .projects-head > div {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    #realisations .projects-intro {
        grid-column: 3 !important;
        grid-row: 1 !important;
        max-width: 430px !important;
        margin: 18px 0 0 !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    /* =====================================
       SLIDER
    ===================================== */

    #realisations .project-grid {

        display:flex !important;

        gap:22px !important;

        overflow-x:auto !important;
        overflow-y:hidden !important;

        padding-bottom:20px !important;

        scrollbar-width:none;
    }

    #realisations .project-grid::-webkit-scrollbar{
        display:none;
    }

    /* =====================================
       CARD
    ===================================== */

    #realisations .project {

        flex:0 0 420px !important;
        min-width:420px !important;

        position:relative !important;

        border-left:none !important;

        overflow:hidden !important;
    }

    #realisations .project::before {

        content:"" !important;

        position:absolute !important;

        left:0 !important;
        bottom:0 !important;

        width:3px !important;
        height:92px !important;

        background:var(--blue) !important;

        z-index:4 !important;
    }

    /* =====================================
       NUMÉRO
    ===================================== */

    #realisations .project-number {

        top:-62px !important;
        left:0 !important;

        font-size:82px !important;

        color:rgba(255,255,255,.10) !important;
    }

    /* =====================================
       IMAGE
    ===================================== */

    #realisations .project img {

        width:100% !important;

        aspect-ratio:1/1 !important;

        height:auto !important;

        object-fit:cover !important;

        display:block !important;

        position:relative !important;

        z-index:1 !important;

        filter:grayscale(.25) contrast(1.12) brightness(.9);
    }

    /* =====================================
       OVERLAY
    ===================================== */

    #realisations .project-info {

        position:absolute !important;

        left:0 !important;
        right:0 !important;
        bottom:0 !important;

        z-index:3 !important;

        padding:28px 24px 30px !important;

       background: rgba(2,8,20,.30) !important;

backdrop-filter: blur(1px) !important;
-webkit-backdrop-filter: blur(1px) !important;
    }

    /* =====================================
       DOTS
    ===================================== */

    .projects-dots {

        display:flex;

        justify-content:center;

        gap:14px;

        margin-top:40px;
    }

    .projects-dots span {

        width:8px !important;
        height:8px !important;

        min-width:8px !important;

        border-radius:50% !important;

        background:rgba(255,255,255,.25);

        transition:.3s;
    }

    .projects-dots span.active {

        width:48px !important;

        border-radius:999px !important;

        background:var(--blue);
    }
}
#realisations .project{

    flex:0 0 260px !important;

    min-width:260px !important;
}


#realisations .project img{

    aspect-ratio:0.78/1 !important;

    object-fit:cover !important;
}



/* =========================================================
   FIX DESKTOP — PROCESS FINAL
   Recalage visuel bloc Simple / Efficace
========================================================= */

@media (min-width:769px) {

    #process.process {
        width: 100vw !important;
        max-width: none !important;

        padding: 130px 0 135px !important;

        display: grid !important;
        grid-template-columns: 280px 1fr !important;
        gap: 70px !important;

        align-items: center !important;

        background:
            radial-gradient(circle at 82% 35%, rgba(19, 107, 255, .20), transparent 34%),
            #03070d !important;
    }

    #process .process-title {
        padding-left: clamp(72px, 7vw, 120px) !important;
        margin: 0 !important;
    }

    #process .process-title .kicker {
        display: block !important;
        margin: 0 0 22px !important;

        color: var(--blue) !important;
        font-size: 13px !important;
        line-height: 1 !important;
        letter-spacing: .14em !important;
    }

    #process h2 {
        margin: 0 !important;

        font-size: 48px !important;
        line-height: .92 !important;
        letter-spacing: -.055em !important;
    }

    #process .steps {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

        gap: 0 !important;
        padding: 0 clamp(72px, 7vw, 120px) 0 0 !important;

        align-items: start !important;
    }

#process .steps article {
    position: relative !important;

    height: 200px !important;

    padding: 0 30px 0 28px !important;

    background: none !important;
    display:flex !important;
flex-direction:column !important;
justify-content:flex-start !important;
}

#process .steps article::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 1,5px;
    height: 100%;

    background: var(--blue);
}

    #process .steps b {
        margin: 0 0 18px !important;

        color: var(--blue) !important;

        font-size: 40px !important;
        line-height: 1 !important;
        font-weight: 300 !important;
    }

    #process .steps h3 {
        margin: 0 0 16px !important;

        font-size: 16px !important;
        line-height: 1 !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
    }

    #process .steps p {
        max-width: 230px !important;
        margin: 0 !important;

        font-size: 15px !important;
        line-height: 1.55 !important;

        color: rgba(255, 255, 255, .82) !important;
    }
}

/* =========================================================
   PACKS — RIGHT INFO PANEL FINAL
========================================================= */

.pack-annotations,
.pack-note,
.pack-hint,
.pack-reveal-btn,
.pack-details {
    display: none !important;
}

.pack-info-panel {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;

    width: 440px;
    padding-left: 46px;

}

.pack-info-title {
    margin: 0 0 32px;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .14em;
}

.pack-info-title::after {
    content: "";
    display: block;
    width: 62px;
    height: 2px;
    margin-top: 18px;
    background: var(--blue);
}

.pack-info-list{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:2px;

    padding-left:18px;

    margin:0;
}

.pack-info-list li {

    position: relative;
    padding: 3px 0 3px 22px;

    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    line-height: 1.35;

    break-inside: avoid;

}


.pack-info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 7px;
    height: 7px;
    border-radius: 50%;

    background: var(--blue);
    box-shadow: 0 0 14px rgba(19, 107, 255, .9);
}

.pack-price-card {
    margin-top: 28px;
}


.pack-price-card.is-hidden > span,
.pack-price-card.is-hidden strong,
.pack-price-card.is-hidden p{
    display:none !important;
}

.pack-price-card>span {
    display: block;
    margin-bottom: 14px;

    color: var(--blue);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .12em;
}

.pack-price-card strong {
    display: block;
    margin-bottom: 14px;

    color: white;
    font-size: 50px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: -.04em;
}

.pack-price-card p {
    margin: 0 0 30px;

    color: rgba(255, 255, 255, .58);
    font-size: 14px;
}

.pack-price-card a {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    height: 52px;
    padding: 0 28px;

    border: 1px solid var(--blue);
    border-radius: 5px;

    color: var(--blue);

    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .05em;

    width: fit-content;
}

.pack-price-card a b {
    font-size: 24px;
    font-weight: 300;
}

.pack-info-list.two-columns{

    display:grid;

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

    gap:10px 24px;
}

/* =========================================================
   MICRO FIX HERO — STATUE PLUS À GAUCHE
   Desktop uniquement
========================================================= */

@media (min-width:769px) {

    .hero-video {
        object-position: left center !important;
    }

    .hero-copy {
        margin-left: clamp(120px, 12vw, 220px) !important;
        transform: translateY(-35px) !important;
    }

    .hero-overlay {
        background: linear-gradient(90deg,
                rgba(0, 0, 0, .00) 0%,
                rgba(0, 0, 0, .00) 36%,
                rgba(0, 0, 0, .45) 50%,
                rgba(0, 0, 0, .88) 100%) !important;
    }
}

/* HERO — décalage réel vidéo vers la gauche */
@media (min-width:769px) {

.hero-video {
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    object-fit: cover !important;
    object-position: left center !important;
}

.hero-copy {
    margin-left: clamp(80px, 8vw, 180px) !important;
    transform: translateY(-100px) !important;

    width: min(650px, 42vw) !important;
    max-width: 650px !important;
}
}

/* SERVICES — retirer flèches cards + voir plus */
#services .tiny-link {
    display: none !important;
}

#services .card::before {
    content: none !important;
}

#services .card:hover::before {
    transform: none !important;
}

/* SERVICES — cards carrées propres */
#services .card {
    aspect-ratio: 1 / 1 !important;
    min-height: unset !important;
    padding: 42px 32px !important;
    overflow: hidden !important;
}

#services .service-icon{
    width:72px !important;
    height:72px !important;

    min-width:72px !important;
    min-height:72px !important;

    margin-bottom:42px !important;

    flex-shrink:0 !important;
}

#services .card h3 {
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
}

#services .card p {
    margin-top: 18px !important;
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

/* PACKS — plus de marge latérale */
.packs-ui {
    width: min(1600px, calc(100vw - 220px)) !important;
}

/* PACKS — retirer lignes liste droite */
.pack-info-list li {
    border-bottom: none !important;
}

/* REALISATIONS — aligner tailles avec le reste du site */
@media (min-width:769px) {

    #realisations h2 {
        font-size: 48px !important;
        line-height: 1.08 !important;
    }

    #realisations .projects-intro {
        font-size: 16px !important;
        line-height: 1.55 !important;
    }
}


/* =========================================================
   RESPONSIVE FINAL — MOBILE ONLY
========================================================= */

:root {
    --mobile-pad: 24px;
}

.packs-mobile {
    display: none;
}

@media (max-width:768px) {

    .hero-copy,
    .topbar,
    .section,
    .projects-inner,
    .proof-inner,
    .cta-inner {
        padding-left: var(--mobile-pad) !important;
        padding-right: var(--mobile-pad) !important;
        box-sizing: border-box !important;
    }

    #services .card-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 18px !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;

        padding: 0 var(--mobile-pad) 18px !important;
    }

    #services .card-grid::-webkit-scrollbar {
        display: none !important;
    }

#services .card {
    aspect-ratio: 1 / 1 !important;
    min-height: unset !important;
    padding: 42px 32px !important;
    overflow: visible !important;
}

    #packs {
        display: none !important;
    }

    .packs-mobile {
        display: block !important;
    }

}

@media (max-width:768px) {

    .packs-mobile {
        display: block !important;
        padding: 100px 0 !important;
        background: #02050a;
    }

    .packs-mobile-slider {
        display: flex;
        overflow-x: auto;
        gap: 18px;
        padding: 0 24px;
        scroll-snap-type:x mandatory;
    }

    
    .packs-mobile-slider::-webkit-scrollbar {
        display: none;
    }

@media (max-width:768px){

    .pack-mobile-card {
        flex: 0 0 100vw !important;
        min-width: 100vw !important;

        padding: 28px 0 !important;

        scroll-snap-align: start;
    }

    .pack-mobile-card h3,
.pack-mobile-card p,
.pack-mobile-card summary,
.pack-mobile-card .pack-mobile-type {
    margin-left: 24px !important;
    margin-right: 24px !important;
}
.packs-mobile-head h2{
    margin:0 24px !important;
}

.packs-mobile-progress{
    margin:40px 35px 0 !important;
}

}



@media (max-width:768px){

    .pack-mobile-card img{

        width: 80vw !important;
        max-width: none !important;
        max-height: 340px !important;

        object-fit: contain !important;

        margin: 0 0 26px 0 !important;

        display: block !important;

        transform-origin: left center !important;

        filter: drop-shadow(0 0 28px rgba(19,107,255,.30));
    }

}

.pack-mobile-card .pack-mobile-type {

    display:block !important;

    margin:0 24px !important;

    color: var(--blue);

    text-transform: uppercase;

    font-size: 18px;

    letter-spacing: .16em;
}

    .pack-mobile-card h3 {
        margin: 10px 24px 16px !important;

        font-size: 56px !important;

        line-height: .92 !important;

        letter-spacing: -.05em !important;
    }

    .pack-mobile-card p {
        color: rgba(255, 255, 255, .72);
        line-height: 1.6;
    }

    .pack-mobile-card summary {
        margin-top: 24px;
        color: var(--blue);
        cursor: pointer;
    }

}

@media (max-width:768px) {

.packs-mobile {
    padding: 110px 0px 90px !important;
    overflow: hidden !important;
}

    .packs-mobile-head {
        padding: 0 !important;
        margin: 0 0 26px !important;
    }

    .packs-mobile-head p {
        display: block !important;
        margin: 0 0 12px !important;
        color: var(--blue) !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        letter-spacing: .22em !important;
        text-transform: uppercase !important;
    }

.packs-mobile-head h2 {
    color: white !important;
    text-transform: uppercase !important;
    margin: 0 24px !important;
    font-size: 42px !important;
    line-height: .95 !important;
    letter-spacing: -.045em !important;
}

    .packs-mobile-head h2 span {
        color: var(--blue) !important;
    }

.packs-mobile-progress {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 40px 24px 0 !important;
}

    .packs-mobile-progress i {
        display: block !important;
        width: 48px !important;
        height: 2px !important;
        background: rgba(255, 255, 255, .22) !important;
    }

.packs-mobile-slider {
    margin: 0 !important;
    padding: 0 !important;
    scroll-snap-type: x mandatory;
}

.pack-mobile-card {
    flex: 0 0 100vw !important;
    min-width: 100vw !important;

    padding: 28px 0 !important;

    scroll-snap-align: start;
}

    .pack-mobile-desc {
        margin: 0 0 24px !important;

        color: rgba(255, 255, 255, .72) !important;

        font-size: 15px !important;

        line-height: 1.55 !important;

        max-width: 92% !important;
    }

.packs-mobile-progress span{
    color:rgba(255,255,255,.35);
    transition:.3s;
    font-weight:600;
}

.packs-mobile-progress span.active{
    color:var(--blue);
}
}




.intro-mobile-btn{
    display:none !important;
     margin-top:40px !important;
}

@media (max-width:768px){

    .hero-desktop-btn{
        display:none !important;
    }

    .intro-mobile-btn{
        display:inline-flex !important;
    }

}

@media (min-width:769px){

.proof-bottom{

    display:flex !important;
    gap:24px !important;

    overflow-x:auto !important;

    padding-top:62px !important;

    border-top:1px solid rgba(255,255,255,.16) !important;

    scrollbar-width:none;
}

.proof-bottom::-webkit-scrollbar{
    display:none;
}

.proof-testimonial{

    flex:0 0 420px;

    padding:32px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.02);

}

.proof-bottom{
    overflow:hidden !important;
}

}
@media (min-width:769px){

.proof-testimonial blockquote{
    display:block !important;
    margin:0 0 24px !important;
    max-width:none !important;
}

.proof-testimonial blockquote p{
    max-width:none !important;
    white-space:normal !important;
}

.proof-testimonial b{
    display:none !important;
}

}


@media (min-width:769px){

.proof-marquee{

    width:100vw;
    margin-left:calc(50% - 50vw);

    overflow:hidden;

    border-top:1px solid rgba(255,255,255,.12);
    border-bottom:1px solid rgba(255,255,255,.12);

    padding:40px 0;
}

.proof-track{

    display:flex;

    gap:40px;

    width:max-content;

    animation:proofScroll 40s linear infinite;
}

.proof-marquee:hover .proof-track{
    animation-play-state:paused;
}

.proof-item{

    width:420px;
    height:420px;
 height:auto !important;
    flex-shrink:0;

    padding:42px;

    display:flex;
    flex-direction:column;

    background:rgba(6,12,26,.65);

    border:1px solid rgba(19,107,255,.12);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    transition:.35s ease;
}

.proof-item:hover{

    transform:translateY(-10px);

    border-color:rgba(19,107,255,.3);

    background:rgba(10,16,35,.9);
}

.proof-stars{

    display:block;

    margin-bottom:30px;

    color:#e9c050;

    font-size:20px;

    letter-spacing:4px;
}

.proof-text{

    flex:1;

    margin:0;

    color:rgba(255,255,255,.8);

    font-size:16px;

    line-height:1.8;
}

.proof-author{

    margin-top:40px;
}

.proof-author strong{

    display:block;

    margin-bottom:8px;

    color:#fff;

    font-size:18px;

    font-weight:600;
}

.proof-author span{

    color:rgba(255,255,255,.55);

    font-size:14px;
}

.proof-item strong{
    color:#f0da48;
    font-weight:600;
    margin-left:0 !important;
    display:flex;
flex-direction:column;
}

.proof-quote{

    color:var(--blue);

    font-size:42px;

    line-height:1;
}

@keyframes proofScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

}


@media (max-width:768px){

    .proof-marquee{
        width:100vw !important;
        margin-left:calc(50% - 50vw) !important;
        padding:0 !important;
        overflow:hidden !important;
    }

    .proof-track{
        display:flex !important;
        gap:18px !important;

        width:100vw !important;

        padding:0 24px 4px !important;

        box-sizing:border-box !important;

        overflow-x:auto !important;
        overflow-y:hidden !important;

        scroll-snap-type:x mandatory !important;

animation:proofMarquee 65s linear infinite;
    }

    .proof-track::-webkit-scrollbar{
        display:none !important;
    }

    .proof-item{
        flex:0 0 calc(100vw - 48px) !important;

        max-width:calc(100vw - 48px) !important;
        min-width:0 !important;

        min-height:190px !important;

        padding:28px !important;

        box-sizing:border-box !important;

        display:flex !important;
        flex-direction:column !important;
        justify-content:center !important;

        white-space:normal !important;

        font-size:14px !important;
        line-height:1.6 !important;

        border:1px solid rgba(255,255,255,.1) !important;
        border-radius:16px !important;

        background:rgba(255,255,255,.03) !important;

        scroll-snap-align:center !important;
    }

    .proof-item strong{
        display:block !important;
        margin-top:18px !important;

        color:rgba(255,255,255,.75) !important;

        font-size:12px !important;
        line-height:1.4 !important;
    }

    .proof-quote{
        display:block !important;

        margin-bottom:16px !important;

        color:var(--blue) !important;

        font-size:48px !important;
        line-height:.7 !important;
    }
}

@media (max-width:768px){

    #contact.cta{
        padding:0 !important;
        min-height:auto !important;
        overflow:visible !important;
    }

    #contact .cta-inner{
        width:100vw !important;
        max-width:none !important;
        min-height:100svh !important;

        margin:0 !important;

        display:flex !important;
        align-items:flex-start !important;

        padding:550px 24px 90px !important;

        background:url("../assets/contact-responsive.png")
        center top / 100% auto no-repeat !important;
    }

    #contact .cta-copy{
        position:relative !important;
        top:auto !important;
        transform:none !important;
        margin:0 !important;
        z-index:2 !important;
    }
 
}

/* =========================================================
   LAPTOP FIX GLOBAL
========================================================= */

@media (min-width:769px) and (max-width:1440px){

    html{
        font-size:90%;
    }

    .hero-copy{
        transform: translateY(-80px) !important;
    }

    .packs-ui{
        width:min(1400px, calc(100vw - 120px)) !important;
    }

    .services,
    .projects,
    .proof,
    .process{
        padding-left:60px !important;
        padding-right:60px !important;
    }

}


@media (min-width:769px) and (max-width:1440px){

    .four{
        grid-template-columns:repeat(4,1fr) !important;
    }

}
@media (max-width:1440px){

    #services .card{
        aspect-ratio:auto !important;
        min-height:300px !important;
    }

}

@media (max-width:768px){

    .proof{
        width:100% !important;
        max-width:100% !important;
    }

    .proof-head{
    text-align:left !important;
}

.proof-head h2{
    text-align:left !important;
}

.proof-head p{
    text-align:left !important;
}

}

@media (max-width:768px){

    .hero,
    .intro,
    .services,
    .projects,
    .proof,
    .cta{
        width:100% !important;
    }


    
}


@media (max-width:768px){

    .hero .hero-copy h1,
    .hero h1,
    main .hero h1{

        font-size:62px !important;
        line-height:.92 !important;
        max-width:7.5ch !important;

    }

}



.pack-mobile-cta:hover{

    background:rgba(19,107,255,.18) !important;
}

@media (min-width:769px){

    .proof-head{
        display:grid !important;
        grid-template-columns:420px 3px 430px !important;
        gap:42px !important;
        align-items:start !important;
    }

    .proof-head::before{
        content:"";
        grid-column:2;
        grid-row:1;

        width:3px;
        height:120px;

        background:var(--blue);
    }

    .proof-head > div{
        grid-column:1;
    }

    .proof-head > p{
        grid-column:3;
        margin-top:18px !important;
    }

}

@media (max-width:768px){

.project-grid{
    display:block !important;
    padding:0 24px !important;
}

.project-mobile-showcase{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.project-featured img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.project-featured-info{
    margin-top:18px;
}

.project-featured-info span{
    display:block;
    color:var(--blue);
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:.18em;
    margin-bottom:10px;
}

.project-featured-info h3{
    margin:0;
    font-size:42px;
    line-height:.95;
}

.project-thumbs{
    display:flex;
    gap:12px;
    overflow-x:auto;
}

.project-thumbs::-webkit-scrollbar{
    display:none;
}

.project-thumbs img{
    width:72px;
    height:72px;
    object-fit:cover;
    opacity:.45;
    cursor:pointer;
    border:2px solid transparent;
    transition:.25s;
}

.project-thumbs img.active{
    opacity:1;
    border-color:var(--blue);
}
}

@media (min-width:769px){

    .project-mobile-showcase,
    .project-featured,
    .project-thumbs{
        display:none !important;
    }

}

@media (max-width:768px){
    .project-grid-desktop{
        display:none !important;
    }
}

.contact-person{

    display:flex;
    align-items:center;
    gap:18px;

    margin-top:34px;

}

.contact-person img{

    width:100px;
    height:100px;

    object-fit:cover;

    border-radius:50%;

    border:none;

}

.contact-person-info{

    display:flex;
    flex-direction:column;

}

.contact-person-info strong{

    color:#fff;
    font-size:18px;
    font-weight:600;

}

.contact-person-info span{

    color:rgba(255,255,255,.65);
    font-size:14px;

}

.contact-person-info a{

    margin-top:6px;

    color:var(--blue);

    text-decoration:none;

    font-weight:600;

}

/* =========================================
   PROJECT MODAL
========================================= */

.project-modal{
    position:fixed;
    inset:0;
    background:rgba(2,8,20,.92);
    backdrop-filter:blur(18px);
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
}

.project-modal.active{
    opacity:1;
    visibility:visible;
}

.project-modal-inner{
    width:min(1200px,90vw);
    margin:60px auto;
    display:grid;
    grid-template-columns:55% 45%;
    gap:60px;
}

.project-modal-image{
    width:100%;
    height:80vh;
    object-fit:cover;
}

.project-modal-content{
    padding-top:40px;
    padding-right:120px;
    perspective:1000px;
}

.project-modal-category{
    display:block;
    color:var(--blue);
    text-transform:uppercase;
    letter-spacing:.16em;
    font-size:12px;
    margin-bottom:18px;
}

.project-modal-title{
    margin:0 0 24px;
    font-size:64px;
    line-height:.9;
}

.project-modal-text{
    color:rgba(255,255,255,.75);
    line-height:1.7;
    max-width:520px;
}

.project-modal-close{
    position:absolute;
    top:30px;
    right:40px;
    width:60px;
    height:60px;
    border:none;
    background:none;
    color:#fff;
    font-size:42px;
    cursor:pointer;
}

.project-modal-logo{
    width:90px;
    margin-bottom:50px;
    margin-left:-10px;
    opacity:.12;
}

@media (max-width:768px){

    .pack-mobile-details{
        padding:0 24px !important;
    }

    .pack-mobile-details .pack-mobile-cta{

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

    width:100% !important;
    height:58px !important;

    margin-top:24px !important;

    border:1px solid var(--blue) !important;

    background:rgba(19,107,255,.08) !important;

    color:#fff !important;

    font-size:16px !important;
    font-weight:600 !important;

    text-decoration:none !important;

    transition:.25s ease !important;
}

}
@media (min-width:769px){

    .proof-marquee .proof-item .proof-author strong{
        color:#fff !important;
    }

}
@media (max-width:768px){

    .proof-stars{
        color:#e9c050 !important;
    }
.intro::before,
.intro::after {
    pointer-events: none !important;
}
}

@media (max-width:768px){

    .hero-mobile-btn{
        display:none !important;
    }

    .intro-mobile-btn{
        display:inline-flex !important;
    }

}

.services-mobile-progress{
    display:none;
}

@media (max-width:768px){

    .services-mobile-progress{
        display:flex;
        justify-content:center;
        align-items:center;
        gap:14px;
        margin-top:40px;
    }

    .services-mobile-progress span{
        width:10px;
        height:10px;
        border-radius:50%;
        background:rgba(255,255,255,.25);
        transition:.35s ease;
    }

    .services-mobile-progress span.active{
        width:48px;
        border-radius:999px;
        background:var(--blue);
    }

}


@media (hover: none), (pointer: coarse) {
    .cursor-dot,
    .cursor-click {
        display: none !important;
    }

    html,
    body,
    a,
    button,
    input,
    textarea,
    select,
    label,
    summary,
    details,
    [role="button"] {
        cursor: auto !important;
    }
}




.hero-responsive-video{
    display: none;
}

@media (max-width:768px){

    .hero-responsive-video{
        display: block;
        width: 100vw;
        height: 100svh;
        padding: 0 !important;
        overflow: hidden;
    }

    .hero-responsive-video video{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-responsive-video{
    position: relative;
    z-index: 1;
}

.hero{
    margin-top: -55svh;
    position: relative;
    z-index: 2;

    min-height: unset !important;
    height: auto !important;

    display: block !important;
    align-items: flex-start !important;

    background: transparent !important;
    padding: 0 24px 80px !important;
}

.hero-copy{
    background: none !important;
}

.hero-copy::before,
.hero-copy::after{
    display: none !important;
}
.hero-mobile-video,
.hero-media,
.hero-overlay{
    display: none !important;
}
}

@media (max-width:768px){

    .hero::before{
        content: none !important;
        display: none !important;
        background: none !important;
    }

}
@media (max-width:768px){

    .blue-veil{
        display: none !important;
    }

}
/* ── Burger menu — nav.is-open ──────────────────────────────── */
@media (max-width:768px) {
    .nav.is-open {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        position: fixed;
        inset: 0;
        z-index: 100;
        background: rgba(5, 8, 13, .96);
        backdrop-filter: blur(20px);
        font-size: 22px;
        font-weight: 500;
    }

    .nav.is-open a {
        opacity: 1;
        color: var(--white);
    }

    /* Burger affiché par-dessus le menu ouvert */
    .nav.is-open ~ .burger,
    .topbar:has(.nav.is-open) .burger {
        z-index: 101;
    }
}

/* ── Bannière cookies RGPD ──────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(7, 16, 27, 0.97);
    border-top: 1px solid rgba(19, 107, 255, .25);
    backdrop-filter: blur(12px);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
    padding: 18px 0;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 46px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.cookie-text {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
    flex: 1;
}

.cookie-link {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
    font-family: inherit;
    letter-spacing: .02em;
}

.cookie-btn--refuse {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .65);
}

.cookie-btn--refuse:hover {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

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

.cookie-btn--accept:hover {
    background: var(--blue2);
    box-shadow: 0 0 20px rgba(19, 107, 255, .4);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 20px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

@media (min-width:769px){

        .monthly-support-btn-mobile{
    display:none;
}

.monthly-support-inner{
    grid-template-columns:42% 58%;
}

.monthly-support{
    width:100vw;
    max-width:none;
    padding:130px 0 120px;
    background:
        radial-gradient(circle at 12% 12%, rgba(19,107,255,.16), transparent 28%),
        linear-gradient(180deg, #02050a 0%, #050912 100%);
    overflow:hidden;
}

.monthly-support-inner{
    width:min(1420px, calc(100vw - 128px));
    margin:0 auto;

    display:grid;
    grid-template-columns: 42% 58%;
    gap:70px;
    align-items:start;
}

.monthly-support-copy{
    padding-top:10px;
}

.monthly-support-kicker{
    margin:0 0 34px;
    color:#136bff;
    text-transform:uppercase;
    font-size:15px;
    font-weight:700;
    letter-spacing:.08em;
}

.monthly-support h2{
    margin:0;
    max-width:560px;

    font-size:48px;
    line-height:1.03;
    letter-spacing:-.055em;
    text-transform:none;
    font-weight:600;
}

.monthly-support h2 span{
    color:var(--blue);
    text-shadow:0 0 26px rgba(0,91,255,.32);
}

.monthly-support-line{
    width:70px;
    height:4px;
    margin:44px 0 38px;
    background:var(--blue);
}

.monthly-support-copy p{
    max-width:520px;
    margin:0 0 50px;

    color:rgba(255,255,255,.86);

    font-size:16px;
    line-height:1.8;
}


.monthly-panel-title{
    margin:15px 0 26px;

    color:rgba(255,255,255,.78);
    text-transform:uppercase;
    font-size:15px;
    font-weight:700;
    letter-spacing:.08em;
}

.monthly-benefit{
    margin-bottom:18px;
    display:flex;
    gap:10px;
    padding:12px 0;
    border:none;
}
}
.monthly-benefit > div{
    max-width:500px;
}

.monthly-benefit:first-of-type{
    border-top:none;
}

.monthly-benefit span{
    width:24px;
    height:24px;

    border:none;
    border-radius:0;
color:var(--blue);
    font-size:18px;

    flex-shrink:0;
}

.monthly-benefit h3{
    margin:0 0 8px;

    font-size:18px;
    line-height:1.2;
    font-weight:700;
}


.monthly-benefit p{
    margin:0;

    color:rgba(255,255,255,.76);
    font-size:15px;
    line-height:1.55;

    .monthly-support-btn{
    margin-top:18px;
}
.monthly-support-panel{
    margin-top:100px;
}
}
@media (max-width:768px){

    .monthly-support-panel{
        margin-top:28px;
    }

    .monthly-panel-title{
        display:none;
    }

    .monthly-benefit p{
        display:none;
    }

    .monthly-benefit{
        display:flex;
        align-items:center;
        gap:12px;

        margin:0;
        padding:8px 0;
    }

    .monthly-benefit span{
        width:20px;
        min-width:20px;

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

    .monthly-benefit h3{
        margin:0;
        font-size:18px;
        line-height:1.2;
    }

}

@media (max-width:768px){

    .monthly-support-copy .monthly-support-btn{
        display:none !important;
    }

    .monthly-support-btn-mobile{
        display:flex !important;
        margin-top:24px;
        margin-bottom:115px;
        width:100%;
    }

}

.monthly-support .monthly-support-kicker{
    color:var(--blue) !important;
    text-transform:uppercase !important;
}
@media (min-width: 769px) {

    .hero-copy {
        margin-top: 120px !important;
    }

}
