/* ============================================================
   AKTIVA NUMÉRIQUE — STYLES SPÉCIFIQUES PAGE FINANCEMENT
   ============================================================ */

/* ===== ANCHOR NAV (sticky, identique accompagnement) ===== */
.anchor-nav {
    position: sticky;
    top: 73px;
    background: var(--blanc);
    border-bottom: 1px solid rgba(27, 58, 92, 0.1);
    padding: 1rem 2rem;
    z-index: 50;
    box-shadow: 0 2px 8px rgba(27, 58, 92, 0.03);
}
.anchor-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.anchor-nav-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gris-doux);
    font-weight: 500;
}
.anchor-nav-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.anchor-nav-link {
    padding: 0.5rem 1rem;
    background: var(--sable-tres-clair);
    color: var(--bleu-profond);
    border-radius: 2px;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.2s;
}
.anchor-nav-link:hover { background: var(--sable); border-color: var(--bleu-profond); }

.section { scroll-margin-top: 160px; }
.section-narrow { max-width: 880px; margin: 0 auto; position: relative; z-index: 1; }

/* ===== INTRO ===== */
.intro-section { padding: 5rem 2rem; }
.intro-inner { max-width: 880px; margin: 0 auto; }
.intro-inner p {
    font-family: var(--font-lecture);
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--gris-texte);
    margin-bottom: 1.4rem;
}
.intro-inner p strong { font-weight: 500; color: var(--bleu-profond); }
.intro-inner p:first-child::first-letter {
    font-family: var(--font-titre);
    font-size: 4rem;
    font-weight: 400;
    float: left;
    line-height: 0.9;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
    color: var(--terracotta);
}

/* ===== OPCO GRID ===== */
.opco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.opco-card {
    background: var(--blanc);
    padding: 2.25rem 2rem;
    border-radius: 4px;
    border-top: 4px solid var(--terracotta);
    transition: all 0.3s ease;
}
.opco-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(27, 58, 92, 0.08);
}
.opco-acronym {
    font-family: var(--font-titre);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--bleu-profond);
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
    line-height: 1;
}
.opco-fullname {
    font-size: 0.85rem;
    color: var(--terracotta);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}
.opco-card p {
    font-family: var(--font-lecture);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gris-texte);
    margin-bottom: 1.25rem;
}
.opco-card p:last-child { margin-bottom: 0; }
.opco-target {
    display: inline-block;
    background: var(--sable-tres-clair);
    padding: 0.5rem 0.9rem;
    border-radius: 2px;
    font-size: 0.82rem;
    color: var(--bleu-profond);
    font-weight: 500;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.process-step {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(232,226,213,0.2);
    padding: 2rem 1.5rem;
    border-radius: 4px;
}
.process-num {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    display: block;
}
.process-step h4 {
    font-family: var(--font-titre);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--blanc);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.process-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

/* ===== DOCUMENTS CHECKLIST ===== */
.checklist {
    background: var(--blanc);
    border-radius: 4px;
    padding: 2.5rem;
    margin-top: 2rem;
    border-left: 4px solid var(--terracotta);
    box-shadow: 0 4px 16px rgba(27, 58, 92, 0.04);
}
.checklist h3 {
    font-family: var(--font-titre);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--bleu-profond);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--sable);
}
.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.1rem;
}
.checklist-item span {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--gris-texte);
}

/* ===== ENCART ACCOMPAGNEMENT ===== */
.support-block {
    background: var(--bleu-profond);
    color: var(--blanc);
    padding: 3.5rem 3rem;
    border-radius: 4px;
    margin: 4rem auto 0;
    max-width: 900px;
    position: relative;
    overflow: hidden;
}
.support-block::before {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 107, 78, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.support-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--sable);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.support-block h3 {
    font-family: var(--font-titre);
    font-weight: 400;
    font-size: 1.85rem;
    color: var(--blanc);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}
.support-block h3 em { font-style: italic; font-weight: 300; color: var(--sable); }
.support-block p {
    font-family: var(--font-lecture);
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.support-block p:last-child { margin-bottom: 0; }
.support-block strong { color: var(--sable); font-weight: 500; }

/* ===== DELAIS ===== */
.delays-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.delay-card {
    background: var(--blanc);
    padding: 2rem;
    border-radius: 4px;
    border-top: 3px solid var(--terracotta);
    text-align: center;
}
.delay-num {
    font-family: var(--font-titre);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--terracotta);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.delay-unit {
    font-size: 0.78rem;
    color: var(--gris-doux);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}
.delay-card h4 {
    font-family: var(--font-titre);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--bleu-profond);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.delay-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--gris-doux);
}

/* ===== FAQ ===== */
.faq-list { margin-top: 2rem; }
.faq-item {
    background: var(--blanc);
    border-radius: 4px;
    padding: 1.75rem 2rem;
    margin-bottom: 0.85rem;
    border-left: 3px solid var(--sable);
    transition: all 0.2s ease;
}
.faq-item:hover { border-left-color: var(--terracotta); }
.faq-question {
    font-family: var(--font-titre);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--bleu-profond);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.faq-item p {
    font-family: var(--font-lecture);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gris-texte);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .opco-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .delays-grid { grid-template-columns: 1fr; }
    .checklist-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .process-steps { grid-template-columns: 1fr; }
    .anchor-nav-inner { gap: 0.75rem; }
    .support-block { padding: 2.5rem 1.75rem; }
    .checklist { padding: 2rem 1.5rem; }
}
