main {
    max-width: 1040px;
    margin: 0 auto;
    padding: 2.4rem 1.5rem calc(3.75rem + 96px);
}

/* Hero CM : légère identité plus éditoriale / communication */
.hero {
    background:
        radial-gradient(900px 420px at 12% 10%, rgb(var(--pink-rgb) / 0.12), transparent 58%),
        radial-gradient(900px 420px at 88% 18%, rgb(var(--yellow-rgb) / 0.10), transparent 60%),
        linear-gradient(180deg, rgb(var(--white-rgb) / 0.02), rgb(var(--white-rgb) / 0.01)),
        var(--card);
}

.hero-subtitle {
    max-width: 760px;
}

.hero-meta {
    margin-top: 1.15rem;
}

.hero-meta div {
    position: relative;
    padding-left: 0.95rem;
}

.hero-meta div::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--yellow), var(--pink));
    box-shadow: 0 0 10px rgb(var(--yellow-rgb) / 0.18);
}

/* Visuel hero */
.hero-visual {
    margin-top: 2.2rem;
}

.hero-visual svg {
    max-width: 500px;
}

.handshake-labels {
    bottom: -1.45rem;
    gap: 0.7rem;
}

.handshake-label {
    color: var(--text-86);
    border-color: rgb(var(--white-rgb) / 0.14);
    background:
        linear-gradient(180deg, rgb(var(--white-rgb) / 0.045), rgb(var(--white-rgb) / 0.018)),
        rgb(var(--bg-rgb) / 0.72);
    box-shadow:
        0 10px 22px rgb(var(--black-rgb) / 0.24),
        0 0 0 1px rgb(var(--white-rgb) / 0.025) inset;
}

/* Sommaire */
#sommaire {
    margin-top: 0.4rem;
}

.toc-card h3 {
    text-wrap: balance;
}

.toc-card p {
    text-wrap: pretty;
}

/* Petits accents spécifiques CM */
#compte-service .block-title span,
#delegation .block-title span,
#reputation .block-title span,
#ia .block-title span {
    color: var(--yellow);
}

/* Mise en valeur repères tarifaires / repères de délégation */
#compte-service .block-body ul li strong,
#delegation .block-body p strong,
#leviers .block-body ul li strong,
#principes .block-body ul li strong {
    color: var(--cream);
}

/* Process / niveaux de délégation */
#delegation .process {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#delegation .process-step {
    min-height: 42px;
    padding-inline: 1rem;
    font-weight: 780;
}

/* CTA audit */
#audit .cta-call {
    margin-top: 0.2rem;
}

/* Rythme de lecture un peu plus premium sur les blocs textuels */
.block-body p {
    text-wrap: pretty;
}

.block-body li {
    text-wrap: pretty;
}

/* Sticky nav : un peu plus large pour les intitulés longs */
.sticky-nav {
    width: min(760px, calc(100% - 1.4rem));
}

.sticky-nav .current-section {
    font-size: 0.94rem;
}

/* Mobile */
@media (max-width: 720px) {
    main {
        padding: 2.1rem 0.75rem 7.2rem;
    }

    .hero {
        padding-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.68;
    }

    .hero-meta {
        gap: 0.7rem 1rem;
        font-size: 0.84rem;
    }

    .hero-meta div {
        padding-left: 0.85rem;
    }

    .hero-visual {
        margin-top: 1.8rem;
    }

    .hero-visual svg {
        max-width: 420px;
    }

    .handshake-labels {
        bottom: -1.25rem;
        gap: 0.45rem;
        flex-wrap: wrap;
        padding: 0 0.4rem;
    }

    .handshake-label {
        font-size: 0.7rem;
        padding: 0.28rem 0.52rem;
    }

    .sticky-nav {
        width: min(580px, calc(100% - 1.1rem));
    }

    .sticky-nav .current-section {
        font-size: 0.84rem;
    }
}