:root {
    --aubergine-950: #24101f;
    --aubergine-900: #4A154B;
    --aubergine-800: #4b1642;
    --aubergine-700: #6a235b;
    --aubergine-500: #B48A37;
    --aubergine-200: #ead8a6;
    --aubergine-100: #f3edf2;
    --gray-100: #f7f3f5;
    --gray-200: #e5dfe4;
    --gray-500: #716770;
    --paper: #fffdfb;
    --white: #F5F2F5;
    --shadow: 0 24px 60px rgba(52, 27, 46, 0.13);
}

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--aubergine-950);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -0.04em;
}

h1 {
    max-width: 1050px;
    margin-bottom: 28px;
    font-size: clamp(3.2rem, 7vw, 6.4rem);
}

h1 em {
    color: var(--aubergine-800);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
}

h3 {
    font-size: 1.45rem;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    background: var(--white);
    color: var(--aubergine-900);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--aubergine-500);
    outline-offset: 4px;
}

.topbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 10;
    min-height: 82px;
    padding: 0 clamp(24px, 5vw, 88px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid var(--gray-200);
    background: rgba(253, 252, 253, 0.96);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--aubergine-950);
    font-weight: 750;
    text-decoration: none;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid var(--aubergine-500);
    border-radius: 50%;
    background: var(--white);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 21%;
    transform: scale(1.9);
}

.brand-logo {
    width: 238px;
    height: 66px;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.brand-lockup {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-width: 340px;
    color: var(--white);
    line-height: 1;
}

.brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 2vw, 2rem);
    letter-spacing: -0.03em;
}

.brand-tagline {
    margin-top: 8px;
    color: var(--white);
    font-family: "MS Reference Sans Serif", Arial, sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
}

.brand-tagline span {
    color: var(--aubergine-500);
}

.topbar nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 38px);
}

.topbar nav a {
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.topbar nav a:hover {
    color: var(--aubergine-700);
}

.topbar nav .nav-current {
    color: var(--aubergine-200);
}

.scroll-progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 7px;
    overflow: hidden;
    background: rgba(245, 242, 245, 0.18);
}

.scroll-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    background: var(--aubergine-500);
    box-shadow: 0 0 14px rgba(180, 138, 55, 0.5);
    transition: width 100ms linear;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid rgba(245, 242, 245, 0.45);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-highlight {
    padding: 10px 16px;
    border: 1px solid var(--aubergine-500);
    border-radius: 8px;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.nav-highlight:hover {
    border-color: var(--aubergine-500);
    background: var(--aubergine-500);
    color: var(--white);
}

.nav-cta {
    padding: 15px 24px;
    border-radius: 6px;
    background: var(--aubergine-500);
    color: var(--white) !important;
    font-size: 1rem !important;
    box-shadow: 0 8px 18px rgba(180, 138, 55, 0.2);
}

.nav-cta:hover {
    background: var(--aubergine-200);
    color: var(--aubergine-950) !important;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(660px, calc(100svh - 124px), 820px);
    padding: 56px clamp(28px, 7vw, 132px);
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: clamp(40px, 7vw, 120px);
    overflow: hidden;
    background: linear-gradient(120deg, var(--gray-100) 0%, #fffaf7 62%, #f0e4ed 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
}

.hero::before {
    width: 660px;
    height: 660px;
    top: -160px;
    right: -170px;
    border: 116px solid rgba(180, 138, 55, 0.22);
    opacity: 0.75;
}

.hero::after {
    width: 310px;
    height: 310px;
    right: 120px;
    bottom: -225px;
    background: rgba(106, 35, 91, 0.08);
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 56%;
    transform: translateY(0);
}

.hero-name {
    margin: 0 0 8px;
    color: var(--aubergine-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    font-style: italic;
    letter-spacing: -0.06em;
    line-height: 0.95;
    text-align: left;
}

.hero-visual {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 52%;
    overflow: hidden;
    background: var(--paper);
}

.hero-visual::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 253, 251, 1) 0%, rgba(255, 253, 251, 0.86) 18%, rgba(255, 253, 251, 0.42) 42%, rgba(255, 253, 251, 0) 72%);
}

.hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.eyebrow {
    margin-bottom: 22px;
    color: var(--aubergine-500);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-role {
    display: block;
    width: fit-content;
    margin-bottom: 30px;
    color: var(--aubergine-500);
    letter-spacing: 0.16em;
    text-align: left;
}

.hero-intro {
    max-width: 670px;
    margin-bottom: 0;
    color: var(--gray-500);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0 clamp(28px, 7vw, 132px);
    background: var(--aubergine-900);
    color: var(--white);
}

.proof-strip div {
    min-height: 264px;
    padding: 58px 40px;
    border-right: 1px solid rgba(234, 216, 166, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.proof-strip div:first-child {
    padding-left: 0;
}

.proof-strip div:last-child {
    border-right: 0;
}

.proof-strip strong {
    color: var(--aubergine-200);
    font-size: 2.64rem;
    letter-spacing: -0.03em;
}

.proof-strip span {
    max-width: 260px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.26rem;
    line-height: 1.4;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 8px;
    background: var(--aubergine-900);
    color: var(--white);
    font-weight: 750;
    text-decoration: none;
    transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
    background: var(--aubergine-700);
    box-shadow: 0 12px 25px rgba(52, 27, 46, 0.18);
    transform: translateY(-2px);
}

.button-agenda {
    background: var(--aubergine-500);
    color: var(--white);
}

.button-agenda:hover {
    background: var(--aubergine-700);
    color: var(--white);
}

.hero .button-agenda {
    min-width: 285px;
    min-height: 70px;
    padding: 20px 32px;
    font-size: 1.18rem;
}

.text-link {
    font-weight: 750;
    text-decoration: none;
}

.text-link:hover {
    color: var(--aubergine-700);
}

.countdown-card {
    position: relative;
    z-index: 1;
    padding: clamp(28px, 4vw, 44px);
    background: linear-gradient(145deg, var(--aubergine-900), var(--aubergine-800));
    border: 1px solid rgba(234, 216, 166, 0.38);
    border-top: 4px solid var(--aubergine-500);
    color: var(--white);
    box-shadow: var(--shadow);
}

.countdown-kicker {
    margin-bottom: 14px;
    color: var(--aubergine-200);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.countdown-card h2 {
    margin-bottom: 28px;
    font-size: clamp(2rem, 3vw, 3.15rem);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.countdown div {
    min-width: 0;
    padding: 15px 10px;
    border: 1px solid rgba(234, 216, 166, 0.3);
    background: rgba(255, 255, 255, 0.055);
    text-align: center;
}

.countdown strong,
.countdown span {
    display: block;
}

.countdown strong {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown span {
    margin-top: 8px;
    color: var(--aubergine-200);
    font-size: 0.67rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.countdown-date {
    margin: 22px 0 0;
    color: var(--aubergine-200);
    font-weight: 650;
}

.intro-section,
.services-section {
    padding: clamp(78px, 9vw, 132px) clamp(28px, 7vw, 132px);
}

.intro-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
    gap: clamp(50px, 9vw, 160px);
}

.intro-section h2 {
    max-width: 760px;
}

.intro-text {
    align-self: end;
    color: var(--gray-500);
    font-size: 1.12rem;
}

.services-section {
    background: linear-gradient(135deg, var(--aubergine-100), #fffaf7);
}

.services-section > h2 {
    max-width: 760px;
    margin-bottom: 52px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--aubergine-500);
}

.service-grid article {
    padding: 34px 28px 12px;
    border-right: 1px solid var(--aubergine-500);
}

.service-grid article:last-child {
    border-right: 0;
}

.service-grid article > span {
    color: var(--aubergine-700);
    font-size: 0.74rem;
    font-weight: 800;
}

.service-grid h3 {
    margin: 52px 0 14px;
}

.service-grid p {
    color: var(--gray-500);
}

.closing-section {
    padding: clamp(80px, 9vw, 130px) 28px;
    background: radial-gradient(circle at 15% 20%, var(--aubergine-700), var(--aubergine-950) 68%);
    border-top: 5px solid var(--aubergine-500);
    color: var(--white);
    text-align: center;
}

.closing-section .eyebrow,
.closing-section > p:not(.eyebrow) {
    color: var(--aubergine-200);
}

.closing-section h2 {
    max-width: 880px;
    margin-right: auto;
    margin-left: auto;
}

.closing-section > p:not(.eyebrow) {
    margin-bottom: 28px;
    font-size: 1.12rem;
}

.button-light {
    background: var(--white);
    color: var(--aubergine-800);
}

.button-light:hover {
    background: var(--gray-100);
    color: var(--aubergine-900);
}

footer {
    padding: 38px clamp(24px, 5vw, 88px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid var(--gray-200);
    background: var(--paper);
}

footer p {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.88rem;
}

.footer-brand .brand-mark {
    width: 36px;
    height: 36px;
}

.footer-brand .brand-logo {
    width: 423px;
    height: 118px;
}

@media (max-width: 1050px) {
    .hero {
        grid-template-columns: 1fr;
    }

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

    .service-grid article:nth-child(2) {
        border-right: 0;
    }

    .service-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--aubergine-500);
    }
}

@media (max-width: 780px) {
    .topbar {
        padding-top: 16px;
        padding-bottom: 16px;
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar nav {
        width: 100%;
        padding-top: 12px;
        justify-content: space-between;
        gap: 12px;
        border-top: 1px solid var(--gray-200);
        overflow-x: auto;
    }

    .topbar nav a {
        white-space: nowrap;
    }

    .brand-logo {
        width: 210px;
        height: 58px;
    }

    .brand-lockup {
        min-width: 0;
    }

    .hero,
    .intro-section {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-copy {
        max-width: none;
        transform: none;
    }

    .hero-visual {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        min-height: 420px;
        margin-top: 40px;
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 780px) {
    .topbar {
        position: sticky;
        min-height: 82px;
        padding: 12px 20px;
        align-items: center;
        flex-direction: row;
    }

    .topbar .brand-logo {
        width: 280px;
        height: 77px;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .topbar nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        width: 100%;
        padding: 16px 20px 20px;
        border-top: 1px solid rgba(245, 242, 245, 0.2);
        background: var(--aubergine-900);
        box-shadow: 0 14px 24px rgba(36, 16, 31, 0.2);
        overflow: visible;
    }

    .topbar.menu-open nav {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .topbar.menu-open nav a,
    .topbar.menu-open nav a:not(.nav-cta) {
        display: block;
        width: 100%;
        padding: 13px 0;
        white-space: normal;
    }

    .topbar.menu-open nav .nav-cta {
        width: fit-content !important;
        min-width: 220px;
        margin-top: 8px;
        margin-right: auto;
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 540px) {
    .topbar nav a:not(.nav-cta) {
        display: none;
    }

    h1 {
        font-size: clamp(2.8rem, 15vw, 4.5rem);
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-brand .brand-logo {
        width: 280px;
        height: 70px;
    }

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

    .service-grid article,
    .service-grid article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--aubergine-500);
    }

    .service-grid article:last-child {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* V2 - architecture de présentation et d'accompagnement */
.topbar {
    min-height: 124px;
    border-bottom: 0;
    background: var(--aubergine-900);
}

.brand-logo {
    width: 370px;
    height: 96px;
    object-fit: contain;
    mix-blend-mode: normal;
    transform: translateY(clamp(4px, 0.35vw, 6px));
}

.brand {
    color: var(--white);
}

.topbar nav a {
    color: var(--white);
}

.topbar nav a:hover {
    color: var(--aubergine-200);
}

.nav-highlight {
    border-color: var(--aubergine-500);
    color: var(--white);
}

.nav-highlight:hover {
    background: var(--aubergine-500);
    color: var(--white);
}

.hero {
    min-height: clamp(660px, calc(100svh - 124px), 820px);
    background: linear-gradient(120deg, #f7f3f5 0%, #fffaf7 55%, #efe1eb 100%);
}

.hero::before {
    border-color: rgba(180, 138, 55, 0.2);
}

.hero-copy {
    max-width: 56%;
}

h1 {
    font-size: clamp(3rem, 6.8vw, 6.1rem);
}

.hero-intro {
    max-width: 700px;
}

.statement-section,
.benefits-section,
.formulas-section,
.about-section,
.faq-section {
    padding: clamp(86px, 10vw, 150px) clamp(28px, 7vw, 132px);
}

.statement-section,
.about-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: clamp(52px, 9vw, 150px);
}

.section-heading {
    max-width: 680px;
}

.section-heading-wide {
    max-width: 850px;
}

.section-heading h2,
.about-panel h2,
.contact-copy h2 {
    margin-bottom: 0;
}

.statement-copy,
.about-copy,
.section-lead {
    color: var(--gray-500);
    font-size: 1.08rem;
}

.statement-copy {
    align-self: end;
}

.statement-copy p:last-child {
    margin-bottom: 0;
}

.benefits-section {
    background: var(--aubergine-100);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 60px;
    border-top: 1px solid var(--aubergine-500);
}

.benefit-card {
    min-height: 250px;
    padding: 28px 26px 10px;
    border-right: 1px solid var(--aubergine-500);
}

.benefit-card:last-child {
    border-right: 0;
}

.benefit-number,
.formula-index {
    color: var(--aubergine-500);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.benefit-card h3 {
    margin: 58px 0 14px;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--gray-500);
}

.formulas-section {
    background: var(--paper);
}

.approach-section {
    padding: clamp(86px, 10vw, 150px) clamp(28px, 7vw, 132px);
    background: var(--paper);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 58px;
    background: var(--aubergine-500);
    border: 1px solid var(--aubergine-500);
}

.approach-grid article {
    min-height: 270px;
    padding: 30px;
    background: var(--white);
}

.approach-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid var(--aubergine-500);
    border-radius: 50%;
    color: var(--aubergine-500);
    font-size: 0.86rem;
    font-weight: 800;
}

.approach-grid h3 {
    margin: 34px 0 14px;
}

.approach-grid p {
    margin-bottom: 0;
    color: var(--gray-500);
}

.section-lead {
    max-width: 680px;
    margin-top: 28px;
    margin-bottom: 0;
}

.formula-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 58px;
}

.formula-card {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--aubergine-500);
    background: var(--white);
    box-shadow: 0 20px 45px rgba(52, 27, 46, 0.07);
}

.formula-card-featured {
    background: var(--aubergine-900);
    color: var(--white);
}

.formula-card h3 {
    max-width: 480px;
    margin: 34px 0 34px;
    font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.formula-card h4 {
    margin: 26px 0 7px;
    color: var(--aubergine-700);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.formula-card-featured h4 {
    color: var(--aubergine-200);
}

.formula-card p {
    color: var(--gray-500);
}

.formula-card-featured p {
    color: var(--aubergine-100);
}

.formula-card .formula-duration {
    margin-top: 28px;
    color: var(--aubergine-700);
    font-weight: 750;
}

.formula-card-featured .formula-duration {
    color: var(--aubergine-200);
}

.formula-cta {
    margin-top: 34px;
}

.dashboard-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    gap: clamp(50px, 9vw, 150px);
    align-items: center;
    padding: clamp(86px, 10vw, 150px) clamp(28px, 7vw, 132px);
    background: var(--aubergine-100);
}

.dashboard-copy {
    max-width: 560px;
}

.dashboard-copy h2 {
    margin-bottom: 26px;
}

.dashboard-copy > p:not(.eyebrow) {
    color: var(--gray-500);
    font-size: 1.08rem;
}

.dashboard-card {
    padding: clamp(24px, 4vw, 42px);
    background: var(--aubergine-900);
    color: var(--white);
    box-shadow: var(--shadow);
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(234, 216, 166, 0.35);
}

.dashboard-top span {
    font-size: 1.25rem;
    font-weight: 750;
}

.dashboard-top strong {
    color: var(--aubergine-200);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.dashboard-metrics div {
    padding: 16px 12px;
    border: 1px solid rgba(234, 216, 166, 0.25);
}

.dashboard-metrics span,
.dashboard-metrics em {
    display: block;
    color: var(--aubergine-200);
    font-size: 0.7rem;
    font-style: normal;
    text-transform: uppercase;
}

.dashboard-metrics strong {
    display: block;
    margin: 13px 0 5px;
    font-size: clamp(1.25rem, 3vw, 2.2rem);
}

.dashboard-bars {
    height: 126px;
    display: flex;
    align-items: end;
    gap: 10px;
    margin-top: 28px;
    padding: 0 12px 1px;
    border-bottom: 1px solid rgba(234, 216, 166, 0.35);
}

.dashboard-bars i {
    flex: 1;
    background: linear-gradient(to top, var(--aubergine-500), var(--aubergine-200));
}

.dashboard-bars i:nth-child(1) { height: 34%; }
.dashboard-bars i:nth-child(2) { height: 48%; }
.dashboard-bars i:nth-child(3) { height: 42%; }
.dashboard-bars i:nth-child(4) { height: 67%; }
.dashboard-bars i:nth-child(5) { height: 59%; }
.dashboard-bars i:nth-child(6) { height: 80%; }
.dashboard-bars i:nth-child(7) { height: 93%; }

.dashboard-card > p {
    margin: 18px 0 0;
    color: var(--aubergine-200);
    font-size: 0.85rem;
}

.about-section {
    background: linear-gradient(135deg, var(--aubergine-100), #fffaf7);
}

.about-panel {
    padding: clamp(28px, 4vw, 52px);
    background: var(--aubergine-900);
    color: var(--white);
}

.about-panel .eyebrow {
    color: var(--aubergine-200);
}

.about-panel h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.6vw, 3.8rem);
    font-weight: 400;
    letter-spacing: -0.03em;
}

.about-copy {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pillars {
    display: grid;
    gap: 20px;
    margin-top: 34px;
}

.pillars div {
    display: grid;
    grid-template-columns: minmax(110px, 0.32fr) minmax(0, 1fr);
    gap: 22px;
    padding-top: 17px;
    border-top: 1px solid var(--aubergine-500);
}

.pillars strong {
    color: var(--aubergine-700);
}

.pillars span {
    color: var(--gray-500);
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: clamp(52px, 9vw, 150px);
    background: var(--paper);
}

.faq-list {
    max-width: 900px;
    width: 100%;
    margin: 0;
    align-self: stretch;
    border-top: 1px solid var(--gray-200);
}

.faq-list details {
    padding: 22px 0;
    border-bottom: 1px solid var(--gray-200);
}

.faq-list summary {
    cursor: pointer;
    padding-right: 32px;
    color: var(--aubergine-900);
    font-size: 1.12rem;
    font-weight: 750;
    transition: color 180ms ease;
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
    color: var(--aubergine-500);
}

.faq-list summary::marker {
    color: var(--aubergine-900);
    transition: color 180ms ease;
}

.faq-list summary:hover::marker,
.faq-list summary:focus-visible::marker {
    color: var(--aubergine-500);
}

.tip-main {
    padding: clamp(70px, 8vw, 120px) clamp(28px, 7vw, 132px) 100px;
    background: linear-gradient(135deg, var(--gray-100), #fffaf7 60%, #f0e4ed);
}

.tip-intro {
    max-width: 900px;
    margin: 0 auto 54px;
    text-align: center;
}

.tip-intro h1 {
    margin-bottom: 24px;
}

.tip-title {
    color: var(--aubergine-500);
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tip-intro > p:not(.eyebrow) {
    max-width: 720px;
    margin: 0 auto;
    color: var(--gray-500);
    font-size: 1.12rem;
}

.fraud-guide {
    max-width: 1536px;
    margin: 0 auto;
}

.fraud-guide img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.fraud-guide figcaption {
    margin-top: 36px;
    color: var(--gray-500);
    font-size: 1.2rem;
    font-weight: 650;
    text-align: center;
}

.tip-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 38px;
}

.faq-list p {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--gray-500);
}

.contact-section {
    padding: clamp(78px, 9vw, 130px) clamp(28px, 7vw, 132px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
    gap: clamp(50px, 9vw, 150px);
    background: radial-gradient(circle at 12% 20%, var(--aubergine-700), var(--aubergine-950) 68%);
    border-top: 5px solid var(--aubergine-500);
    color: var(--white);
}

.contact-copy {
    max-width: 800px;
}

.contact-copy .eyebrow {
    color: var(--aubergine-200);
}

.contact-copy h2 {
    font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.contact-copy > p:not(.eyebrow) {
    max-width: 650px;
    margin: 28px 0;
    color: var(--aubergine-200);
    font-size: 1.12rem;
}

.contact-details {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding-left: 28px;
    border-left: 1px solid var(--aubergine-500);
    color: var(--aubergine-200);
    font-size: 1.05rem;
}

.contact-details p {
    margin-bottom: 16px;
    color: var(--white);
}

.contact-details a {
    color: var(--white);
    font-weight: 700;
    font-size: 1.02em;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--aubergine-200);
}

.footer-brand .brand-logo {
    width: 423px;
    height: 118px;
}

@media (max-width: 1050px) {
    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-card:nth-child(2) {
        border-right: 0;
    }

    .benefit-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--aubergine-500);
    }

    .proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-strip div:nth-child(2) {
        border-right: 0;
    }

    .proof-strip div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(234, 216, 166, 0.35);
    }

    .dashboard-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .topbar {
        min-height: 0;
    }

    .hero-copy {
        max-width: none;
    }

    .brand-logo {
        width: 280px;
        height: 70px;
    }

    .brand-lockup {
        min-width: 0;
    }

    .statement-section,
    .about-section,
    .faq-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

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

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

    .contact-details {
        padding-top: 28px;
        padding-left: 0;
        border-top: 1px solid var(--aubergine-500);
        border-left: 0;
    }
}

@media (max-width: 540px) {
    .proof-strip {
        grid-template-columns: 1fr;
    }

    .proof-strip div,
    .proof-strip div:first-child {
        min-height: 100px;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(234, 216, 166, 0.35);
    }

    .proof-strip div:last-child {
        border-bottom: 0;
    }

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

    .benefit-card,
    .benefit-card:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--aubergine-500);
    }

    .benefit-card:last-child {
        border-bottom: 0;
    }

    .pillars div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .dashboard-metrics {
        grid-template-columns: 1fr;
    }
}

/* Final mobile layout overrides */
@media (max-width: 780px) {
    html,
    body {
        width: 100%;
        max-width: 100vw;
        overflow-x: clip;
    }

    .topbar {
        width: 100%;
        min-height: 82px;
        padding: 12px 20px;
        align-items: center;
        flex-direction: row;
    }

    .topbar .brand-logo {
        width: 230px;
        height: 63px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .topbar nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        width: 100%;
        max-width: 100vw;
        padding: 16px 20px 20px;
        border-top: 1px solid rgba(245, 242, 245, 0.2);
        background: var(--aubergine-900);
        overflow: hidden;
    }

    .topbar.menu-open nav {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .topbar.menu-open nav a,
    .topbar.menu-open nav a:not(.nav-cta) {
        display: block;
        width: 100%;
        padding: 13px 0;
        white-space: normal;
    }

    .topbar.menu-open nav .nav-cta {
        margin-top: 8px;
        text-align: center;
    }

    .footer-brand .brand-logo {
        width: 280px;
        height: 70px;
    }
}

/* Mobile final override: prevents legacy desktop rules from widening the page. */
@media screen and (max-width: 1225px) {
    html,
    body {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: clip !important;
    }

    .topbar {
        position: sticky !important;
        top: 0 !important;
        display: flex !important;
        width: 100% !important;
        min-height: 82px !important;
        padding: 10px 16px !important;
        align-items: center !important;
        flex-direction: row !important;
        gap: 12px !important;
    }

    .topbar .brand {
        min-width: 0 !important;
        max-width: calc(100% - 58px) !important;
        flex: 1 1 auto !important;
    }

    .topbar .brand-logo {
        display: block !important;
        width: min(260px, 100%) !important;
        height: auto !important;
        max-height: 71px !important;
    }

    .menu-toggle {
        display: block !important;
        flex: 0 0 44px !important;
        width: 44px !important;
        height: 44px !important;
        margin-left: auto !important;
        visibility: visible !important;
    }

    .topbar nav {
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        left: 0 !important;
        display: none !important;
        width: 100% !important;
        max-width: 100vw !important;
        height: auto !important;
        padding: 14px 16px 18px !important;
        flex-direction: column !important;
        background: var(--aubergine-900) !important;
        overflow: hidden !important;
    }

    .topbar.menu-open nav {
        display: flex !important;
    }

    .topbar.menu-open nav a,
    .topbar.menu-open nav a:not(.nav-cta) {
        display: block !important;
        width: 100% !important;
        padding: 12px 0 !important;
        white-space: normal !important;
    }

    .topbar.menu-open nav .nav-cta {
        width: fit-content !important;
        min-width: 220px;
        margin-top: 8px;
        margin-right: auto;
        margin-left: 0;
        text-align: center;
    }

    main,
    section,
    footer,
    .tip-main,
    .fraud-guide,
    .fraud-guide img {
        width: 100% !important;
        max-width: 100% !important;
    }

    .fraud-guide img {
        height: auto !important;
    }

    .footer-brand .brand-logo {
        width: min(280px, 100%) !important;
        height: auto !important;
    }

    .footer-brand {
        align-self: center !important;
    }
}

/* Sur les petits écrans, l’image d’accueil est retirée pour privilégier le contenu. */
@media screen and (max-width: 777px) {
    .hero-visual {
        display: none !important;
    }
}

/* Keep the main navigation visible while scrolling on every device. */
html,
body {
    overflow-x: clip !important;
}

.topbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}
