/* =========================================================
   Grow UP IN ALGERIA — Programme Partenariats Corporate
   Feuille de style institutionnelle
   Opéré par SPA NET STATION
   ========================================================= */

:root {
    --c-navy: #0B1F3A;
    --c-navy-deep: #071632;
    --c-navy-soft: #14315A;
    --c-gold: #C9A961;
    --c-gold-soft: #D8BE85;
    --c-white: #FFFFFF;
    --c-off-white: #FAFAF7;
    --c-beige: #F1EDE3;
    --c-text: #2A2A2A;
    --c-text-soft: #55586B;
    --c-line: #E4E0D5;
    --c-line-dark: rgba(255, 255, 255, 0.14);

    --ff-serif: "Playfair Display", Georgia, "Times New Roman", serif;
    --ff-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;

    --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
    --shadow-md: 0 10px 30px rgba(11, 31, 58, 0.10);
    --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.14);

    --maxw: 1200px;
    --gutter: clamp(1.25rem, 3vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--ff-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--ff-serif);
    color: var(--c-navy);
    margin: 0 0 0.6em;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }

p { margin: 0 0 1em; }

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* ---------- Eyebrows & section heads ---------- */
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold);
    font-weight: 600;
    margin: 0 0 1rem;
}
.eyebrow-dark { color: var(--c-navy); }
.eyebrow-light { color: var(--c-gold-soft); }

.section-head {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    text-align: center;
}
.section-head h2 { margin-bottom: 1rem; }
.section-lede {
    color: var(--c-text-soft);
    font-size: 1.05rem;
    margin: 0;
}
.section-head-light h2 { color: var(--c-white); }
.section-lede-light { color: rgba(255, 255, 255, 0.78); }

.placeholder {
    background: rgba(201, 169, 97, 0.18);
    color: var(--c-navy);
    padding: 0.05em 0.45em;
    border-radius: var(--radius-sm);
    font-size: 0.92em;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.8rem;
    font-family: var(--ff-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent;
    text-align: center;
    line-height: 1.2;
}
.btn-primary {
    background: var(--c-gold);
    color: var(--c-navy);
    border-color: var(--c-gold);
}
.btn-primary:hover { background: var(--c-gold-soft); border-color: var(--c-gold-soft); }
.btn-ghost {
    background: transparent;
    color: var(--c-white);
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--c-white); }
.btn:active { transform: translateY(1px); }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 31, 58, 0.92);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    color: var(--c-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    gap: 1.5rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--c-white);
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-soft) 100%);
    color: var(--c-navy);
    font-family: var(--ff-serif);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
    font-family: var(--ff-serif);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.brand-text em {
    font-style: normal;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.02em;
    margin-top: 2px;
}

.primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.primary-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}
.primary-nav a:hover { color: var(--c-gold); }
.primary-nav .nav-cta {
    padding: 0.55rem 1.1rem;
    border: 1px solid var(--c-gold);
    color: var(--c-gold);
    border-radius: var(--radius-sm);
}
.primary-nav .nav-cta:hover { background: var(--c-gold); color: var(--c-navy); }

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0.4rem;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    color: var(--c-white);
    overflow: hidden;
    isolation: isolate;
    padding: clamp(5rem, 11vw, 8.5rem) 0 clamp(4.5rem, 9vw, 7rem);
}
.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(1000px 500px at 80% -10%, rgba(201, 169, 97, 0.18), transparent 60%),
        radial-gradient(800px 400px at 10% 110%, rgba(20, 49, 90, 0.55), transparent 60%),
        linear-gradient(160deg, var(--c-navy-deep) 0%, var(--c-navy) 55%, var(--c-navy-soft) 100%);
}
.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}
.hero-inner { max-width: 880px; }
.hero h1 {
    color: var(--c-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.hero-lede {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-lede strong { color: var(--c-gold-soft); font-weight: 600; }
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.hero-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0;
}

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-valeur { background: var(--c-white); }
.section-modeles { background: var(--c-beige); }
.section-references {
    background: linear-gradient(165deg, var(--c-navy-deep) 0%, var(--c-navy) 100%);
    color: var(--c-white);
}
.section-processus { background: var(--c-off-white); }
.section-methodologie {
    background: var(--c-off-white);
    position: relative;
}
.section-methodologie::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--c-gold);
    border-radius: 2px;
}
.section-contact {
    background: linear-gradient(170deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
    color: var(--c-white);
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: clamp(1.25rem, 2vw, 1.75rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ---------- Cards (Proposition de valeur) ---------- */
.card {
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-gold-soft);
}
.card-num {
    font-family: var(--ff-serif);
    font-size: 0.95rem;
    color: var(--c-gold);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--c-text-soft); font-size: 0.95rem; margin: 0; }

/* ---------- Tiles (Modèles) ---------- */
.tile {
    background: var(--c-white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    border-left: 3px solid var(--c-gold);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tile:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tile h3 { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.85rem; }
.tile-index {
    font-family: var(--ff-serif);
    color: var(--c-gold);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.tile p { color: var(--c-text-soft); font-size: 0.96rem; margin-bottom: 1.25rem; }
.tile-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--c-line);
    padding-top: 1.25rem;
}
.tile-list li {
    font-size: 0.88rem;
    color: var(--c-text);
    padding: 0.35rem 0 0.35rem 1.3rem;
    position: relative;
}
.tile-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 6px;
    height: 6px;
    background: var(--c-gold);
    border-radius: 50%;
}

/* ---------- References (Dark section) ---------- */
.refs-grid { gap: 1.25rem; }
.ref-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-line-dark);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.ref-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 169, 97, 0.5);
    transform: translateY(-3px);
}
.ref-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.25rem 0.65rem;
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 2px;
}
.ref-card h3 { color: var(--c-white); margin-bottom: 0.75rem; }
.ref-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.93rem;
    margin: 0;
    line-height: 1.7;
}
.ref-card .placeholder {
    background: rgba(201, 169, 97, 0.22);
    color: var(--c-gold-soft);
}

.ref-card-figures { display: flex; flex-direction: column; }
.figures-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: grid;
    gap: 1rem;
}
.figures-list li {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--c-line-dark);
}
.figures-list li:last-child { border-bottom: 0; }
.fig-val {
    font-family: var(--ff-serif);
    font-size: 1.35rem;
    color: var(--c-gold-soft);
    font-weight: 600;
}
.fig-lbl {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.04em;
    margin-top: 2px;
}

/* ---------- Processus (Steps) ---------- */
.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    counter-reset: step;
    position: relative;
}
.steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-gold) 15%, var(--c-gold) 85%, transparent);
    opacity: 0.5;
    z-index: 0;
}
.step {
    background: var(--c-white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    border: 1px solid var(--c-line);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--c-navy);
    color: var(--c-gold);
    font-family: var(--ff-serif);
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 2px solid var(--c-gold);
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; color: var(--c-text-soft); margin: 0; }

/* ---------- Contact ---------- */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.contact-intro h2 { color: var(--c-white); }
.contact-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}
.contact-intro .placeholder {
    background: rgba(201, 169, 97, 0.22);
    color: var(--c-gold-soft);
}
.contact-coords {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--c-line-dark);
    padding-top: 1.5rem;
}
.contact-coords li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    padding: 0.35rem 0;
}
.contact-coords strong { color: var(--c-gold-soft); letter-spacing: 0.02em; }

.contact-form {
    background: var(--c-white);
    color: var(--c-text);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
    font-size: 0.82rem;
    color: var(--c-navy);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.field label span[aria-hidden] { color: var(--c-gold); }
.field input,
.field select,
.field textarea {
    font-family: var(--ff-sans);
    font-size: 0.95rem;
    color: var(--c-text);
    background: var(--c-off-white);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
    background: var(--c-white);
}
.field textarea { resize: vertical; min-height: 110px; }
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
    border-color: #B3261E;
    box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--c-text-soft);
    line-height: 1.5;
}
.field-consent input { margin-top: 3px; accent-color: var(--c-gold); }

.btn-submit { width: 100%; margin-top: 0.4rem; }

