/* =========================================================
   AmandinePcoaching - PEPS / TONIC PACK
   Ajout d'energie visuelle facon coach sportif :
   - Fond plus vivant (gradient mesh + grille subtile)
   - Bandeau marquee defilant
   - Cards plus dynamiques au hover (tilt + glow)
   - Boutons "boost" avec shimmer + pulse
   - Reveals scroll plus marques
   - Decorations SVG energie
   ========================================================= */

/* ---------- 0. ANTI-DEBORDEMENT GLOBAL ---------- */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ---------- 1. FOND PLUS PEPS ---------- */
/* Mesh gradient subtil pour casser le crème pur */
body {
    background:
        radial-gradient(ellipse 80% 60% at 0% 0%, rgba(229,142,90,0.12) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 30%, rgba(159,184,229,0.14) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(244,197,176,0.18) 0%, transparent 60%),
        var(--bg-light) !important;
    background-attachment: fixed !important;
}

/* ---------- 0bis. BOUTONS QUI WRAP PROPREMENT (anti-debordement CTA) ---------- */
.btn,
.btn-large {
    white-space: normal !important;
    text-align: center;
    line-height: 1.25;
    word-break: keep-all;
    max-width: 100%;
    min-height: 48px;
}
.cta-buttons-final,
.cta-buttons,
.hero-cta {
    flex-wrap: wrap !important;
}
.cta-buttons-final .btn,
.cta-buttons .btn,
.hero-cta .btn {
    flex: 0 1 auto;
    max-width: 100%;
}

/* Grille de fond desactivee (causait des artefacts visuels) */
body::before { content: none; }

/* Blobs deja presents : opacite raisonnable */
.bg-blob { opacity: 0.35 !important; }
.bg-blob--1 { opacity: 0.30 !important; }
@media (max-width: 860px) {
    .bg-blob { opacity: 0.22 !important; }
}

/* ---------- 2. BANDEAU MARQUEE (mots cles sportifs qui defilent) ---------- */
.peps-marquee {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent-dark) 100%);
    color: #fff;
    overflow: hidden;
    padding: 12px 0;
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    position: relative;
    width: 100%;
    max-width: 100vw;
    z-index: 1;
}
.peps-marquee::before,
.peps-marquee::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.peps-marquee::before { left: 0; background: linear-gradient(90deg, var(--primary-dark), transparent); }
.peps-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--accent-dark), transparent); }

.peps-marquee__track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: peps-scroll 40s linear infinite;
    width: max-content;
}
.peps-marquee:hover .peps-marquee__track { animation-play-state: paused; }

.peps-marquee__item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 18px;
}
.peps-marquee__item svg {
    width: 22px;
    height: 22px;
    color: var(--accent-light);
    flex-shrink: 0;
}

@keyframes peps-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .peps-marquee__track { animation: none; }
}

/* ---------- 3. CARDS PLUS DYNAMIQUES ---------- */
/* Lift + glow + leger tilt au hover */
.pilier-card,
.parcours-card,
.formation-card,
.tarif-card,
.zone-card,
.pricing-card,
.evenement-card {
    transition:
        transform .35s cubic-bezier(.22,1,.36,1),
        box-shadow .35s cubic-bezier(.22,1,.36,1),
        border-color .35s ease !important;
}
.pilier-card:hover,
.parcours-card:hover,
.formation-card:hover,
.tarif-card:hover,
.zone-card:hover,
.pricing-card:hover,
.evenement-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow:
        0 20px 40px rgba(30,46,90,0.18),
        0 0 0 2px rgba(229,142,90,0.25) !important;
}

/* Coin "energie" en haut a droite des parcours/formation cards */
.parcours-card,
.formation-card {
    position: relative;
    overflow: hidden;
}
.parcours-card::before,
.formation-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}
.parcours-card:hover::before,
.formation-card:hover::before { opacity: 0.4; }

