/* ── Hero ── */
.hero-candidat {
    background-color: var(--gray-900);
    color: #fff;
    padding: 72px 0 64px;
}

.hero-candidat .label-section {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}

.hero-candidat .label-section::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.hero-candidat .label-section::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.hero-candidat h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 0;
}

.hero-candidat h1 em {
    font-style: italic;
    color: var(--red);
}

.hero-candidat .hero-desc {
    font-size: 0.93rem;
    color: rgba(255,255,255,.55);
    line-height: 1.75;
}

/* ── Section Postuler ── */
.section-postuler {
    padding: 60px 0 80px;
    background: #fff;
}

.section-postuler h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.section-postuler h2 em {
    font-style: italic;
    color: var(--red);
}

.section-postuler .form-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

/* ── Bouton soumettre ── */
.btn-candidature {
    background-color: var(--red);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: .04em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .2s, transform .15s;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.btn-candidature:hover {
    background-color: var(--red-dark);
    color: #fff;
    transform: translateX(3px);
}

/* ── Carte "Notre Processus" ── */
.card-processus {
    background: var(--gray-900);
    color: #fff;
    border-radius: 6px;
    padding: 30px 28px;
}

.card-processus .label-section-light {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
}

.card-processus .label-section-light::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.card-processus .label-section-light::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.processus-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.processus-step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: var(--red);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 800;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-body h6 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.step-body p {
    font-size: 0.875rem;
    color: rgba(255,255,255,.5);
    margin: 0;
    line-height: 1.55;
}

/* ── Carte citation ── */
.card-quote {
    background: #f7f0eb;
    border-radius: 6px;
    padding: 26px 28px;
    margin-top: 20px;
}

.card-quote blockquote {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gray-900);
    line-height: 1.65;
    margin: 0 0 12px;
}

.card-quote cite {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--red);
    font-style: normal;
}

/* ── Carte contact téléphonique ── */
.card-contact {
    background: var(--gray-900);
    border: 1px solid var(--gray-900);
    border-radius: 6px;
    padding: 26px 28px;
    text-align: center;
    margin-top: 20px;
}

.card-contact p {
    font-size: 0.875rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.card-contact strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0;
}

.card-contact a {
    color: #ffffff;
}

.card-contact .phone {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--red);
    display: block;
    margin-bottom: 16px;
}

