/* ── RESET & BASE ── */
*,
*::before,
*::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
}

:root {
        --blue: #3e489e;
        --blue-mid: #2552a0;
        --blue-light: #4a7fd4;
        --accent: #e8f0fe;
        --sand: #f5f2ee;
        --dark: #111827;
        --mid: #4b5563;
        --light: #9ca3af;
        --white: #ffffff;
        --border: #e5e7eb;
        --highlight: #e48168;
        --font-head: 'Clash Display', sans-serif;
        --font-body: 'DM Sans', sans-serif;

        --max: 960px;
        --pad: clamp(1.5rem, 5vw, 4rem);
}

html {
        scroll-behavior: smooth;
}

body {
        font-family: var(--font-body);
        font-size: 1rem;
        line-height: 1.7;
        color: var(--dark);
        /*background: var(--white);*/
        /*  background: url('/assets/img/ton-background.jpg') center/cover fixed no-repeat;*/

        -webkit-font-smoothing: antialiased;
}

body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: url("../images/hero_bg.png") center/cover no-repeat;
        z-index: -1;
        opacity: 0.25;
        /* ajuste la visibilité du fond */
}



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

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

/* ── UTILITIES ── */
.container {
        max-width: var(--max);
        margin-inline: auto;
        padding-inline: var(--pad);
}

.btn {
        display: inline-block;
        padding: .85rem 2rem;
        background: var(--highlight);
        color: var(--white);
        font-family: var(--font-head);
        font-weight: 600;
        font-size: .9rem;
        letter-spacing: .04em;
        border-radius: 3px;
        transition: background .2s, transform .15s;
}

.btn:hover {
        background: var(--blue-mid);
        transform: translateY(-2px);
}

.label {
        display: inline-block;
        font-family: var(--font-head);
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--blue-light);
        margin-bottom: .75rem;
}

h1,
h2,
h3,
h4 {
        font-family: var(--font-head);
        line-height: 1.15;
        font-weight: 700;
}

/* ── NAV ── */
nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: var(--blue);
        padding: 1rem var(--pad);
}

.nav-inner {
        max-width: var(--max);
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
}

.nav-logo {
        width: 150px;
}

.nav-logo span {
        color: var(--blue-light);
}

.nav-menu {
        display: flex;
        gap: 1.5rem;
}

.nav-cta {
        font-family: var(--font-head);
        font-size: .8rem;
        font-weight: 600;
        color: var(--white);
        border: 1px solid var(--highlight);
        padding: .5rem 1.2rem;
        border-radius: 3px;
        letter-spacing: .04em;
        transition: background .2s, border-color .2s;
        white-space: nowrap;
}

.nav-cta:hover {
        background: rgba(255, 255, 255, .1);
        border-color: rgba(255, 255, 255, .7);
}

.nav-blog {
        font-family: var(--font-head);
        font-size: .8rem;
        font-weight: 600;
        color: var(--white);

        padding: .5rem 1.2rem;
        border-radius: 3px;
        letter-spacing: .04em;
        transition: background .2s, border-color .2s;
        white-space: nowrap;
}

.nav-blog:hover {
        background: rgba(255, 255, 255, .1);
        border-color: rgba(255, 255, 255, .7);
}

/* ── HERO ── */
.hero {
        padding-top: calc(72px + 5rem);
        padding-bottom: 5rem;
        /*  background-image: url('../images/hero_bg.png');
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;*/
}

.hero::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -100px;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        /*background: radial-gradient(circle, rgba(74, 127, 212, .18) 0%, transparent 70%);*/
        pointer-events: none;
}

.hero-inner {
        max-width: var(--max);
        margin-inline: auto;
        padding-inline: var(--pad);
}

.hero-tag {
        display: inline-block;
        font-family: var(--font-head);
        font-size: .70rem;
        font-weight: 600;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--blue-light);
        margin-bottom: 1.5rem;
}

.hero h1 {
        font-size: clamp(2rem, 5vw, 2.8rem);
        color: var(--blue);
        font-weight: 600;
        max-width: 680px;
        margin-bottom: 1.5rem;
        line-height: 1.1;
}

.hero h1 em {
        font-style: normal;
        color: var(--blue-light);

}

.hero-sub {
        max-width: 520px;
        color: var(--mid);
        font-size: 1.05rem;
        font-weight: 300;
        margin-bottom: 2.5rem;
        line-height: 1.65;
}

.hero-sub strong {
        color: var(--mid);
        font-weight: 800;
}

.hero-badges {
        display: flex;
        flex-wrap: wrap;
        gap: .6rem;
        margin: 2rem 0;
}