/* ---------- 4. BOUTONS "BOOST" ---------- */
/* Shimmer qui passe au hover */
.btn-primary,
.btn-white {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn-primary::after,
.btn-white::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
    transition: left .7s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
    z-index: 2;
}
.btn-primary:hover::after,
.btn-white:hover::after { left: 130%; }

/* CTA hero : pulse leger 3 fois au chargement seulement (pas en boucle) */
.hero-cta .btn-primary {
    animation: peps-pulse-ring 2.4s ease-in-out 1.5s 2 !important;
}
@keyframes peps-pulse-ring {
    0%, 100% {
        box-shadow:
            0 4px 14px rgba(229,142,90,0.35),
            0 0 0 0 rgba(229,142,90,0.4);
    }
    60% {
        box-shadow:
            0 4px 14px rgba(229,142,90,0.5),
            0 0 0 12px rgba(229,142,90,0);
    }
}

/* ---------- 5. SECTION HEADERS PLUS PUNCH ---------- */
/* Underline qui se construit au reveal */
.section-header h2,
.section-header--center h2 {
    position: relative;
    display: inline-block;
}

/* Big chevron decoratif derriere les sections "phares" */
.piliers-section,
.proof-section,
.planning-preview,
.evenements-preview {
    position: relative;
    overflow: hidden;
}
.piliers-section::before,
.evenements-preview::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -120px;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 70%);
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    border-radius: 40px;
}
.piliers-section .container,
.evenements-preview .container { position: relative; z-index: 1; }

/* ---------- 6. ICONES PILIER : pulse / bounce ---------- */
.pilier-icon {
    position: relative;
}
.pilier-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed var(--accent);
    opacity: 0;
    transition: opacity .35s ease, transform .6s cubic-bezier(.22,1,.36,1);
    transform: scale(0.7) rotate(0);
}
.pilier-card:hover .pilier-icon::after {
    opacity: 0.6;
    transform: scale(1) rotate(180deg);
}

/* ---------- 7. HERO BADGE + TRUST : plus vivant ---------- */
.hero-badge {
    background: linear-gradient(135deg, rgba(229,142,90,0.15) 0%, rgba(244,179,138,0.25) 100%) !important;
    border: 1px solid rgba(229,142,90,0.3) !important;
    box-shadow: 0 4px 14px rgba(229,142,90,0.12);
    animation: peps-fade-in-down 0.8s cubic-bezier(.22,1,.36,1) both;
}
@keyframes peps-fade-in-down {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-trust li {
    transition: transform .25s ease, color .25s ease;
}
.hero-trust li::before {
    content: "✓";
    display: inline-block;
    margin-right: 6px;
    color: var(--accent);
    font-weight: 900;
    transition: transform .25s ease;
}
.hero-trust li:hover {
    color: var(--accent-dark);
    transform: translateX(3px);
}
.hero-trust li:hover::before {
    transform: scale(1.3) rotate(-10deg);
}

/* ---------- 8. REVEALS PLUS MARQUES ---------- */
.will-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    transition:
        opacity .65s cubic-bezier(.22,1,.36,1),
        transform .75s cubic-bezier(.22,1,.36,1);
}
.is-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/* Cascade : chaque carte arrive avec un decalage */
.piliers-grid .pilier-card.will-reveal:nth-child(1) { transition-delay: 0s; }
.piliers-grid .pilier-card.will-reveal:nth-child(2) { transition-delay: .12s; }
.piliers-grid .pilier-card.will-reveal:nth-child(3) { transition-delay: .24s; }
.piliers-grid .pilier-card.will-reveal:nth-child(4) { transition-delay: .36s; }

/* Parcours cards : reveal vertical simple (le decalage horizontal causait
   un chevauchement quand la carte restait translatee). */
.parcours-grid .parcours-card.will-reveal { transform: translateY(30px) scale(0.96); }
.parcours-grid .parcours-card.will-reveal.is-revealed { transform: translateY(0) scale(1); }