.form-feedback {
    margin: 0;
    font-size: 0.9rem;
    min-height: 1.2em;
}
.form-feedback.is-success { color: #136b3e; font-weight: 500; }
.form-feedback.is-error { color: #B3261E; font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--c-navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem 0;
    font-size: 0.88rem;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
}
.footer-brand strong {
    color: var(--c-white);
    font-family: var(--ff-serif);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    display: block;
    margin-bottom: 0.5rem;
}
.footer-brand p { margin: 0.15rem 0; line-height: 1.5; }
.footer-meta { text-align: right; }
.footer-meta p { margin: 0.15rem 0; }
.footer-legal { color: rgba(255, 255, 255, 0.5); font-size: 0.8rem; }
.footer-meta .placeholder {
    background: rgba(201, 169, 97, 0.18);
    color: var(--c-gold-soft);
    font-size: 0.78rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps::before { display: none; }
    .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .nav-toggle { display: inline-flex; }
    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--c-navy-deep);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }
    .primary-nav.is-open { max-height: 400px; }
    .primary-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem var(--gutter) 1.25rem;
    }
    .primary-nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
    .primary-nav li:last-child { border-bottom: 0; }
    .primary-nav a {
        display: block;
        padding: 0.95rem 0;
        font-size: 0.95rem;
    }
    .primary-nav .nav-cta {
        margin-top: 0.75rem;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    .site-header { position: relative; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; }
    .footer-meta { text-align: left; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .brand-text em { display: none; }
}

/* =========================================================================
   PATCH CONTRASTE & VISIBILITÉ — 18/04/2026
   Additif : écrase les règles antérieures par ordre de cascade.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Sections à fond foncé — contraste texte renforcé
   ------------------------------------------------------------------------- */

/* Section Références (fond navy) */
.section-references {
    background: linear-gradient(170deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
    color: rgba(255, 255, 255, 0.92);
}
.section-references h2,
.section-references h3,
.section-references .ref-card h3 {
    color: var(--c-white) !important;
}
.section-references p,
.section-references li,
.section-references .ref-card p {
    color: rgba(255, 255, 255, 0.88) !important;
}
.section-references .ref-label {
    color: var(--c-gold) !important;
    font-weight: 600;
    letter-spacing: 0.08em;
}
.section-references .ref-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
}

/* Section Contact (fond navy dégradé) */
.section-contact {
    color: rgba(255, 255, 255, 0.92);
}
.section-contact h2,
.section-contact h3 {
    color: var(--c-white) !important;
}
.section-contact p:not(.form-feedback),
.section-contact li {
    color: rgba(255, 255, 255, 0.90) !important;
}

/* -------------------------------------------------------------------------
   2. Section Méthodologie — contraste sur fond off-white
   ------------------------------------------------------------------------- */

.section-methodologie {
    background: var(--c-off-white);
    color: var(--c-navy-deep);
    position: relative;
}
.section-methodologie h2,
.section-methodologie h3 {
    color: var(--c-navy-deep) !important;
}
.section-methodologie p,
.section-methodologie li {
    color: #2a3a52 !important;
}

/* -------------------------------------------------------------------------
   3. Bande dorée Méthodologie — version renforcée
   ------------------------------------------------------------------------- */

.section-methodologie::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--c-gold);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 1px 3px rgba(201, 162, 39, 0.3);
}

/* -------------------------------------------------------------------------
   4. Section Valeur (fond blanc) — renforcement lisibilité
   ------------------------------------------------------------------------- */

.section-valeur p,
.section-valeur li {
    color: #2a3a52 !important;
}
.section-valeur h2,
.section-valeur h3 {
    color: var(--c-navy-deep) !important;
}

/* -------------------------------------------------------------------------
   5. Section Modèles (fond beige) — renforcement lisibilité
   ------------------------------------------------------------------------- */

.section-modeles p,
.section-modeles li {
    color: #2a3a52 !important;
}
.section-modeles h2,
.section-modeles h3 {
    color: var(--c-navy-deep) !important;
}

/* -------------------------------------------------------------------------
   6. Formulaire — champs lisibles (sans affecter les labels, qui
      restent dans leur couleur navy par défaut sur la carte blanche)
   ------------------------------------------------------------------------- */

.section-contact input,
.section-contact textarea,
.section-contact select {
    background: rgba(255, 255, 255, 0.96);
    color: var(--c-navy-deep);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.section-contact input::placeholder,
.section-contact textarea::placeholder {
    color: rgba(42, 58, 82, 0.55);
}

/* =========================================================================
   FIN PATCH CONTRASTE
   ========================================================================= */