.badge {
        font-size: .78rem;
        color: var(--mid);
        border: 1px solid var(--border);
        padding: .35rem .85rem;
        border-radius: 20px;
        font-family: var(--font-head);
        letter-spacing: .03em;
}

/* ── PROBLEM ── */
.problem {
        background: var(--sand);
        padding: 5rem 0;
}

.problem-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem 5rem;
        align-items: start;
}

.problem-col h2 {
        font-size: clamp(1.6rem, 3vw, 2rem);
        color: var(--blue);
        margin-bottom: 1.25rem;
}

.problem-col p {
        color: var(--mid);
        font-size: .97rem;
}

.problem-col p strong {
        color: var(--dark);
}

/* ── PROCESS ── */
.process {
        padding: 5rem 0;
}

.section-header {
        text-align: center;
        margin-bottom: 3.5rem;
}

.section-header h2 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        color: var(--blue);
        max-width: 600px;
        margin-inline: auto;
}

.steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        position: relative;
}

.steps::before {
        content: '';
        position: absolute;
        top: 2.5rem;
        left: calc(16.66% + 1rem);
        right: calc(16.66% + 1rem);
        height: 1px;
        background: var(--border);
}

.step {
        background: var(--sand);
        border-radius: 4px;
        padding: 2rem 1.75rem;
        position: relative;
}

.step-num {
        font-family: var(--font-head);
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--blue-light);
        margin-bottom: .5rem;
}

.step h3 {
        font-size: 1.05rem;
        color: var(--blue);
        margin-bottom: .35rem;
}

.step-sub {
        font-size: .85rem;
        font-weight: 500;
        color: var(--mid);
        margin-bottom: .75rem;
}

.step p {
        font-size: .9rem;
        color: var(--mid);
        line-height: 1.6;
}

.step em {
        display: block;
        margin-top: .85rem;
        font-size: .85rem;
        color: var(--blue-light);
        font-weight: 500;
}

/* ── BENEFITS ── */
.benefits {
        background: var(--blue);
        padding: 5rem 0;
        color: var(--white);
}

.benefits h2 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        color: var(--white);
        margin-bottom: 2rem;
}

.benefits-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
}

.benefit-item {
        display: flex;
        gap: .85rem;
        align-items: flex-start;
        padding: 1.25rem;
        background: rgba(255, 255, 255, .06);
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, .1);
}

.benefit-item .icon {
        font-size: 1.1rem;
        flex-shrink: 0;
        margin-top: .1rem;
}

.benefit-item p {
        font-size: .92rem;
        color: rgba(255, 255, 255, .82);
        line-height: 1.55;
}

/* ── FOR WHO ── */
.forwho {
        padding: 5rem 0;
        background: var(--sand);
}

.forwho h2 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        color: var(--blue);
        margin-bottom: 1.5rem;
}

.forwho-intro {
        color: var(--mid);
        font-size: .97rem;
        margin-bottom: 1.75rem;
}

.checklist {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: .65rem;
}

.checklist li {
        display: flex;
        gap: .75rem;
        align-items: flex-start;
        font-size: .95rem;
        color: var(--mid);
}

.checklist li::before {
        content: '▪';
        color: var(--blue-light);
        flex-shrink: 0;
        margin-top: .05rem;
}

/* ── ABOUT ── */
.about {
        padding: 5rem 0;
}

.about-inner {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 3.5rem;
        align-items: start;
}

.about-photo {
        width: 160px;
        height: 200px;
        object-fit: cover;
        border-radius: 4px;
        flex-shrink: 0;
}

.about-photo-placeholder {
        width: 160px;
        height: 200px;
        background: var(--accent);
        border-radius: 4px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: var(--blue-light);
}

.about-text h2 {
        font-size: clamp(1.6rem, 3vw, 2rem);
        color: var(--blue);
        margin-bottom: 1rem;
}

.about-text p {
        color: var(--mid);
        font-size: .96rem;
        margin-bottom: .75rem;
        line-height: 1.7;
}

.about-text .expertise {
        margin-top: 1.25rem;
        padding: .9rem 1.2rem;
        background: var(--sand);
        border-left: 3px solid var(--blue-light);
        font-size: .88rem;
        color: var(--mid);
        border-radius: 0 3px 3px 0;
}

.about-text .expertise strong {
        color: var(--blue);
}

/* ── DELIVERABLE ── */
.deliverable {
        padding: 5rem 0;
        background: var(--sand);
}

.deliverable h2 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        color: var(--blue);
        margin-bottom: .75rem;
}

.deliverable-intro {
        color: var(--mid);
        margin-bottom: 2rem;
        font-size: .97rem;
        max-width: 620px;
}