/* ---------- 9. ENERGIE DECORATIVE (bande fixe en bas du hero, sans animation) ---------- */
.hero-section.hero--compact {
    position: relative;
}
.hero-section.hero--compact::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--primary) 100%);
    z-index: 5;
}

/* ---------- 10. PLANNING PREVIEW : look "tableau d'entrainement" ---------- */
.planning-day {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease !important;
    border-top: 4px solid transparent !important;
}
.planning-day:nth-child(1) { border-top-color: var(--accent) !important; }
.planning-day:nth-child(2) { border-top-color: var(--primary) !important; }
.planning-day:nth-child(3) { border-top-color: var(--accent-light) !important; }
.planning-day:nth-child(4) { border-top-color: var(--primary-light) !important; }
.planning-day:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 32px rgba(30,46,90,0.15) !important;
}

/* ---------- 11. SECTIONS BACKGROUNDS variees (casser la monotonie) ---------- */
.proof-section {
    background: linear-gradient(180deg, transparent 0%, rgba(244,197,176,0.18) 50%, transparent 100%) !important;
}
.video-section {
    background:
        radial-gradient(circle at 20% 50%, rgba(30,46,90,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(229,142,90,0.08) 0%, transparent 50%),
        var(--bg-light) !important;
}
.evenements-preview {
    background:
        repeating-linear-gradient(
            -45deg,
            transparent 0,
            transparent 20px,
            rgba(229,142,90,0.04) 20px,
            rgba(229,142,90,0.04) 22px
        ),
        linear-gradient(135deg, var(--bg-light) 0%, var(--blush-light) 100%) !important;
}
.guides-lies {
    background: linear-gradient(135deg, rgba(159,184,229,0.10) 0%, var(--bg-light) 100%) !important;
}

/* ---------- 12. TAGLINE HEADER (couleur fixe, pas d'animation pour eviter les flickers) ---------- */
.logo-text small {
    color: var(--accent);
    font-weight: 600;
}

/* =========================================================
   PATCH VISIBILITE - corrections de contraste
   Boutons sur fonds colores, textes sur photos floues, etc.
   ========================================================= */

/* ---------- A. BOUTON BLANC sur les blocs gradient (tarif-individuel) ---------- */
.tarif-individuel .btn,
.tarif-individuel .btn-primary {
    background: #fff !important;
    color: var(--primary-dark) !important;
    border: 2px solid #fff !important;
}
.tarif-individuel .btn-primary::before { display: none !important; }
.tarif-individuel .btn:hover,
.tarif-individuel .btn-primary:hover {
    background: var(--bg-warm) !important;
    color: var(--primary-dark) !important;
    border-color: var(--bg-warm) !important;
    transform: translateY(-2px);
}

/* ---------- A2. BOUTON BLANC sur cta-box (gradient marine/saumon) ---------- */
.cta-box .btn-white,
.cta-content-final .btn-white {
    background: #fff !important;
    color: var(--primary-dark) !important;
    border: 2px solid #fff !important;
}
.cta-box .btn-white::before,
.cta-content-final .btn-white::before { display: none !important; }
.cta-box .btn-white:hover,
.cta-content-final .btn-white:hover {
    background: var(--bg-warm) !important;
    color: var(--primary-dark) !important;
    border-color: var(--bg-warm) !important;
}

/* ---------- A3. BOUTONS sur tarif-card--regulier (fond bleu marine) ---------- */
.tarif-card--regulier .btn-secondary,
.tarif-card--regulier .btn {
    color: #fff !important;
    border-color: rgba(255,255,255,0.7) !important;
    background: rgba(255,255,255,0.08) !important;
}
.tarif-card--regulier .btn:hover,
.tarif-card--regulier .btn-secondary:hover {
    background: #fff !important;
    color: var(--primary-dark) !important;
}

/* ---------- A4. PILIER FEATURED : bordure visible ---------- */
.pilier-card--featured {
    border: 2px solid rgba(244,179,138,0.4) !important;
}
.pilier-card--accent {
    border: 2px solid rgba(255,255,255,0.3) !important;
}

/* ---------- A5. SECTION LABEL sur cta-box : blanc pur (lisibilite max) ---------- */
.cta-box .section-label,
.cta-content-final .section-label {
    color: #fff !important;
    opacity: 0.9;
}

/* ---------- B. PILIER ORANGE : texte du lien bien lisible ---------- */
.pilier-card--accent .pilier-link {
    color: #fff !important;
    background: rgba(0,0,0,0.15);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 700;
}

/* ---------- C. SECTION LABEL sur fonds sombres : couleur saumon clair ---------- */
.peps-photo-bg .section-label,
.peps-stats-section .section-label,
.cta-box .section-label,
.cta-content-final .section-label,
.tarif-individuel .section-label {
    color: var(--accent-light) !important;
}

/* ---------- D. PROOF section : texte bien contraste ---------- */
.proof-content { position: relative; z-index: 2; }

/* ---------- E. HERO TRUST list : couleur sombre lisible ---------- */
.hero-trust li { color: var(--text-dark); }

/* ---------- F. LIENS dans paragraphes sur fonds sombres ---------- */
.peps-photo-bg a:not(.btn),
.cta-box a:not(.btn),
.cta-content-final a:not(.btn) {
    color: var(--accent-light) !important;
    text-decoration: underline;
}

/* ---------- G. INPUTS et formulaires (assurer lisibilite) ---------- */
.coach-form input,
.coach-form select,
.coach-form textarea {
    color: var(--text-dark) !important;
    background: #fff !important;
}

/* ---------- H. PILIER LINK base (visibilite) ---------- */
.pilier-card .pilier-link {
    font-weight: 700;
}

/* ---------- I. CARTES TARIFS : header readable ---------- */
.tarif-card .tarif-baseline {
    color: var(--accent) !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12.5px;
}
.tarif-card--regulier .tarif-baseline {
    color: var(--accent-light) !important;
}

/* ---------- 12ter. BOUTONS SECONDAIRES SUR FONDS SOMBRES (visibilite) ---------- */
/* Sur les CTA finaux fond marine/orange : btn-secondary devient blanc */
.cta-box .btn-secondary,
.cta-content-final .btn-secondary,
.peps-photo-bg .btn-secondary,
.peps-stats-section .btn-secondary {
    color: #fff !important;
    border-color: rgba(255,255,255,0.7) !important;
    background: rgba(255,255,255,0.08) !important;
}
.cta-box .btn-secondary:hover,
.cta-content-final .btn-secondary:hover,
.peps-photo-bg .btn-secondary:hover,
.peps-stats-section .btn-secondary:hover {
    background: #fff !important;
    color: var(--primary-dark) !important;
    border-color: #fff !important;
}

/* ---------- 12bis. MENU PRINCIPAL : items sur une seule ligne ---------- */
.main-menu {
    flex-wrap: nowrap !important;
    gap: 4px !important;
}
.main-menu li a {
    white-space: nowrap !important;
    padding: 16px 12px !important;
    font-size: 14.5px !important;
}
@media (max-width: 1100px) {
    .main-menu li a {
        padding: 16px 10px !important;
        font-size: 14px !important;
    }
}
.header-cta .btn {
    white-space: nowrap !important;
    padding: 12px 18px !important;
    font-size: 14.5px !important;
}
.logo-text small {
    white-space: normal;
    line-height: 1.3;
}

/* ---------- 13. FOOTER : barre orange en haut (fixe, sans animation) ---------- */
.coach-footer,
footer.coach-footer {
    position: relative;
    overflow: hidden;
}
.coach-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 50%, var(--accent) 100%);
}

