/* ========================================
   Page d'offre — Conseil en organisation (SEO-BACKLOG SEO-014)
   Réutilise les variables et composants du design system (styles.css) :
   pas de nouvelle palette, pas de nouveau composant bouton/carte.
======================================== */

.co-main {
    margin-top: 80px; /* compense la nav fixed, comme .legal-page */
}

.co-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
}

.co-container--narrow {
    max-width: var(--container-narrow);
}

.co-hero {
    padding: var(--space-3xl) var(--section-padding-x) var(--space-2xl);
    text-align: center;
    background: var(--gris-perle);
}

.co-hero h1 {
    margin: 1rem 0 1.5rem;
    font-size: var(--text-hero);
}

.co-lead {
    font-size: var(--text-large);
    color: var(--gris-moyen);
    line-height: var(--leading-relaxed);
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.co-section {
    padding: var(--space-3xl) var(--section-padding-x);
    background: white;
}

.co-section--alt {
    background: var(--gris-perle);
}

.co-section p {
    margin-bottom: 1.25rem;
    line-height: var(--leading-relaxed);
}

.co-section p:last-child {
    margin-bottom: 0;
}

.co-aside {
    font-size: var(--text-small);
    color: var(--gris-moyen);
}

/* Comment se déroule une mission : deux temps numérotés */
.co-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.co-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    border: 2px solid var(--gris-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
}

.co-step-number {
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-weight: var(--weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-step h3 {
    font-size: var(--text-h3);
    margin-bottom: 0.5rem;
}

.co-step p {
    margin-bottom: 0;
    color: var(--gris-moyen);
}

/* Ce que vous recevez : encart démo, distinct et visible */
.co-demo-callout {
    margin-top: 2rem;
    padding: 1.75rem 2rem;
    border: 2px solid var(--orange-signature);
    border-radius: var(--radius-lg);
    text-align: center;
}

.co-demo-callout-label {
    display: inline-block;
    font-size: var(--text-small);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--orange-texte);
    margin-bottom: 0.75rem;
}

.co-demo-callout p {
    margin-bottom: 1.25rem;
}

/* Ce qui distingue cette approche : trois principes */
.co-principles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.co-principle {
    background: white;
    border: 2px solid var(--gris-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
}

.co-principle h3 {
    font-size: var(--text-h3);
    margin-bottom: 0.75rem;
}

.co-principle p {
    margin-bottom: 0;
    color: var(--gris-moyen);
}

@media (min-width: 640px) {
    .co-principles {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .co-hero {
        padding: var(--space-2xl) var(--space-md);
    }

    .co-section {
        padding: var(--space-2xl) var(--space-md);
    }

    .co-step,
    .co-principle {
        padding: 1.5rem;
    }

    .co-step {
        flex-direction: column;
    }
}