.deliverable-cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
}

.deliverable-block {
        background: var(--white);
        border-radius: 4px;
        padding: 1.75rem;
}

.deliverable-block h4 {
        font-size: .85rem;
        font-family: var(--font-head);
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--blue);
        margin-bottom: 1rem;
}

.deliverable-block ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: .55rem;
}

.deliverable-block li {
        display: flex;
        gap: .65rem;
        font-size: .9rem;
        color: var(--mid);
        line-height: 1.5;
}

.deliverable-block li::before {
        content: '▪';
        color: var(--blue-light);
        flex-shrink: 0;
}

/* ── PRICING ── */
.pricing {
        padding: 5rem 0;
}

.pricing-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
}

.card {
        border: 1px solid var(--border);
        border-radius: 6px;
        padding: 2.25rem;
        position: relative;
}

.card.featured {
        border-color: var(--blue);
        background: var(--accent);
}

.card-tag {
        font-family: var(--font-head);
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--blue-light);
        margin-bottom: .75rem;
}

.card h3 {
        font-size: 1.3rem;
        color: var(--blue);
        margin-bottom: .25rem;
}

.card-price {
        font-family: var(--font-head);
        font-size: 2.4rem;
        font-weight: 800;
        color: var(--blue);
        margin-bottom: .25rem;
        line-height: 1;
}

.card-price span {
        font-size: 1rem;
        font-weight: 400;
        color: var(--mid);
}

.card-desc {
        font-size: .88rem;
        color: var(--mid);
        margin: .75rem 0 1.5rem;
        line-height: 1.55;
}

.card-note {
        font-size: .82rem;
        color: var(--light);
        margin-top: 1.25rem;
        line-height: 1.5;
}

.pricing-footer {
        text-align: center;
        margin-top: 2.5rem;
        color: var(--mid);
        font-size: .9rem;
}

/* ── CTA BAND ── */
.cta-band {
        background: var(--blue);
        padding: 4rem var(--pad);
        text-align: center;
}

.cta-band h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        color: var(--white);
        margin-bottom: .75rem;
}

.cta-band p {
        color: rgba(255, 255, 255, .7);
        margin-bottom: 2rem;
        font-size: .97rem;
}

/* ── FOOTER ── */
footer {
        background: var(--dark);
        color: rgba(255, 255, 255, .5);
        padding: 2rem var(--pad);
}

.footer-inner {
        max-width: var(--max);
        margin-inline: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        font-size: .8rem;
}

.footer-logo {
        font-family: var(--font-head);
        font-weight: 500;
        font-size: .95rem;
        color: rgba(255, 255, 255, .8);
        letter-spacing: .04em;
}

.footer-logo span {
        color: var(--blue-light);
}

.footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.25rem;
}

.footer-links a {
        transition: color .15s;
}

.footer-links a:hover {
        color: rgba(255, 255, 255, .85);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
        from {
                opacity: 0;
                transform: translateY(24px);
        }

        to {
                opacity: 1;
                transform: translateY(0);
        }
}

.hero-tag {
        animation: fadeUp .5s ease both;
}

.hero h1 {
        animation: fadeUp .55s .1s ease both;
}

.hero-sub {
        animation: fadeUp .55s .2s ease both;
}

.hero .btn {
        animation: fadeUp .55s .3s ease both;
}

.hero-badges {
        animation: fadeUp .55s .4s ease both;
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {

        .problem-grid,
        .steps,
        .benefits-grid,
        .about-inner,
        .deliverable-cols,
        .pricing-cards {
                grid-template-columns: 1fr;
        }

        .steps::before {
                display: none;
        }

        .about-photo-placeholder {
                width: 100%;
                height: 180px;
        }
}

/*Autres pages*/
/* PAGES LEGALES */

.legal-page {
        padding: 140px 20px 100px;
        background: #f8f6f2;
        min-height: 100vh;
}

.legal-container {
        max-width: 900px;
        margin: 0 auto;
}

.legal-page .label {
        margin-bottom: 20px;
}

.legal-page h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        line-height: 1.1;
        margin-bottom: 20px;
}

.legal-page h2 {
        margin-top: 50px;
        margin-bottom: 15px;
        font-size: 1.6rem;
}

.legal-page p,
.legal-page li {
        font-size: 1rem;
        line-height: 1.8;
        color: rgba(0, 0, 0, .8);
}

.legal-page ul {
        padding-left: 20px;
}

.legal-page strong {
        color: #000;
}

.legal-page a {
        color: inherit;
        text-decoration: underline;
}

.legal-date {
        opacity: .6;
        margin-bottom: 40px;
}