/* ---------- 14. STATS PUNCHY (si on en ajoute plus tard) ---------- */
.peps-stat {
    text-align: center;
    padding: 24px;
}
.peps-stat__number {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.peps-stat__label {
    margin-top: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: var(--text-gray);
}

/* ---------- 15. SCROLL TO TOP : juste plus visible (sans bounce) ---------- */
.scroll-to-top {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%) !important;
    box-shadow: 0 8px 20px rgba(229,142,90,0.4) !important;
}

/* ---------- 17. KEN BURNS HERO (zoom lent sur la photo) ---------- */
/* On reste sur scale uniquement pour eviter tout debordement / saut */
.hero-bg { overflow: hidden; }
.hero-bg img {
    animation: peps-ken-burns 24s ease-in-out infinite alternate;
    will-change: transform;
    transform-origin: center center;
}
@keyframes peps-ken-burns {
    0%   { transform: scale(1.02); }
    100% { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-bg img { animation: none; }
}

/* ---------- 18. SECTION FOND PHOTO FLOUE (immersive) ---------- */
.peps-photo-bg {
    position: relative;
    color: #fff;
    overflow: hidden;
    padding: 80px 0;
    isolation: isolate;
}
.peps-photo-bg__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}
.peps-photo-bg__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) brightness(0.55) saturate(1.1);
    transform: scale(1.05);
}
.peps-photo-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(135deg, rgba(20,32,74,0.85) 0%, rgba(30,46,90,0.7) 50%, rgba(229,142,90,0.55) 100%);
}
.peps-photo-bg h2,
.peps-photo-bg h3 { color: #fff; }
.peps-photo-bg p { color: rgba(255,255,255,0.92); }
.peps-photo-bg .section-label { color: var(--accent-light) !important; }

/* ---------- 19. TEMOIGNAGES CARROUSEL ---------- */
.peps-testimonials {
    padding: 80px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(229,142,90,0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(159,184,229,0.10) 0%, transparent 40%),
        var(--bg-light);
}
.peps-testimonials__track-wrap {
    overflow: hidden;
    padding: 30px 0;
    margin-top: 30px;
    position: relative;
}
.peps-testimonials__track-wrap::before,
.peps-testimonials__track-wrap::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.peps-testimonials__track-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-light), transparent); }
.peps-testimonials__track-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg-light), transparent); }

.peps-testimonials__track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: peps-testi-scroll 50s linear infinite;
}
.peps-testimonials:hover .peps-testimonials__track { animation-play-state: paused; }

.peps-testimonial {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    width: 360px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(30,46,90,0.08);
    border: 1px solid var(--border-light);
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease;
}
.peps-testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(30,46,90,0.15);
}
.peps-testimonial__quote {
    font-size: 60px;
    line-height: 0.6;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    margin-bottom: 8px;
    opacity: 0.7;
}
.peps-testimonial__text {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-style: italic;
}
.peps-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}
.peps-testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    flex-shrink: 0;
}
.peps-testimonial__name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14.5px;
}
.peps-testimonial__role {
    font-size: 13px;
    color: var(--text-gray);
}
.peps-testimonial__stars {
    color: #FFB341;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
@keyframes peps-testi-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .peps-testimonials__track { animation: none; }
}

/* Etat vide (pas encore de temoignage) */
.peps-testimonials__empty {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(30,46,90,0.08);
    border: 2px dashed var(--accent-light);
}

/* ---------- 20. STYLES SEO-FRIENDLY (substituts de <strong>) ---------- */
/* Reproduit l'aspect gras pour la marque et les titres de certifications,
   tout en evitant les balises <strong> qui polluent l'analyse SEO. */
.logo-text .brand-name,
.footer-brand .brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: inherit;
    display: block;
    line-height: 1.2;
}
.footer-brand .brand-name {
    font-size: 20px;
    margin-bottom: 4px;
}
.certif-card .certif-title {
    font-weight: 700;
    color: var(--text-dark);
}

/* Jours de planning : visuel inchange mais ce n'est plus un heading */
.planning-day-name {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* ---------- 16. RESPONSIVE ---------- */
@media (max-width: 860px) {
    .peps-marquee__item { font-size: 14px; letter-spacing: 2px; }
    .peps-marquee__track { gap: 30px; animation-duration: 30s; }
    body::before { background-size: 40px 40px; }
}
