/* =====================================================
   CAG THEME - STYLES PRINCIPAUX
   Centrale Agricole de Guinée
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Lora:ital,wght@0,600;1,500&display=swap');

/* ---- VARIABLES ---- */
:root {
    --g-dark: #1B5E35; --g-mid: #2E7D4F; --g-vif: #3DA668; --g-light: #E8F5EE;
    --gold: #C8921A; --gold-vif: #F0AE2A; --gold-pale: #FFF9EE;
    --red: #C0392B; --cream: #FDFAF4; --white: #FFFFFF;
    --text: #0D2B18; --muted: #4A7A5A;
    --ff: 'Outfit', sans-serif; --fs: 'Lora', serif;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff); background: var(--white); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: all 0.2s; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--ff); border: none; }

/* ---- UTILITAIRES ---- */
.cag-container { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
.cag-section { padding: 4rem 0; }
.slabel { display: inline-block; background: var(--g-light); color: var(--g-dark); font-size: 10px; font-weight: 800; padding: 4px 12px; border-radius: 100px; letter-spacing: .08em; text-transform: uppercase; border: 1px solid rgba(61,166,104,.3); margin-bottom: 14px; }
.sh2 { font-family: var(--fs); font-size: clamp(1.6rem,3vw,2rem); color: var(--text); font-weight: 600; margin-bottom: 8px; line-height: 1.2; }
.ssub { font-size: 15px; color: var(--muted); margin-bottom: 2.5rem; font-weight: 300; }

/* ---- BOUTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 700; border: none; cursor: pointer; font-family: var(--ff); transition: all 0.2s; }
.btn-primary { background: var(--g-dark); color: white; }
.btn-primary:hover { background: var(--g-mid); color: white; }
.btn-gold { background: var(--gold-vif); color: white; }
.btn-gold:hover { background: var(--gold); color: white; }
.btn-outline { background: transparent; border: 2px solid var(--g-dark); color: var(--g-dark); }
.btn-outline:hover { background: var(--g-dark); color: white; }
.btn-white { background: white; color: var(--g-dark); }
.btn-ghost { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: white; }
.btn-full { width: 100%; justify-content: center; }

/* ==================================================
   BARRE PUBLICITAIRE
   ================================================== */
.pub-bar { background: linear-gradient(135deg,#1B5E35 0%,#2E7D4F 45%,#C8921A 100%); overflow: hidden; position: sticky; top: 0; z-index: 200; }
.pub-bar-inner { display: flex; align-items: stretch; }
.pub-bar-left { background: rgba(0,0,0,.2); padding: 11px 18px; display: flex; align-items: center; gap: 8px; white-space: nowrap; flex-shrink: 0; }
.pub-icon { width: 26px; height: 26px; background: var(--gold-vif); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; animation: pub-bounce 3s ease-in-out infinite; }
@keyframes pub-bounce { 0%,100%{transform:scale(1)} 40%{transform:scale(1.18) rotate(-8deg)} 70%{transform:scale(1.1) rotate(6deg)} }
.pub-bar-left > span { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.9); }
.pub-scroll { flex: 1; overflow: hidden; display: flex; align-items: center; padding: 0 14px; }
.pub-track { display: flex; align-items: center; animation: pub-marquee 22s linear infinite; white-space: nowrap; }
.pub-track:hover { animation-play-state: paused; }
@keyframes pub-marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.pub-msg { display: inline-flex; align-items: center; padding: 11px 28px; }
.pub-msg-text { font-size: 13px; font-weight: 600; color: white; }
.pub-msg-text .hl { color: var(--gold-vif); font-weight: 800; }
.pub-sep { width: 5px; height: 5px; background: rgba(255,255,255,.3); border-radius: 50%; margin: 0 10px; flex-shrink: 0; }
.pub-phone-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 100px; padding: 4px 13px; font-size: 12px; font-weight: 700; color: white; }
.pub-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }
.pub-cta-btn { background: var(--gold-vif); padding: 0 18px; display: flex; align-items: center; flex-shrink: 0; border: none; font-family: var(--ff); cursor: pointer; }
.pub-cta-btn:hover { background: var(--gold); }
.pub-cta-btn span { font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: white; }

/* ==================================================
   POPUP CONTACT
   ================================================== */
.cag-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.55); z-index: 9999; display: none; align-items: center; justify-content: center; }
.cag-overlay.open { display: flex; }
.cag-popup { background: white; border-radius: 20px; max-width: 460px; width: 90%; overflow: hidden; animation: pop-in .35s cubic-bezier(.34,1.56,.64,1); }
@keyframes pop-in { from{transform:scale(.7);opacity:0} to{transform:scale(1);opacity:1} }
.popup-head { background: linear-gradient(135deg,#1B5E35,#2E7D4F); padding: 26px; text-align: center; position: relative; }
.popup-head-icon { font-size: 36px; display: block; margin-bottom: 8px; }
.popup-head h3 { font-size: 19px; font-weight: 800; color: white; margin-bottom: 4px; font-family: var(--ff); }
.popup-head p { font-size: 12px; color: rgba(255,255,255,.65); }
.popup-close { position: absolute; top: 12px; right: 14px; background: rgba(255,255,255,.15); border: none; width: 26px; height: 26px; border-radius: 50%; color: white; font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.popup-body { padding: 22px 26px; }
.popup-note { background: #F0F7F3; border-left: 4px solid var(--g-vif); border-radius: 8px; padding: 13px 16px; font-size: 13px; color: var(--g-dark); line-height: 1.7; margin-bottom: 18px; }
.popup-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.popup-contact { display: flex; align-items: center; gap: 12px; background: var(--gold-pale); border: 1.5px solid var(--gold-vif); border-radius: 10px; padding: 12px 15px; }
.pc-flag { font-size: 18px; }
.pc-info { flex: 1; }
.pc-label { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.pc-num { font-size: 15px; font-weight: 800; color: var(--g-dark); }
.pc-copy { background: var(--g-dark); color: white; border: none; padding: 6px 11px; border-radius: 6px; font-size: 11px; font-weight: 700; cursor: pointer; }
.popup-close-btn { width: 100%; background: var(--g-dark); color: white; border: none; padding: 13px; border-radius: 10px; font-size: 14px; font-weight: 800; cursor: pointer; }

/* ==================================================
   NAVIGATION
   ================================================== */
.site-header { background: white; border-bottom: 2px solid var(--g-light); position: sticky; top: 40px; z-index: 150; transition: top .3s; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
.nav-logo-wrap { display: flex; align-items: center; gap: 12px; }
.nav-mark { width: 42px; height: 42px; background: var(--g-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: var(--gold-vif); flex-shrink: 0; }
.nav-brand-line { display: flex; align-items: center; }
.nav-brand { font-size: 15px; font-weight: 800; color: var(--g-dark); }
.nav-logö { background: var(--gold-vif); color: white; font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 3px; margin-left: 6px; }
.nav-sub { font-size: 9px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
#main-menu { display: flex; gap: 1.5rem; align-items: center; }
#main-menu a { color: var(--muted); font-size: 13px; font-weight: 500; padding: 4px 0; border-bottom: 2px solid transparent; }
#main-menu a:hover, #main-menu .current-menu-item > a { color: var(--g-dark); border-bottom-color: var(--g-vif); }
#main-menu .menu-item-cta > a { background: var(--g-dark) !important; color: white !important; padding: 9px 20px !important; border-radius: 6px; border-bottom: none !important; }
#main-menu .menu-item-cta > a:hover { background: var(--g-mid) !important; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--g-dark); cursor: pointer; padding: 4px; }

/* ==================================================
   HERO
   ================================================== */
.hero-section { background: white; overflow: hidden; }
.hero-stripe { height: 5px; background: linear-gradient(90deg,var(--red),var(--gold-vif),var(--g-vif),var(--g-dark)); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 380px); height: calc(100vh - 260px); max-height: 540px; min-height: 320px; }
.hero-left { padding: 1.25rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--g-light); border: 1px solid var(--g-vif); border-radius: 100px; padding: 6px 14px; margin-bottom: .75rem; width: fit-content; }
.hero-live { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: blink 2s infinite; }
.hero-eyebrow span { color: var(--g-dark); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.hero-title { font-family: var(--fs); font-size: clamp(1.5rem,2.8vw,2rem); line-height: 1.18; color: var(--text); font-weight: 700; margin-bottom: .75rem; }
.hero-title em { color: var(--g-dark); font-style: italic; }
.hero-title .hero-gold { color: var(--gold); }
.hero-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; max-width: 420px; }
.hero-buttons { display: flex; flex-direction: column; gap: 7px; max-width: 360px; }
.hero-buttons .btn { justify-content: space-between; }
.hero-right { background: var(--g-dark); display: flex; flex-direction: column; justify-content: center; padding: 2.5rem; gap: 14px; position: relative; overflow: hidden; }
.hero-right::before { content:''; position:absolute; top:-60px; right:-60px; width:220px; height:220px; border:2px solid rgba(200,146,26,.15); border-radius:50%; }
.hero-right::after { content:''; position:absolute; bottom:-40px; left:-40px; width:140px; height:140px; border:2px solid rgba(61,166,104,.1); border-radius:50%; }
.hero-stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 16px 20px; position: relative; z-index: 1; }
.hero-stat-n { font-family: var(--fs); font-size: 22px; font-weight: 600; color: var(--gold-vif); display: block; margin-bottom: 2px; }
.hero-stat-l { font-size: 10px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .07em; }
.hero-stat-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.2); border-radius: 100px; padding: 2px 9px; font-size: 10px; color: #4ade80; font-weight: 600; margin-top: 6px; }

/* Stats bar */
.stats-bar { background: var(--g-dark); border-top: 1px solid rgba(255,255,255,.07); padding: 1.1rem 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
.stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,.1); padding: 4px 0; }
.stat-item:last-child { border-right: none; }
.stat-n { font-family: var(--fs); font-size: 22px; font-weight: 600; color: var(--gold-vif); display: block; }
.stat-l { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

/* ==================================================
   PRÉSENTATION CAG
   ================================================== */
.section-presentation { background: white; }
.pres-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; margin-bottom: 3rem; }
.pres-founded { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-pale); border: 1px solid rgba(240,174,42,.35); border-radius: 6px; padding: 6px 13px; margin: 14px 0 18px; }
.pres-founded span { font-size: 12px; font-weight: 700; color: var(--gold); }
.pres-body-text { font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 1rem; }
.pres-values { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.pres-val { background: var(--g-light); border-radius: 100px; padding: 7px 16px; font-size: 12px; font-weight: 700; color: var(--g-dark); display: flex; align-items: center; gap: 6px; }
.pres-val::before { content:''; width:7px; height:7px; border-radius:50%; background:var(--g-vif); flex-shrink:0; }
.pres-cards { display: flex; flex-direction: column; gap: 14px; }
.pres-card { background: var(--cream); border-radius: 14px; padding: 20px 22px; border-left: 4px solid var(--g-vif); }
.pres-card:nth-child(2) { border-left-color: var(--gold-vif); }
.pres-card:nth-child(3) { border-left-color: var(--red); }
.pres-card-lbl { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--g-vif); margin-bottom: 8px; }
.pres-card:nth-child(2) .pres-card-lbl { color: var(--gold); }
.pres-card:nth-child(3) .pres-card-lbl { color: var(--red); }
.pres-card-title { font-family: var(--fs); font-size: 16px; color: var(--text); font-weight: 600; margin-bottom: 6px; }
.pres-card-body { font-size: 13px; color: var(--muted); line-height: 1.65; }
.pres-mission { background: var(--g-light); border-radius: 14px; padding: 2rem; margin-bottom: 2.5rem; display: flex; align-items: flex-start; gap: 1.5rem; }
.pres-mission-icon { width: 52px; height: 52px; background: var(--g-dark); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.pres-mission h4 { font-family: var(--fs); font-size: 18px; color: var(--g-dark); font-weight: 600; margin-bottom: 8px; }
.pres-mission p { font-size: 13px; color: var(--muted); line-height: 1.8; }
.gov-block { background: var(--g-dark); border-radius: 16px; padding: 2rem 2.5rem; }
.gov-title { font-family: var(--fs); font-size: 20px; color: white; font-weight: 600; margin-bottom: 0.9rem; text-align: center; }
.gov-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.gov-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 18px; text-align: center; }
.gov-icon { font-size: 26px; display: block; margin-bottom: 10px; }
.gov-icon-svg {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    border: 1px solid rgba(255,255,255,.18);
}
.gov-card h4 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 6px; font-family: var(--ff); }
.gov-card p { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.6; }
.gov-badge { display: inline-flex; background: rgba(240,174,42,.12); border: 1px solid rgba(240,174,42,.2); border-radius: 100px; padding: 3px 10px; font-size: 10px; color: var(--gold-vif); font-weight: 700; margin-top: 8px; }

/* ==================================================
   PROBLÈME
   ================================================== */
.section-prob { background: var(--cream); }
.prob-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.prob-card { background: white; border-radius: 14px; padding: 26px; border-top: 4px solid var(--g-vif); box-shadow: 0 2px 12px rgba(27,94,53,.05); }
.prob-card:nth-child(2) { border-top-color: var(--gold-vif); }
.prob-card:nth-child(3) { border-top-color: var(--red); }
.prob-who { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--g-vif); margin-bottom: 12px; }
.prob-card:nth-child(2) .prob-who { color: var(--gold); }
.prob-card:nth-child(3) .prob-who { color: var(--red); }
.prob-emoji { font-size: 34px; margin-bottom: 12px; display: block; }
.prob-text { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ==================================================
   SOLUTION
   ================================================== */
.section-sol { background: var(--g-light); }
.sol-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.sol-card { background: white; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 16px rgba(27,94,53,.08); }
.sol-head { padding: 22px; background: var(--g-dark); }
.sol-head.gold { background: var(--gold); }
.sol-head.green { background: var(--g-vif); }
.sol-tag { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 8px; }
.sol-title { font-family: var(--fs); font-size: 18px; color: white; font-weight: 600; }
.sol-body { padding: 18px 22px; }
.sol-body ul { display: flex; flex-direction: column; gap: 9px; }
.sol-body li { font-size: 13px; color: var(--muted); padding-left: 18px; position: relative; line-height: 1.55; }
.sol-body li::before { content:''; position:absolute; left:0; top:6px; width:7px; height:7px; background:var(--g-vif); border-radius:50%; }

/* ==================================================
   COMMENT ÇA MARCHE
   ================================================== */
.section-how { background: white; }
.how-tabs { display: flex; border: 2px solid var(--g-dark); border-radius: 10px; overflow: hidden; width: fit-content; margin-bottom: 2.5rem; }
.how-tab { padding: 11px 28px; font-size: 13px; font-weight: 700; cursor: pointer; background: white; color: var(--g-dark); border: none; border-right: 2px solid var(--g-dark); font-family: var(--ff); transition: all .2s; }
.how-tab:last-child { border-right: none; }
.how-tab.active { background: var(--g-dark); color: white; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.enrol-intro { font-size: 14px; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.7; }
.canaux-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 2rem; }
.canal-card { background: var(--g-light); border-radius: 12px; padding: 18px 16px; text-align: center; border: 1px solid rgba(61,166,104,.2); }
.canal-num { width: 28px; height: 28px; background: var(--g-dark); color: white; border-radius: 50%; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.canal-icon { font-size: 26px; display: block; margin-bottom: 8px; }
.canal-card h4 { font-size: 13px; font-weight: 700; color: var(--g-dark); margin-bottom: 5px; font-family: var(--ff); }
.canal-card p { font-size: 11px; color: var(--muted); line-height: 1.5; }
.conditions-box { background: var(--cream); border-radius: 14px; padding: 1.5rem 2rem; margin-bottom: 1.75rem; border-left: 4px solid var(--gold-vif); }
.conditions-box h4 { font-family: var(--fs); font-size: 16px; color: var(--text); font-weight: 600; margin-bottom: 1rem; }
.conditions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cond-item { display: flex; align-items: flex-start; gap: 10px; background: white; border-radius: 8px; padding: 12px 14px; }
.cond-icon { width: 32px; height: 32px; background: var(--gold-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.cond-text { font-size: 12px; color: var(--muted); line-height: 1.5; }
.cond-text strong { color: var(--text); font-weight: 700; display: block; margin-bottom: 2px; font-size: 13px; }
.visite-banner { background: var(--g-light); border-radius: 12px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; border: 1px solid rgba(61,166,104,.25); margin-bottom: 2rem; }
.visite-icon { width: 44px; height: 44px; background: var(--g-dark); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.visite-text h4 { font-size: 14px; font-weight: 700; color: var(--g-dark); margin-bottom: 3px; font-family: var(--ff); }
.visite-text p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.apres-subtitle { font-family: var(--fs); font-size: 18px; color: var(--g-dark); font-weight: 600; margin-bottom: 1rem; padding-bottom: 10px; border-bottom: 2px solid var(--g-light); }
.apres-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 2rem; }
.apres-card { background: var(--g-dark); border-radius: 12px; padding: 20px; }
.apres-card-icon { font-size: 24px; margin-bottom: 10px; display: block; }
.apres-card h4 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 6px; font-family: var(--ff); }
.apres-card p { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.5; }
.apres-badge { display: inline-flex; background: rgba(240,174,42,.15); border: 1px solid rgba(240,174,42,.3); border-radius: 100px; padding: 3px 10px; font-size: 10px; color: var(--gold-vif); font-weight: 700; margin-top: 8px; }
.steps-ach { display: flex; flex-direction: column; }
.step-row { display: grid; grid-template-columns: 60px 1fr; position: relative; }
.step-row:not(:last-child)::before { content:''; position:absolute; left:29px; top:55px; width:2px; height:calc(100% - 20px); background:var(--g-light); }
.step-left { display: flex; flex-direction: column; align-items: center; padding-top: 12px; }
.step-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--g-dark); color: white; font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.step-right { padding: 12px 0 28px 20px; }
.step-tag { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--g-vif); margin-bottom: 6px; }
.step-title { font-family: var(--fs); font-size: 18px; color: var(--text); font-weight: 600; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 10px; }
.step-detail { background: var(--g-light); border-radius: 10px; padding: 14px 16px; }
.step-detail ul { display: flex; flex-direction: column; gap: 7px; }
.step-detail li { font-size: 12px; color: var(--muted); padding-left: 16px; position: relative; line-height: 1.5; }
.step-detail li::before { content:''; position:absolute; left:0; top:5px; width:7px; height:7px; background:var(--g-vif); border-radius:50%; }
.step-highlight { background: var(--cream); border: 1.5px solid var(--gold-vif); border-radius: 10px; padding: 14px 16px; display: flex; align-items: flex-start; gap: 10px; }
.step-highlight p { font-size: 12px; color: var(--muted); line-height: 1.65; }
.step-highlight p strong { color: var(--gold); font-weight: 700; }
.result-banner { background: var(--g-dark); border-radius: 14px; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; gap: 1rem; flex-wrap: wrap; }
.result-text h4 { font-family: var(--fs); font-size: 18px; color: white; font-weight: 600; margin-bottom: 4px; }
.result-text p { font-size: 13px; color: rgba(255,255,255,.5); }
.result-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.rbadge { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 100px; padding: 7px 14px; font-size: 12px; color: rgba(255,255,255,.8); font-weight: 600; }
.rbadge.gold { background: rgba(240,174,42,.15); border-color: rgba(240,174,42,.3); color: var(--gold-vif); }

/* ==================================================
   IMPACT
   ================================================== */
.section-impact { background: var(--g-dark); }
.imp-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap; }
.imp-header h2 { font-family: var(--fs); font-size: clamp(1.5rem,2.5vw,1.875rem); color: white; font-weight: 600; max-width: 500px; line-height: 1.2; }
.imp-header p { font-size: 13px; color: rgba(255,255,255,.45); max-width: 280px; text-align: right; line-height: 1.6; }
.imp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.imp-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 24px; text-align: center; }
.imp-n { font-family: var(--fs); font-size: 36px; font-weight: 600; color: var(--gold-vif); display: block; margin-bottom: 6px; }
.imp-l { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ==================================================
   CATALOGUE
   ================================================== */
.section-catalogue { background: var(--cream); }
.cat-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-pill { background: white; border: 1.5px solid var(--g-light); border-radius: 100px; padding: 9px 18px; font-size: 13px; color: var(--g-dark); font-weight: 600; display: flex; align-items: center; gap: 8px; box-shadow: 0 1px 4px rgba(27,94,53,.06); cursor: pointer; transition: all .2s; }
.cat-pill:hover { border-color: var(--g-vif); background: var(--g-light); }
.cat-pill .cd { width: 8px; height: 8px; border-radius: 50%; background: var(--g-vif); flex-shrink: 0; }
.cat-pill.cat-all { background: var(--g-dark); border-color: var(--g-dark); color: white; }
.cat-pill.cat-all .cd { background: var(--gold-vif); }

/* ==================================================
   AVANTAGES
   ================================================== */
.section-avantages { background: var(--g-light); }
.av-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.av-card { background: white; border-radius: 14px; padding: 22px 16px; text-align: center; box-shadow: 0 2px 10px rgba(27,94,53,.06); transition: transform .2s; }
.av-card:hover { transform: translateY(-4px); }
.av-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--g-light); border: 2px solid var(--g-vif); display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 12px; }
.av-card h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 5px; font-family: var(--ff); }
.av-card p { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ==================================================
   FAQ
   ================================================== */
.section-faq { background: white; }
.faq-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
.faq-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.faq-cat { padding: 8px 18px; border-radius: 100px; font-size: 12px; font-weight: 700; cursor: pointer; border: 1.5px solid var(--g-light); background: white; color: var(--muted); font-family: var(--ff); transition: all .2s; }
.faq-cat.active { background: var(--g-dark); color: white; border-color: var(--g-dark); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--cream); border-radius: 12px; border: 1.5px solid var(--g-light); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--g-vif); background: white; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; cursor: pointer; gap: 14px; }
.faq-q-left { display: flex; align-items: center; gap: 12px; }
.faq-q-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; background: var(--g-light); }
.faq-q-text { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.4; }
.faq-q-arr { width: 24px; height: 24px; border-radius: 50%; background: var(--g-light); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--g-dark); flex-shrink: 0; transition: transform .25s, background .2s; }
.faq-item.open .faq-q-arr { transform: rotate(180deg); background: var(--g-dark); color: white; }
.faq-a { display: none; padding: 0 20px 20px 64px; }
.faq-item.open .faq-a { display: block; }
.faq-a-text { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 10px; }
.faq-a-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.faq-a-list li { font-size: 13px; color: var(--muted); padding-left: 18px; position: relative; line-height: 1.6; }
.faq-a-list li::before { content:''; position:absolute; left:0; top:7px; width:7px; height:7px; background:var(--g-vif); border-radius:50%; }
.faq-a-box { border-radius: 8px; padding: 12px 16px; margin-top: 10px; }
.faq-a-box.green { background: var(--g-light); }
.faq-a-box.gold { background: var(--gold-pale); border: 1px solid rgba(240,174,42,.3); display: flex; gap: 8px; }
.faq-a-box p { font-size: 12px; color: var(--muted); line-height: 1.65; }
.faq-a-box.green p { color: var(--g-dark); }
.faq-a-box p strong { font-weight: 700; }
.faq-a-box.gold p strong { color: var(--gold); }
.faq-sidebar { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 120px; }
.sb-card { background: white; border-radius: 14px; padding: 20px; border: 1.5px solid var(--g-light); }
.sb-card.dark { background: var(--g-dark); border-color: var(--g-dark); }
.sb-card.gold-bg { background: var(--gold-pale); border-color: rgba(240,174,42,.3); }
.sb-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.sb-title { font-family: var(--fs); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.sb-card.dark .sb-title { color: white; }
.sb-card:not(.dark) .sb-title { color: var(--text); }
.sb-text { font-size: 12px; line-height: 1.7; margin-bottom: 14px; }
.sb-card.dark .sb-text { color: rgba(255,255,255,.55); }
.sb-card:not(.dark) .sb-text { color: var(--muted); }
.sb-btn { display: block; text-align: center; padding: 11px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; font-family: var(--ff); width: 100%; }
.sb-card.dark .sb-btn { background: var(--gold-vif); color: white; }
.sb-card:not(.dark) .sb-btn { background: var(--g-dark); color: white; }
.sb-phones { display: flex; flex-direction: column; gap: 8px; }
.sb-phone { display: flex; align-items: center; gap: 8px; background: var(--g-light); border-radius: 8px; padding: 10px 12px; }
.sb-phone-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: blink 1.5s infinite; flex-shrink: 0; }
.sb-phone-lbl { font-size: 10px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.sb-phone-num { font-size: 13px; font-weight: 800; color: var(--g-dark); }
.sb-avs { display: flex; flex-direction: column; gap: 7px; margin-top: 6px; }
.sb-av { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.sb-av::before { content:''; width:7px; height:7px; border-radius:50%; background:var(--g-vif); flex-shrink:0; }
.sb-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sb-stat { background: var(--g-light); border-radius: 8px; padding: 12px; text-align: center; }
.sb-stat-n { font-family: var(--fs); font-size: 20px; font-weight: 600; color: var(--g-dark); display: block; }
.sb-stat-l { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ==================================================
   PARTENAIRES
   ================================================== */
.section-partenaires { background: var(--cream); padding: 2rem 0; }
.part-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.part-lbl { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.part-div { width: 1px; height: 28px; background: rgba(0,0,0,.1); }
.part-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.part-pill { background: white; border: 1.5px solid #E0EBE5; border-radius: 8px; padding: 8px 18px; font-size: 12px; font-weight: 700; color: var(--g-dark); }
.part-pill.pend { color: var(--muted); font-weight: 500; border-style: dashed; }

/* ==================================================
   CTA FINAL
   ================================================== */
.section-cta { background: white; }
.cta-box { background: var(--g-dark); border-radius: 20px; padding: 3rem; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content:''; position:absolute; top:-80px; right:-80px; width:260px; height:260px; background:rgba(200,146,26,.1); border-radius:50%; }
.cta-box::after { content:''; position:absolute; bottom:-60px; left:-60px; width:180px; height:180px; background:rgba(61,166,104,.08); border-radius:50%; }
.cta-lbl { display: inline-flex; align-items: center; background: rgba(240,174,42,.15); border: 1px solid rgba(240,174,42,.3); border-radius: 100px; padding: 5px 14px; margin-bottom: 1.25rem; }
.cta-lbl span { color: var(--gold-vif); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cta-box h2 { font-family: var(--fs); font-size: clamp(1.5rem,2.5vw,2rem); color: white; font-weight: 600; margin-bottom: 8px; position: relative; z-index: 1; }
.cta-desc { color: rgba(255,255,255,.55) !important; font-size: 14px; margin-bottom: 2rem; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-reassure { margin-top: 1.25rem; font-size: 12px; color: rgba(255,255,255,.3); position: relative; z-index: 1; }
.cta-reassure span { margin: 0 10px; }

/* ==================================================
   FOOTER
   ================================================== */
.site-footer { background: var(--text); padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand-name { font-family: var(--fs); font-size: 22px; color: white; font-weight: 600; }
.footer-logö { background: var(--gold-vif); color: white; padding: 3px 9px; border-radius: 3px; font-size: 10px; font-weight: 800; margin-left: 8px; }
.footer-brand-info { font-size: 12px; color: rgba(255,255,255,.32); line-height: 1.8; margin-top: 10px; max-width: 210px; }
.footer-col h5 { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-vif); margin-bottom: 12px; font-family: var(--ff); }
.footer-col a { display: block; color: rgba(255,255,255,.45); font-size: 12px; margin-bottom: 8px; }
.footer-col a:hover { color: rgba(255,255,255,.8); }
.footer-hr { border: none; border-top: 1px solid rgba(255,255,255,.07); margin-bottom: 1.25rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.28); }

/* ==================================================
   RESPONSIVE — COMPLET TOUS FORMATS + iOS
   Breakpoints : 1100 / 900 / 768 / 640 / 480 / 375
   ================================================== */

/* ----- iOS Safari fixes globaux ----- */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* Empêche le rebond élastique iOS sur les éléments sticky */
    -webkit-overflow-scrolling: touch;
}
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; /* désactive le menu contextuel long-press iOS sur éléments non-texte */
}
/* Réactiver la sélection texte pour le contenu */
p, h1, h2, h3, h4, h5, h6, li, span, a {
    -webkit-touch-callout: default;
    -webkit-user-select: text;
    user-select: text;
}
input, button, select, textarea {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}
button { -webkit-appearance: none; border-radius: 8px; }
/* touch-action: manipulation supprime le délai 300ms sur iOS */
a, button, [role="button"], [onclick],
.how-tab, .faq-q, .faq-cat, .blog-filter,
.cat-pill, .btn, .pub-cta-btn, .menu-toggle,
.pc-copy, .popup-close, .popup-close-btn {
    touch-action: manipulation;
    cursor: pointer;
}
/* Taille minimale des zones tactiles — recommandation Apple : 44×44px */
.how-tab        { min-height: 44px; }
.faq-cat        { min-height: 44px; }
.blog-filter    { min-height: 44px; }
.menu-toggle    { min-width: 44px; min-height: 44px; }
.pc-copy        { min-height: 36px; }
/* Webkit animations */
.pub-track { -webkit-animation: pub-marquee 22s linear infinite; }
.pub-icon  { -webkit-animation: pub-bounce 3s ease-in-out infinite; }
.pub-dot   { -webkit-animation: blink 1.5s infinite; }
@-webkit-keyframes pub-marquee { 0%{-webkit-transform:translateX(0)} 100%{-webkit-transform:translateX(-50%)} }
@-webkit-keyframes pub-bounce  { 0%,100%{-webkit-transform:scale(1)} 40%{-webkit-transform:scale(1.18) rotate(-8deg)} }
@-webkit-keyframes blink       { 0%,100%{opacity:1} 50%{opacity:.15} }
/* iOS Safari : position sticky nécessite -webkit- */
.pub-bar, .site-header, .blog-filters-bar {
    position: -webkit-sticky;
    position: sticky;
}
/* Smooth scroll fallback — géré en JS pour iOS < 15 */
html { scroll-behavior: smooth; }
/* Backdrop-filter iOS */
.him-stat {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
/* Flexbox iOS fixes */
.hero-buttons, .cta-buttons, .result-badges, .blog-preview-header,
.part-row, .part-pills, .pres-values, .faq-cats, .blog-filters {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* ----- 1100px : laptop réduit ----- */
@media (max-width: 1100px) {
    .av-grid  { grid-template-columns: repeat(3, 1fr); }
    .imp-grid { grid-template-columns: repeat(2, 1fr); }
    .gov-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
    .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 320px); }
}

/* ----- 900px : tablette ----- */
@media (max-width: 900px) {
    /* Layout général */
    .cag-section { padding: 3rem 0; }

    /* Navigation */
    #main-menu { display: none; }
    .menu-toggle { display: block; }
    #main-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0; right: 0;
        background: white;
        padding: 1rem 2rem 1.5rem;
        border-bottom: 2px solid var(--g-light);
        z-index: 200;
        gap: 4px;
        box-shadow: 0 8px 24px rgba(27,94,53,.1);
    }
    #main-menu.open a { padding: 10px 0; font-size: 15px; border-bottom: 1px solid var(--g-light); }
    #main-menu.open .menu-item-cta > a { margin-top: 8px; text-align: center; border-radius: 8px; border-bottom: none !important; }

    /* Pub bar */
    .pub-bar { position: sticky; top: 0; }
    .site-header { position: sticky; top: 44px; }

    /* Hero */
    .hero-grid { grid-template-columns: 1fr; }
    .hero-right { display: none; }

    /* Grilles principales */
    .pres-grid      { grid-template-columns: 1fr; gap: 2rem; }
    .prob-grid      { grid-template-columns: 1fr; }
    .sol-grid       { grid-template-columns: 1fr; }
    .apres-grid     { grid-template-columns: 1fr 1fr; gap: 12px; }
    .conditions-grid { grid-template-columns: 1fr 1fr; }
    .canaux-grid    { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gov-grid       { grid-template-columns: 1fr 1fr; gap: 12px; }

    /* FAQ */
    .faq-layout { grid-template-columns: 1fr; }
    .faq-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        position: static;
    }
    .faq-sidebar .sb-card.gold-bg { display: none; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand-info { max-width: 100%; }

    /* Impact */
    .imp-header { flex-direction: column; align-items: flex-start; }
    .imp-header p { text-align: left; max-width: 100%; }
}

/* ----- 768px : tablette portrait / grand mobile ----- */
@media (max-width: 768px) {
    .av-grid { grid-template-columns: repeat(3, 1fr); }
    .imp-grid { grid-template-columns: 1fr 1fr; }
    .nav-inner { padding: 0 1.5rem; }

    /* Onglets comment ça marche */
    .how-tabs { width: 100%; }
    .how-tab  { flex: 1; padding: 10px 12px; font-size: 12px; text-align: center; }

    /* Résultat banner */
    .result-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .result-badges { flex-wrap: wrap; }

    /* Popup */
    .cag-popup { max-width: 95vw; }

    /* FAQ catégories */
    .faq-cats { gap: 6px; }
    .faq-cat  { padding: 7px 14px; font-size: 11px; }
}

/* ----- 640px : mobile standard (iPhone 12/13/14) ----- */
@media (max-width: 640px) {
    /* Conteneur */
    .cag-container { padding: 0 1rem; }
    .cag-section   { padding: 2.5rem 0; }

    /* Pub bar */
    .pub-bar-left { display: none; }
    .pub-bar { position: relative; top: auto; }
    .site-header { position: sticky; top: 0; }

    /* Navigation */
    .nav-inner { padding: 0 1rem; height: 60px; }
    .nav-sub { display: none; }
    #main-menu.open { top: 60px; }

    /* Hero */
    .hero-left { padding: 2rem 1rem; }
    .hero-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .hero-desc  { font-size: 14px; }
    .hero-buttons .btn { padding: 12px 16px; font-size: 13px; }
    .hero-buttons { max-width: 100%; }

    /* Stats bar */
    .stats-bar { padding: .8rem 0; }
    .stats-bar-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .stat-item { padding: 6px 4px; }
    .stat-n { font-size: 16px; }
    .stat-l { font-size: 8px; letter-spacing: 0; }

    /* Présentation */
    .pres-mission { flex-direction: column; gap: 1rem; }
    .pres-mission-icon { width: 40px; height: 40px; font-size: 20px; }
    .gov-grid { grid-template-columns: 1fr; }
    .gov-block { padding: 1.5rem 1rem; }

    /* Canaux enrôlement */
    .canaux-grid { grid-template-columns: 1fr 1fr; }

    /* Conditions */
    .conditions-grid { grid-template-columns: 1fr; }
    .conditions-box { padding: 1rem; }

    /* Visite banner */
    .visite-banner { flex-direction: column; gap: 10px; }
    .visite-icon { width: 36px; height: 36px; font-size: 18px; flex-shrink: 0; }

    /* Apres validation */
    .apres-grid { grid-template-columns: 1fr; }
    .apres-subtitle { font-size: 15px; }

    /* Onglets */
    .how-tabs  { width: 100%; border-radius: 8px; }
    .how-tab   { flex: 1; padding: 10px 6px; font-size: 11px; }

    /* Étapes acheteurs */
    .step-row { grid-template-columns: 44px 1fr; }
    .step-circle { width: 34px; height: 34px; font-size: 14px; }
    .step-title { font-size: 15px; }
    .step-row:not(:last-child)::before { left: 21px; }

    /* Impact */
    .imp-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .imp-card { padding: 16px; }
    .imp-n    { font-size: 28px; }
    .imp-l    { font-size: 11px; }

    /* Avantages */
    .av-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .av-card { padding: 16px 12px; }
    .av-icon { width: 44px; height: 44px; font-size: 18px; }
    .av-card h4 { font-size: 12px; }
    .av-card p  { font-size: 10px; }

    /* FAQ */
    .faq-sidebar { grid-template-columns: 1fr; }
    .faq-sidebar .sb-card { display: none; }
    .faq-sidebar .sb-card:first-child { display: block; }
    .faq-q-text { font-size: 13px; }
    .faq-a { padding: 0 12px 16px 50px; }

    /* CTA final */
    .cta-box { padding: 2rem 1rem; border-radius: 14px; }
    .cta-box h2 { font-size: 1.4rem; }
    .cta-buttons { flex-direction: column; gap: 10px; }
    .cta-buttons .btn { width: 100%; justify-content: center; padding: 14px; }
    .cta-reassure { font-size: 10px; }
    .cta-reassure span { display: block; margin: 4px 0; }

    /* Result banner */
    .result-banner { padding: 16px; }
    .result-text h4 { font-size: 15px; }

    /* Section labels */
    .sh2  { font-size: clamp(1.3rem, 5vw, 1.7rem); }
    .ssub { font-size: 13px; margin-bottom: 1.5rem; }

    /* Partenaires */
    .part-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .part-div { display: none; }
    .part-pills { gap: 8px; }
    .part-pill  { font-size: 11px; padding: 6px 12px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-brand-info { max-width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; }

    /* Popup */
    .popup-body { padding: 16px 18px; }
    .popup-head { padding: 20px 18px; }
    .pc-num { font-size: 13px; }
}

/* ----- 480px : iPhone SE 2, petits Android ----- */
@media (max-width: 480px) {
    .cag-container { padding: 0 0.875rem; }

    /* Canaux : 1 colonne */
    .canaux-grid { grid-template-columns: 1fr; }
    .canal-card  { display: flex; align-items: center; gap: 12px; text-align: left; padding: 14px; }
    .canal-num   { margin: 0; flex-shrink: 0; }
    .canal-icon  { display: none; }

    /* Avantages : 1 colonne liste */
    .av-grid { grid-template-columns: 1fr; }
    .av-card {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
        padding: 14px 16px;
    }
    .av-icon { margin: 0; flex-shrink: 0; width: 40px; height: 40px; font-size: 16px; }

    /* FAQ cats : scroll horizontal */
    .faq-cats {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }
    .faq-cat { white-space: nowrap; flex-shrink: 0; }

    /* How-tabs empilés */
    .how-tabs { flex-direction: column; width: 100%; border-radius: 10px; overflow: hidden; }
    .how-tab  { border-right: none; border-bottom: 2px solid var(--g-dark); width: 100%; }
    .how-tab:last-child { border-bottom: none; }

    /* Onglets comment */
    .step-right { padding-bottom: 20px; }

    /* CTA box */
    .cta-box::before, .cta-box::after { display: none; }

    /* Footer bottom */
    .footer-bottom p:last-child { display: none; }

    /* Pres mission */
    .pres-mission { padding: 1.25rem; }
    .pres-founded span { font-size: 10px; }

    /* Prob cards */
    .prob-card { padding: 18px; }
    .prob-emoji { font-size: 26px; }
    .prob-text { font-size: 13px; }
}

/* ----- 375px : iPhone SE 1ère gen, iPhone 6/7/8 ----- */
@media (max-width: 375px) {
    .cag-container { padding: 0 0.75rem; }
    .hero-title { font-size: 1.5rem; }
    .hero-buttons .btn { font-size: 12px; padding: 11px 12px; }
    .nav-brand { font-size: 12px; }
    .nav-logö { font-size: 8px; padding: 2px 5px; }
    .nav-mark { width: 34px; height: 34px; font-size: 9px; }
    .stat-n { font-size: 14px; }
    .stat-l { font-size: 7px; }
    .imp-n  { font-size: 24px; }
    .cta-box { padding: 1.5rem 0.875rem; }
    .step-row { grid-template-columns: 38px 1fr; }
    .step-circle { width: 30px; height: 30px; font-size: 12px; }
    .step-row:not(:last-child)::before { left: 18px; }
    .faq-q-text { font-size: 12px; }
    .faq-q-icon { width: 26px; height: 26px; font-size: 13px; }
    .faq-a { padding: 0 8px 14px 42px; }
    .result-banner { padding: 12px; border-radius: 10px; }
    .rbadge { padding: 5px 10px; font-size: 11px; }
    .pres-val { font-size: 11px; padding: 6px 12px; }
    .gov-block { padding: 1.25rem 0.875rem; }
    .gov-card { padding: 14px; }
    .gov-icon { font-size: 20px; }
    .gov-card h4 { font-size: 12px; }
    .gov-card p  { font-size: 10px; }
    .visite-text h4 { font-size: 13px; }
    .visite-text p  { font-size: 11px; }
    .pub-msg-text { font-size: 11px; }
    .pub-phone-badge { font-size: 10px; padding: 3px 9px; }
}

/* ==================================================
   BLOG — SECTION APERÇU ACCUEIL
   ================================================== */
.section-blog-preview { background: var(--cream); }
.blog-preview-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap; }
.blog-voir-tout { white-space: nowrap; }

/* Article vedette */
.blog-preview-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(27,94,53,.1); margin-bottom: 2rem; }
.bpf-image { position: relative; min-height: 280px; display: flex; align-items: flex-end; padding: 1.5rem; overflow: hidden; }
.bpf-emoji { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-65%); font-size: 5rem; opacity: .25; }
.bpf-overlay { position: relative; z-index: 1; }
.bpf-cat { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-vif); display: block; margin-bottom: 8px; }
.bpf-title { font-family: var(--fs); font-size: clamp(1.1rem,2vw,1.4rem); color: white; font-weight: 600; line-height: 1.3; }
.bpf-body { background: white; padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.bpf-meta { display: flex; gap: 14px; font-size: 11px; color: var(--muted); margin-bottom: 1rem; }
.bpf-excerpt { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.bpf-points { display: flex; flex-direction: column; gap: 7px; }
.bpf-point { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--g-dark); font-weight: 600; }
.bpf-point span { width: 20px; height: 20px; background: var(--g-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--g-vif); flex-shrink: 0; }

/* Grille 3 articles */
.blog-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 2rem; }
.bpg-card { background: white; border-radius: 14px; overflow: hidden; border: 1.5px solid var(--g-light); transition: transform .2s, box-shadow .2s; }
.bpg-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(27,94,53,.1); }
.bpg-img { height: 120px; display: flex; align-items: flex-end; padding: 12px; position: relative; }
.bpg-img span:first-child { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-65%); font-size: 2.5rem; opacity: .3; }
.bpg-cat { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: white; background: rgba(0,0,0,.25); padding: 3px 9px; border-radius: 100px; position: relative; z-index: 1; }
.bpg-body { padding: 16px; }
.bpg-meta { font-size: 10px; color: var(--muted); margin-bottom: 8px; }
.bpg-title { font-family: var(--fs); font-size: 14px; color: var(--text); font-weight: 600; line-height: 1.4; margin-bottom: 8px; }
.bpg-excerpt { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.bpg-link { font-size: 12px; font-weight: 700; color: var(--g-dark); display: inline-flex; align-items: center; gap: 4px; }
.bpg-link:hover { color: var(--g-vif); }
.blog-preview-footer { text-align: center; }

/* ==================================================
   BLOG — PAGE COMPLÈTE
   ================================================== */

/* Hero blog */
.blog-hero-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; }
.blog-hero-left { padding: 3rem 3rem 3rem 0; display: flex; flex-direction: column; justify-content: center; }
.blog-stat-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--g-light); border: 1px solid rgba(61,166,104,.3); border-radius: 100px; padding: 6px 14px; font-size: 11px; font-weight: 600; color: var(--g-dark); }
.blog-hero-right { padding: 2rem; display: flex; align-items: center; }
.blog-featured-card { background: var(--g-dark); border-radius: 16px; padding: 2rem; width: 100%; }
.bfc-top { margin-bottom: 1.25rem; }
.bfc-cat { font-size: 10px; font-weight: 800; color: var(--gold-vif); text-transform: uppercase; letter-spacing: .1em; display: block; margin-bottom: 10px; }
.bfc-title { font-family: var(--fs); font-size: 1.1rem; color: white; font-weight: 600; line-height: 1.3; margin-bottom: 10px; }
.bfc-excerpt { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.7; }
.bfc-meta { display: flex; align-items: center; gap: 12px; font-size: 11px; color: rgba(255,255,255,.4); flex-wrap: wrap; }
.bfc-link { background: var(--gold-vif); color: white; padding: 7px 16px; border-radius: 6px; font-size: 11px; font-weight: 700; margin-left: auto; white-space: nowrap; }
.bfc-link:hover { background: var(--gold); color: white; }

/* Filtres */
.blog-filters-bar { background: white; border-bottom: 2px solid var(--g-light); padding: .75rem 0; position: sticky; top: 108px; z-index: 100; }
.blog-filters { display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
.blog-filter { padding: 8px 18px; border-radius: 100px; font-size: 12px; font-weight: 700; cursor: pointer; border: 1.5px solid var(--g-light); background: white; color: var(--muted); font-family: var(--ff); white-space: nowrap; flex-shrink: 0; transition: all .2s; }
.blog-filter.active { background: var(--g-dark); color: white; border-color: var(--g-dark); }
.blog-filter:hover:not(.active) { border-color: var(--g-vif); color: var(--g-dark); }

/* Grille articles */
.blog-grid-section { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 2.5rem; }
.blog-card { background: white; border-radius: 14px; overflow: hidden; border: 1.5px solid var(--g-light); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(27,94,53,.1); }
.blog-card[style*="display:none"] { display: none !important; }
.blog-card-img { height: 140px; display: flex; align-items: flex-end; padding: 14px; position: relative; }
.bci-emoji { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-65%); font-size: 3rem; opacity: .3; }
.bci-cat { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: white; background: rgba(0,0,0,.25); padding: 3px 10px; border-radius: 100px; position: relative; z-index: 1; }
.blog-card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; gap: 12px; font-size: 10px; color: var(--muted); margin-bottom: 10px; }
.blog-card-title { font-family: var(--fs); font-size: 15px; color: var(--text); font-weight: 600; line-height: 1.4; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 12px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; flex: 1; }
.blog-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.bct { background: var(--g-light); color: var(--g-dark); font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.blog-card-cta { font-size: 12px; font-weight: 700; color: var(--g-dark); display: inline-flex; align-items: center; gap: 4px; margin-top: auto; }
.blog-card-cta:hover { color: var(--g-vif); }

/* Pagination */
.blog-pagination { display: flex; gap: 8px; justify-content: center; align-items: center; }
.blog-pg { width: 38px; height: 38px; border-radius: 8px; border: 1.5px solid var(--g-light); background: white; font-size: 13px; font-weight: 700; cursor: pointer; color: var(--muted); font-family: var(--ff); transition: all .2s; }
.blog-pg.active { background: var(--g-dark); color: white; border-color: var(--g-dark); }
.blog-pg:hover:not(.active) { border-color: var(--g-vif); color: var(--g-dark); }
.blog-pg-next { width: auto; padding: 0 16px; }

/* Newsletter */
.blog-newsletter { background: var(--g-dark); padding: 2.5rem 0; }
.blog-nl-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.blog-nl-form { display: flex; gap: 10px; }
.blog-nl-input { flex: 1; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2); border-radius: 8px; padding: 12px 16px; font-size: 14px; color: white; font-family: var(--ff); min-width: 260px; }
.blog-nl-input::placeholder { color: rgba(255,255,255,.4); }
.blog-nl-btn { background: var(--gold-vif); color: white; border: none; padding: 12px 22px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--ff); white-space: nowrap; }
.blog-nl-btn:hover { background: var(--gold); }

/* ==================================================
   RESPONSIVE BLOG
   ================================================== */
@media (max-width: 900px) {
    .blog-preview-featured { grid-template-columns: 1fr; }
    .bpf-image { min-height: 200px; }
    .blog-preview-grid { grid-template-columns: 1fr 1fr; }
    .blog-hero-inner { grid-template-columns: 1fr; }
    .blog-hero-right { padding: 0 0 2rem; }
    .blog-hero-left { padding: 2rem 0 1rem; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-nl-inner { grid-template-columns: 1fr; }
    .blog-nl-form { flex-direction: column; }
    .blog-nl-input { min-width: unset; }
    .blog-filters-bar { top: 60px; }
}
@media (max-width: 640px) {
    .blog-preview-grid { grid-template-columns: 1fr; }
    .blog-preview-header { flex-direction: column; align-items: flex-start; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-stat-pill { font-size: 10px; padding: 5px 11px; }
    .bpf-body { padding: 1.25rem; }
    .bpf-title { font-size: 1rem; }
    .blog-filters { gap: 6px; }
    .blog-filter { padding: 7px 13px; font-size: 11px; }
}

/* ==================================================
   LOGO NAVIGATION
   ================================================== */
.nav-logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}
.nav-logo-wrap { display: flex; align-items: center; gap: 10px; }
.nav-logö {
    background: var(--gold-vif);
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: .04em;
    flex-shrink: 0;
}

/* Ajustement nav avec logo image */
.nav-inner { height: 72px; }
@media (max-width: 640px) {
    .nav-logo-img { height: 38px; max-width: 140px; }
    .nav-inner { height: 62px; }
    #main-menu.open { top: 62px; }
}
@media (max-width: 375px) {
    .nav-logo-img { height: 32px; max-width: 120px; }
}

/* ==================================================
   HERO — MOSAÏQUE D'IMAGES
   ================================================== */
.hero-right { padding: 0; overflow: hidden; position: relative; }
.hero-img-mosaic { width: 100%; height: 100%; min-height: 340px; position: relative; }
.him-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    min-height: 340px;
    gap: 3px;
}
.him-cell {
    background-size: cover;
    background-position: center;
    transition: transform .4s ease;
}
.him-cell:hover { transform: scale(1.03); }
.him-large {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}
.him-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,94,53,.75) 0%, rgba(13,43,24,.85) 100%);
    z-index: 1;
}
.him-stats {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    gap: 8px;
}
.him-stat {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 10px 14px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* ==================================================
   CATALOGUE — GALERIE IMAGES
   ================================================== */
.cat-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 0;
}
.cat-img-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(27,94,53,.1);
    transition: transform .25s, box-shadow .25s;
}
.cat-img-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(27,94,53,.18); }
.cat-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .4s ease;
}
.cat-img-card:hover .cat-img-bg { transform: scale(1.07); }
.cat-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,94,53,.92) 0%, rgba(27,94,53,.3) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}
.cat-img-overlay--dark {
    background: linear-gradient(to top, rgba(13,43,24,.95) 0%, rgba(13,43,24,.4) 55%, transparent 100%);
}
.cat-img-emoji { font-size: 1.75rem; margin-bottom: 6px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); }
.cat-img-label { font-family: var(--fs); font-size: 15px; font-weight: 600; color: white; line-height: 1.2; margin-bottom: 3px; }
.cat-img-sub { font-size: 11px; color: rgba(255,255,255,.65); }

/* Footer logo */
.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin-bottom: 12px;
    /* Fond blanc arrondi pour rendre le logo visible sur fond sombre */
    background: white;
    border-radius: 8px;
    padding: 6px 12px;
}

/* ==================================================
   RESPONSIVE — GALERIE CATALOGUE
   ================================================== */
@media (max-width: 900px) {
    .cat-img-grid { grid-template-columns: repeat(2, 1fr); }
    .him-grid { min-height: 320px; }
    .hero-img-mosaic { min-height: 320px; }
}
@media (max-width: 640px) {
    .cat-img-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .cat-img-card { aspect-ratio: 1/1; }
    .cat-img-label { font-size: 12px; }
    .cat-img-sub { font-size: 9px; }
    .him-grid { grid-template-columns: 1fr 1fr; min-height: 260px; }
    .hero-img-mosaic { min-height: 260px; }
    .him-large { grid-row: auto; grid-column: auto; }
    .him-stats { padding: 1.25rem; gap: 8px; }
    .him-stat { padding: 10px 14px; }
}
@media (max-width: 480px) {
    .cat-img-grid { grid-template-columns: 1fr 1fr; }
}

/* ==================================================
   PAGE CATALOGUE COMPLÈTE
   ================================================== */

/* Hero catalogue */
.cat-hero { background: white; overflow: hidden; }
.cat-hero-stripe { height: 5px; background: linear-gradient(90deg,var(--red),var(--gold-vif),var(--g-vif),var(--g-dark)); }
.cat-hero-inner { display: grid; grid-template-columns: 1fr 420px; min-height: 360px; gap: 2rem; padding: 3rem 0; align-items: center; }
.cat-hero-title { font-family: var(--fs); font-size: clamp(2rem,3.5vw,2.75rem); line-height: 1.15; color: var(--text); font-weight: 600; margin: 1rem 0; }
.cat-hero-title em { color: var(--g-dark); font-style: italic; }
.cat-hero-desc { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; max-width: 440px; }
.cat-hero-stats { display: flex; gap: 20px; }
.cat-hs { background: var(--g-light); border-radius: 10px; padding: 12px 18px; text-align: center; }
.cat-hs-n { font-family: var(--fs); font-size: 22px; font-weight: 600; color: var(--g-dark); display: block; }
.cat-hs-l { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
/* Mosaïque hero catalogue */
.cat-hero-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; height: 320px; border-radius: 14px; overflow: hidden; }
.chm-cell { background-size: cover; background-position: center; transition: transform .4s; }
.chm-cell:hover { transform: scale(1.04); }
.chm-large { grid-row: 1 / 3; }

/* Barre de filtres */
.cat-filters-bar { background: white; border-bottom: 2px solid var(--g-light); padding: .7rem 0; position: sticky; top: 72px; z-index: 99; }
.cat-filters { display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
.cat-filter-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; cursor: pointer; border: 1.5px solid var(--g-light); background: white; color: var(--muted); font-family: var(--ff); white-space: nowrap; flex-shrink: 0; transition: all .2s; touch-action: manipulation; min-height: 40px; }
.cat-filter-btn.active { background: var(--g-dark); color: white; border-color: var(--g-dark); }
.cat-filter-btn:hover:not(.active) { border-color: var(--g-vif); color: var(--g-dark); }
.cfb-icon { font-size: 14px; }
.cfb-count { background: rgba(0,0,0,.08); color: inherit; font-size: 10px; font-weight: 800; padding: 1px 7px; border-radius: 100px; margin-left: 2px; }
.cat-filter-btn.active .cfb-count { background: rgba(255,255,255,.2); }

/* Section grille */
.cat-grid-section { background: var(--cream); }

/* Bloc catégorie */
.cat-category-block { margin-bottom: 3.5rem; transition: opacity .3s; }
.cat-category-block.hidden { display: none; }
.cat-cat-header { display: flex; align-items: center; gap: 16px; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--g-light); }
.cat-cat-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--g-dark); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.cat-cat-name { font-family: var(--fs); font-size: 1.375rem; color: var(--text); font-weight: 600; margin-bottom: 3px; }
.cat-cat-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }
.cat-cat-count { margin-left: auto; background: var(--g-light); color: var(--g-dark); font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }

/* Grille produits */
.cat-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Carte produit */
.cat-prod-card { background: white; border-radius: 14px; overflow: hidden; border: 1.5px solid var(--g-light); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.cat-prod-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(27,94,53,.12); }
.cat-prod-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--g-light); }
.cat-prod-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.cat-prod-card:hover .cat-prod-photo { transform: scale(1.06); }
.cat-prod-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, var(--g-light), var(--cream)); }
.cat-prod-badge-wrap { position: absolute; top: 10px; left: 10px; }
.cat-prod-badge { font-size: 9px; font-weight: 800; padding: 3px 10px; border-radius: 100px; color: white; letter-spacing: .06em; text-transform: uppercase; opacity: .92; }
.cat-prod-body { padding: 14px 16px; display: flex; flex-direction: column; flex: 1; }
.cat-prod-name { font-family: var(--fs); font-size: 15px; color: var(--text); font-weight: 600; margin-bottom: 5px; line-height: 1.3; }
.cat-prod-variants { font-size: 11px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.cat-prod-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--g-light); }
.cat-prod-dispo { font-size: 10px; font-weight: 700; }
.cat-prod-dispo.stock { color: var(--g-vif); }
.cat-prod-dispo.saisonnier { color: var(--gold); }
.cat-prod-btn { background: var(--g-dark); color: white; font-size: 10px; font-weight: 800; padding: 6px 12px; border-radius: 6px; white-space: nowrap; transition: background .2s; touch-action: manipulation; }
.cat-prod-btn:hover { background: var(--g-mid); color: white; }

/* Carte "Ajouter un produit" — visible seulement admin */
.cat-add-card { background: white; border-radius: 14px; border: 2px dashed var(--g-light); display: flex; flex-direction: column; align-items: center; justify-content: center; aspect-ratio: 1/1; cursor: pointer; transition: all .2s; text-decoration: none; padding: 1rem; }
.cat-add-card:hover { border-color: var(--g-vif); background: var(--g-light); }
.cat-add-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--g-light); color: var(--g-dark); font-size: 24px; font-weight: 300; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; transition: background .2s; }
.cat-add-card:hover .cat-add-icon { background: var(--g-dark); color: white; }
.cat-add-label { font-size: 12px; font-weight: 700; color: var(--g-dark); }
.cat-add-sub { font-size: 10px; color: var(--muted); margin-top: 3px; }

/* Aucun résultat */
.cat-no-results { text-align: center; padding: 3rem; background: white; border-radius: 14px; border: 1.5px solid var(--g-light); }
.cat-no-results span { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.cat-no-results p { color: var(--muted); font-size: 14px; margin-bottom: 1.25rem; }

/* CTA section */
.cat-cta-section { background: var(--g-dark); padding: 3rem 0; }
.cat-cta-box { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.cat-cta-garanties { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.5rem; }
.cat-gar { font-size: 13px; color: rgba(255,255,255,.75); padding-left: 4px; }
.cat-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Note bas de page */
.cat-note-section { background: var(--cream); padding: 1.25rem 0; }
.cat-note { display: flex; align-items: flex-start; gap: 12px; background: var(--g-light); border-radius: 10px; padding: 14px 18px; border: 1px solid rgba(61,166,104,.25); }
.cat-note span { font-size: 18px; flex-shrink: 0; }
.cat-note p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.cat-note p a { color: var(--g-dark); font-weight: 700; }

/* Page fiche produit individuelle */
.sp-bc { font-size: 12px; color: var(--muted); margin-bottom: 2rem; }
.sp-bc a { color: var(--g-dark); }
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.sp-main-img { width: 100%; border-radius: 14px; object-fit: cover; aspect-ratio: 4/3; }
.sp-no-img { width: 100%; aspect-ratio: 4/3; border-radius: 14px; background: var(--g-light); display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.sp-cat-badge { display: inline-block; color: white; font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 100px; margin-bottom: 12px; }
.sp-title { font-family: var(--fs); font-size: clamp(1.5rem,3vw,2rem); color: var(--text); font-weight: 600; margin-bottom: 8px; }
.sp-variants { font-size: 13px; color: var(--muted); margin-bottom: 1.25rem; }
.sp-meta { background: var(--cream); border-radius: 10px; padding: 1rem; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 8px; }
.sp-meta-item { font-size: 13px; color: var(--muted); }
.sp-meta-item strong { color: var(--text); font-weight: 600; }
.sp-dispo-ok   { color: var(--g-vif);  font-weight: 700; }
.sp-dispo-cmd  { color: var(--gold);   font-weight: 700; }
.sp-dispo-sais { color: #E67E22; font-weight: 700; }
.sp-desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.sp-cta { margin-bottom: 1.25rem; }
.sp-guarantee { display: flex; flex-direction: column; gap: 7px; }
.sp-gar { font-size: 12px; color: var(--muted); padding-left: 4px; }

/* ==================================================
   RESPONSIVE CATALOGUE
   ================================================== */
@media (max-width: 1100px) {
    .cat-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .cat-hero-inner { grid-template-columns: 1fr; }
    .cat-hero-right { display: none; }
    .cat-products-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-cta-box { grid-template-columns: 1fr; gap: 1.5rem; }
    .cat-filters-bar { top: 60px; }
    .sp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .cat-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .cat-cat-header { flex-wrap: wrap; }
    .cat-cat-count { margin-left: 0; }
    .cat-hs-n { font-size: 18px; }
    .cat-cta-btns { flex-direction: column; }
    .cat-hero-stats { gap: 10px; }
    .cat-hs { padding: 10px 12px; }
}
@media (max-width: 480px) {
    .cat-products-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .cat-prod-name { font-size: 13px; }
    .cat-prod-variants { font-size: 10px; }
    .cat-filter-btn { font-size: 11px; padding: 7px 12px; }
}

/* ================================================
   SECTION MÉTÉO & PRIX EN DIRECT
   ================================================ */
.section-data-live { background: var(--cream); }
.data-live-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
@media (max-width: 900px) {
    .data-live-grid { grid-template-columns: 1fr; }
}

/* ================================================
   PLUGIN CAG DATA — Styles intégrés au thème
   ================================================ */

/* --- Sélecteur de langue --- */
.nav-lang { position: relative; margin-left: 8px; }
.cag-lang-switcher { position: relative; z-index: 300; }
.cag-ls-btn {
    background: rgba(255,255,255,.12); color: white;
    border: 1px solid rgba(255,255,255,.25); border-radius: 8px;
    padding: 6px 12px; font-size: 12px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; gap: 6px; font-family: var(--ff);
    touch-action: manipulation; transition: all .2s; white-space: nowrap;
}
.cag-ls-btn:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4); }
.cag-ls-flag { font-size: 16px; line-height: 1; display: inline-block; }
.cag-ls-code { font-size: 12px; font-weight: 700; }
.cag-ls-chevron { color: rgba(255,255,255,.7); transition: transform .2s; flex-shrink: 0; }
.cag-ls-btn[aria-expanded="true"] .cag-ls-chevron { transform: rotate(180deg); }
.cag-ls-dropdown {
    display: none; position: absolute; top: calc(100% + 8px); right: 0;
    background: white; border-radius: 12px; border: 1.5px solid var(--g-light);
    list-style: none; min-width: 180px;
    box-shadow: 0 12px 32px rgba(27,94,53,.18); overflow: hidden; z-index: 9999;
}
.cag-ls-dropdown.open { display: block; animation: ls-in .15s ease; }
@keyframes ls-in { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:none; } }
.cag-ls-dropdown li a {
    display: flex; align-items: center; gap: 10px; padding: 11px 14px;
    font-size: 13px; font-weight: 500; color: var(--text);
    text-decoration: none; transition: background .15s;
    border-bottom: 1px solid var(--g-light);
}
.cag-ls-dropdown li:last-child a { border-bottom: none; }
.cag-ls-dropdown li a:hover { background: var(--g-light); }
.cag-ls-dropdown li.active a { background: var(--g-light); font-weight: 700; }
.cag-ls-item-flag { font-size: 20px; line-height: 1; flex-shrink: 0; display: inline-block; }
.cag-ls-item-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.cag-ls-item-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.2; display: block; }
.cag-ls-item-native { font-size: 10px; color: var(--muted); display: block; margin-top: 1px; }
.cag-ls-check { flex-shrink: 0; margin-left: auto; }

/* --- Ticker de prix --- */
.cag-prix-ticker {
    background: var(--g-dark); height: 36px; display: flex;
    align-items: center; overflow: hidden; border-bottom: 2px solid var(--gold-vif);
}
.cag-ticker-label {
    padding: 0 16px; font-size: 10px; font-weight: 800; color: var(--gold-vif);
    white-space: nowrap; letter-spacing: .08em; border-right: 1px solid rgba(255,255,255,.15);
    flex-shrink: 0; display: flex; align-items: center; gap: 6px;
}
.cag-ticker-label svg { width: 12px; height: 12px; fill: var(--gold-vif); flex-shrink: 0; }
.cag-ticker-track { flex: 1; overflow: hidden; position: relative; }
.cag-ticker-inner {
    display: flex; align-items: center;
    animation: cag-ticker 45s linear infinite; width: max-content;
}
.cag-ticker-inner:hover { animation-play-state: paused; }
@keyframes cag-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.cag-ticker-item { display: flex; align-items: center; gap: 6px; padding: 0 20px; white-space: nowrap; }
.cag-ticker-prod { font-size: 12px; color: rgba(255,255,255,.65); }
.cag-ticker-val { font-size: 12px; font-weight: 700; color: white; }
.cag-ticker-trend { font-size: 11px; font-weight: 800; }
.cag-ticker-trend.up { color: #ff7675; }
.cag-ticker-trend.dn { color: #55efc4; }
.cag-ticker-trend.st { color: var(--gold-vif); }
.cag-ticker-dot { color: rgba(255,255,255,.2); padding: 0 4px; }

/* --- Météo --- */
.cag-meteo-widget {
    background: white; border-radius: 14px;
    border: 1.5px solid var(--g-light); overflow: hidden;
}
.cag-meteo-header {
    background: var(--g-light); padding: 10px 16px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(27,94,53,.1); flex-wrap: wrap; gap: 8px;
}
.cag-meteo-header-title {
    font-size: 11px; font-weight: 700; color: var(--g-dark);
    display: flex; align-items: center; gap: 6px;
}
.cag-meteo-header-title svg { width: 14px; height: 14px; flex-shrink: 0; }
.cag-meteo-regions { display: flex; gap: 4px; flex-wrap: wrap; }
.cag-mr-btn {
    padding: 3px 10px; border-radius: 100px; font-size: 10px; font-weight: 600;
    cursor: pointer; border: 1px solid var(--border); background: white;
    color: var(--muted); text-decoration: none; touch-action: manipulation; transition: all .15s;
}
.cag-mr-btn:hover { border-color: var(--g-vif); color: var(--g-dark); }
.cag-mr-btn.active { background: var(--g-dark); color: white; border-color: var(--g-dark); }
.cag-meteo-body { padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1.5rem; }
.cag-mc-icon-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cag-mc-icon-box {
    width: 72px; height: 72px; border-radius: 16px; background: var(--g-light);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cag-mc-icon-box svg { width: 44px !important; height: 44px !important; max-width: 44px; max-height: 44px; }
.cag-mc-temp-row { display: flex; align-items: baseline; gap: 2px; }
.cag-mc-temp { font-family: var(--fs); font-size: 44px; font-weight: 600; color: var(--g-dark); line-height: 1; }
.cag-mc-unit { font-size: 20px; color: var(--g-mid); font-weight: 400; }
.cag-mc-city { font-size: 11px; color: var(--muted); margin-top: 2px; text-align: center; }
.cag-mc-stats { display: flex; flex-direction: column; gap: 8px; margin-left: auto; }
.cag-mc-stat {
    display: flex; align-items: center; gap: 8px;
    background: var(--cream); border-radius: 8px; padding: 8px 12px; min-width: 130px;
}
.cag-mc-stat-icon {
    width: 28px; height: 28px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cag-mc-stat-icon.blue { background: #E6F1FB; }
.cag-mc-stat-icon.teal { background: #E1F5EE; }
.cag-mc-stat-icon.gray { background: #F1EFE8; }
.cag-mc-stat-icon svg { width: 14px !important; height: 14px !important; }
.cag-mc-stat-val { font-size: 14px; font-weight: 700; color: var(--text); display: block; line-height: 1.2; }
.cag-mc-stat-lbl { font-size: 10px; color: var(--muted); display: block; }
.cag-meteo-forecast { display: flex; border-top: 1px solid var(--g-light); background: var(--cream); }
.cag-mf-day {
    flex: 1; text-align: center; padding: 10px 6px;
    border-right: 1px solid var(--g-light);
}
.cag-mf-day:last-child { border-right: none; }
.cag-mf-name { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; }
.cag-mf-icon {
    width: 32px; height: 32px; border-radius: 8px; background: white;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 4px;
}
.cag-mf-icon svg { width: 18px !important; height: 18px !important; max-width: 18px; max-height: 18px; }
.cag-mf-temps { font-size: 11px; font-weight: 700; color: var(--text); }
.cag-mf-temps span { color: var(--muted); font-weight: 400; }
.cag-mf-rain { font-size: 9px; color: #185FA5; margin-top: 2px; }
.cag-meteo-footer {
    padding: 6px 14px; font-size: 10px; color: var(--muted);
    border-top: 1px solid var(--g-light); text-align: right; background: white;
}
.cag-meteo-error { padding: 1rem; color: var(--muted); font-size: 13px; text-align: center; }

/* --- Widget prix --- */
.cag-prix-widget { background: white; border-radius: 14px; border: 1.5px solid var(--g-light); overflow: hidden; }
.cag-pw-header {
    padding: 12px 16px; background: var(--cream); border-bottom: 1px solid var(--g-light);
    display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.cag-pw-title-row { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.cag-pw-titre { font-size: 13px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 6px; }
.cag-pw-titre svg { width: 14px !important; height: 14px !important; fill: var(--g-dark); flex-shrink: 0; }
.cag-pw-badge { background: var(--g-light); color: var(--g-dark); font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 4px; border: 1px solid rgba(27,94,53,.2); }
.cag-pw-mois { font-size: 10px; color: var(--muted); display: block; }
.cag-pw-marches { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.cag-pm-btn {
    padding: 3px 10px; border-radius: 100px; font-size: 10px; font-weight: 600;
    cursor: pointer; border: 1px solid var(--border); background: white;
    color: var(--muted); text-decoration: none; touch-action: manipulation; transition: all .15s;
}
.cag-pm-btn:hover { border-color: var(--g-vif); color: var(--g-dark); }
.cag-pm-btn.active { background: var(--g-dark); color: white; border-color: var(--g-dark); }
.cag-pw-row { display: flex; align-items: center; padding: 10px 16px; border-bottom: 1px solid var(--g-light); gap: 10px; }
.cag-pw-row:last-of-type { border-bottom: none; }
.cag-pw-row:nth-child(even) { background: var(--cream); }
.cag-pw-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 14px !important; flex-shrink: 0; }
.cag-pw-info { flex: 1; }
.cag-pw-prod { font-size: 12px; font-weight: 600; color: var(--text); display: block; line-height: 1.2; }
.cag-pw-unit { font-size: 10px; color: var(--muted); display: block; }
.cag-pw-prix { font-size: 12px; font-weight: 700; color: var(--g-dark); white-space: nowrap; }
.cag-pw-trend { width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }
.cag-pw-trend.up { background: #FCEBEB; color: #A32D2D; }
.cag-pw-trend.dn { background: #EAF3DE; color: #27500A; }
.cag-pw-trend.st { background: #FAEEDA; color: #633806; }
.cag-pw-empty { padding: 1.5rem; text-align: center; color: var(--muted); font-size: 13px; }
.cag-pw-footer { padding: 8px 16px; background: var(--cream); border-top: 1px solid var(--g-light); font-size: 10px; color: var(--muted); text-align: right; }

/* Section data live */
.section-data-live { background: var(--cream); }
.data-live-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
@media (max-width: 1000px) { .data-live-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .cag-meteo-body { flex-wrap: wrap; gap: 1rem; }
    .cag-mc-stats { min-width: 100%; flex-direction: row; flex-wrap: wrap; }
    .cag-mc-stat { flex: 1; min-width: 100px; }
    .cag-mc-temp { font-size: 3rem; }
    .cag-pw-header { flex-direction: column; }
}

/* Ville dans le ticker */
.cag-ticker-ville {
    font-size: 10px;
    font-weight: 800;
    color: var(--gold-vif);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-right: 2px;
}




/* ============================================================
   CAROUSEL HERO — Design lumineux, intégré
   ============================================================ */
.hero-car-wrap {
    background: linear-gradient(180deg, #f8fdf9 0%, #eef7f1 100%);
    border-top: 3px solid var(--gold-vif);
    padding: 12px 48px 36px;
    position: relative;
}

/* Flèches */
.hc-arrow {
    position: absolute; top: 50%; transform: translateY(-65%);
    z-index: 10;
    background: white;
    border: 1.5px solid #D4E8D8;
    color: var(--g-dark);
    width: 32px; height: 32px; border-radius: 50%;
    font-size: 20px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
    box-shadow: 0 2px 8px rgba(27,94,53,.12);
}
.hc-arrow:hover { background: var(--g-dark); color: white; border-color: var(--g-dark); }
.hc-prev { left: 10px; }
.hc-next { right: 10px; }

/* Viewport + track */
.hc-viewport { overflow: hidden; }
.hc-track {
    display: flex; gap: 14px;
    transition: transform .42s cubic-bezier(.4,0,.2,1);
}

/* Cartes — fond blanc, ombre légère */
.hc-card {
    flex: 0 0 calc(33.333% - 9.5px);
    min-width: calc(33.333% - 9.5px);
    background: white;
    border: 1.5px solid #E8F5EE;
    border-radius: 12px;
    padding: 12px;
    display: flex; flex-direction: column; gap: 10px;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 2px 12px rgba(27,94,53,.06);
}
.hc-card:hover {
    border-color: var(--g-vif);
    box-shadow: 0 6px 24px rgba(27,94,53,.14);
    transform: translateY(-2px);
}

/* Top carte */
.hc-card-top { display: flex; align-items: center; gap: 10px; }
.hc-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hc-icon--ann   { background: linear-gradient(135deg,#7C3AED,#5B21B6); }
.hc-icon--blog  { background: linear-gradient(135deg,#1B5E35,#2E7D4F); }
.hc-icon--promo { background: linear-gradient(135deg,#C8921A,#F0AE2A); }

/* Badges */
.hc-badge {
    font-size: 10px; font-weight: 700; font-family: var(--ff);
    padding: 3px 10px; border-radius: 100px; display: inline-block;
}
.hc-badge--ann   { background: #EDE9FE; color: #5B21B6; }
.hc-badge--blog  { background: var(--g-light); color: var(--g-dark); }
.hc-badge--promo { background: #FEF3C7; color: #92400E; }

/* Titre et méta */
.hc-card-title {
    font-family: var(--fs); font-size: 13px; font-weight: 600;
    color: var(--text); line-height: 1.45;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.hc-card-meta {
    font-size: 11px; color: var(--muted);
    display: flex; align-items: center; gap: 4px;
}
.hc-card-meta::before {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: var(--g-vif); display: inline-block; flex-shrink: 0;
}

/* Pied : dots + lien */
.hc-footer {
    position: absolute; bottom: 12px; left: 52px; right: 52px;
    display: flex; align-items: center; justify-content: space-between;
}
.hc-dots { display: flex; gap: 5px; align-items: center; }
.hc-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #C8E6CC; border: none;
    cursor: pointer; padding: 0; transition: all .25s;
}
.hc-dot.active { background: var(--g-dark); width: 22px; border-radius: 4px; }
.hc-link {
    font-size: 11px; font-weight: 600; color: var(--g-dark);
    text-decoration: none; font-family: var(--ff);
    display: flex; align-items: center; gap: 4px;
    transition: gap .15s;
}
.hc-link:hover { gap: 7px; }

/* Responsive */
@media (max-width: 1024px) {
    .hc-card { flex: 0 0 calc(50% - 7px); min-width: calc(50% - 7px); }
}
@media (max-width: 640px) {
    .hc-card { flex: 0 0 82%; min-width: 82%; }
    .hero-car-wrap { padding: 14px 38px 40px; }
}

/* ============================================================
   SECTION PRÉSENTATION — Nouveau design timeline
   ============================================================ */

/* Grille haut : texte gauche / photo droite */
.pres-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
}

/* Gauche : texte sur fond blanc */
.pres-left-new {
    padding: 3rem 2.5rem;
    background: white;
    display: flex; flex-direction: column; justify-content: flex-start;
    border-right: 1px solid var(--g-light);
}

/* Photo droite */
.pres-photo-right {
    position: relative; overflow: hidden; min-height: 460px;
}
.pres-photo-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 8s ease;
}
.pres-photo-right:hover .pres-photo-img { transform: scale(1.04); }
.pres-photo-fade {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(255,253,244,.5) 0%, transparent 35%);
}
.pres-photo-badge {
    position: absolute; bottom: 18px; left: 18px;
    background: rgba(255,253,244,.92); border: 1px solid var(--g-light);
    border-radius: 10px; padding: 7px 14px;
    display: flex; align-items: center; gap: 8px;
    backdrop-filter: blur(6px);
    font-size: 11px; font-weight: 600; color: var(--g-dark);
}
.pres-photo-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--g-vif); flex-shrink: 0;
}

/* Stripe multicolore séparation */
.pres-stripe {
    height: 4px;
    background: linear-gradient(90deg, var(--g-dark) 0%, var(--g-vif) 30%, var(--gold-vif) 60%, var(--gold) 100%);
}

/* ---- SECTION TIMELINE ---- */
.pres-tl-section {
    background: var(--cream);
    padding: 2.5rem 3rem 3rem;
    border-top: 1px solid var(--g-light);
}

.pres-tl-hint {
    text-align: center; font-size: 10px; font-weight: 700;
    color: var(--muted); letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 2.25rem;
    display: flex; align-items: center; gap: 12px;
}
.pres-tl-hint::before, .pres-tl-hint::after {
    content: ''; flex: 1; height: 1px; background: #D4E8D8;
}

/* Ligne + nœuds */
.pres-tl-row { position: relative; padding: 0 80px; margin-bottom: 2.25rem; }
.pres-tl-track {
    position: absolute; left: 80px; right: 80px; top: 28px;
    height: 3px; background: var(--g-light); border-radius: 2px;
}
.pres-tl-prog {
    position: absolute; left: 0; top: 0; height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--g-dark), var(--g-vif) 40%, var(--gold-vif) 70%, var(--gold) 100%);
    transition: width .5s ease; width: 16%;
}
.pres-tl-nodes { display: flex; justify-content: space-between; position: relative; z-index: 1; }
.pres-tl-node {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; cursor: pointer; flex: 1;
}

/* Dot */
.pres-tl-dot {
    width: 56px; height: 56px; border-radius: 50%;
    border: 2px solid #D4E8D8; background: white;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s; position: relative;
    box-shadow: 0 2px 8px rgba(27,94,53,.08);
    color: var(--muted);
}
.pres-tl-num {
    position: absolute; top: -5px; right: -5px;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--cream); border: 1.5px solid #D4E8D8;
    font-size: 9px; font-weight: 800; color: var(--muted);
    display: flex; align-items: center; justify-content: center;
}

/* Nœud 1 actif → vert */
.pres-tl-node:nth-child(1) .pres-tl-dot.pres-tl-dot--active,
.pres-tl-node.pres-tl-on:nth-child(1) .pres-tl-dot {
    border-color: var(--g-dark); background: var(--g-dark);
    box-shadow: 0 4px 16px rgba(27,94,53,.25); color: white;
}
.pres-tl-node:nth-child(1) .pres-tl-dot.pres-tl-dot--active .pres-tl-num,
.pres-tl-node.pres-tl-on:nth-child(1) .pres-tl-dot .pres-tl-num {
    background: var(--g-dark); color: white; border-color: var(--g-dark);
}
/* Nœud 2 actif → or */
.pres-tl-node:nth-child(2) .pres-tl-dot.pres-tl-dot--active,
.pres-tl-node.pres-tl-on:nth-child(2) .pres-tl-dot {
    border-color: var(--gold-vif); background: var(--gold-vif);
    box-shadow: 0 4px 16px rgba(240,174,42,.3); color: var(--text);
}
.pres-tl-node:nth-child(2) .pres-tl-dot.pres-tl-dot--active .pres-tl-num,
.pres-tl-node.pres-tl-on:nth-child(2) .pres-tl-dot .pres-tl-num {
    background: var(--gold-vif); color: var(--text); border-color: var(--gold-vif);
}
/* Nœud 3 actif → rouge */
.pres-tl-node:nth-child(3) .pres-tl-dot.pres-tl-dot--active,
.pres-tl-node.pres-tl-on:nth-child(3) .pres-tl-dot {
    border-color: var(--red); background: var(--red);
    box-shadow: 0 4px 16px rgba(192,57,43,.25); color: white;
}
.pres-tl-node:nth-child(3) .pres-tl-dot.pres-tl-dot--active .pres-tl-num,
.pres-tl-node.pres-tl-on:nth-child(3) .pres-tl-dot .pres-tl-num {
    background: var(--red); color: white; border-color: var(--red);
}
.pres-tl-node:hover .pres-tl-dot {
    border-color: var(--g-vif); background: var(--g-light);
    box-shadow: 0 4px 12px rgba(27,94,53,.15);
}

.pres-tl-lbl {
    font-family: var(--fs); font-size: 12px; font-weight: 600;
    color: var(--muted); text-align: center; line-height: 1.35;
    transition: color .25s; max-width: 140px;
}
.pres-tl-sub { font-size: 9px; color: #9DC5A8; text-align: center; font-weight: 500; }
.pres-tl-on .pres-tl-lbl { color: var(--text); }
.pres-tl-on .pres-tl-sub { color: var(--muted); }

/* Panneau détail */
.pres-tl-detail {
    background: white; border: 1.5px solid var(--g-light);
    border-radius: 18px; padding: 1.75rem 2rem;
    display: grid; grid-template-columns: 60px 1fr; gap: 1.5rem;
    align-items: start;
    box-shadow: 0 4px 20px rgba(27,94,53,.07);
    transition: opacity .25s, transform .25s;
}
.pres-tl-ico {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pres-tl-tag {
    font-size: 9px; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; margin-bottom: 6px;
}
.pres-tl-title {
    font-family: var(--fs); font-size: 16px; font-weight: 700;
    color: var(--text); margin-bottom: 8px; line-height: 1.3;
}
.pres-tl-desc { font-size: 13px; color: var(--muted); line-height: 1.78; }
.pres-tl-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.pres-tl-chip {
    border-radius: 100px; padding: 4px 12px;
    font-size: 10px; font-weight: 700;
}
.pres-tl-chip--green { background: var(--g-light); color: var(--g-dark); border: 1px solid rgba(61,166,104,.25); }
.pres-tl-chip--gold  { background: var(--gold-pale); color: var(--gold); border: 1px solid rgba(200,146,26,.25); }
.pres-tl-chip--red   { background: #FEF0EE; color: var(--red); border: 1px solid rgba(192,57,43,.2); }

/* Bottom container (mission + gov) */
.pres-bottom { padding-top: 3rem; }

/* Responsive */
@media (max-width: 900px) {
    .pres-top-grid { grid-template-columns: 1fr; }
    .pres-photo-right { min-height: 280px; }
    .pres-tl-section { padding: 2rem 1.5rem 2.5rem; }
    .pres-tl-row { padding: 0 40px; }
    .pres-tl-track { left: 40px; right: 40px; }
}
@media (max-width: 640px) {
    .pres-left-new { padding: 2rem 1.25rem; }
    .pres-tl-detail { grid-template-columns: 1fr; }
    .pres-tl-lbl { font-size: 10px; max-width: 80px; }
}

/* ============================================================
   BANNIÈRE LOGÖ — Entre problème et solution
   ============================================================ */
.logo-banner {
    background: linear-gradient(135deg, var(--g-dark) 0%, #2E7D4F 50%, #1B5E35 100%);
    padding: 2rem 0;
    border-top: 3px solid var(--gold-vif);
    border-bottom: 3px solid var(--gold-vif);
}
.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.logo-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 0;
}
.logo-banner-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.logo-banner-text p {
    font-size: 14px;
    color: rgba(255,255,255,.9);
    line-height: 1.75;
    font-weight: 500;
    margin: 0;
    padding-top: 2px;
}
.logo-banner-cta {
    background: var(--gold-vif);
    color: var(--text);
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 14px;
    font-family: var(--fs);
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(240,174,42,.35);
}
.logo-banner-cta:hover {
    background: #efab1a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(240,174,42,.45);
}
@media (max-width: 768px) {
    .logo-banner-inner { flex-direction: column; align-items: flex-start; }
    .logo-banner-cta { width: 100%; text-align: center; }
}

/* ============================================================
   SECTION APPLICATIONS
   ============================================================ */
.section-apps { background: var(--cream); }
.apps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.app-card {
    background: white; border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 16px rgba(27,94,53,.07);
    border: 1px solid var(--g-light);
    transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column;
}
.app-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(27,94,53,.14); }

.app-img {
    height: 200px; background-size: cover; background-position: center;
    position: relative; flex-shrink: 0;
    transition: transform 6s ease;
}
.app-card:hover .app-img { transform: scale(1.04); }
.app-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(13,43,24,.55) 100%);
}

.app-body { padding: 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.app-tool-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--g-light); border-radius: 100px;
    padding: 3px 10px; font-size: 9px; font-weight: 700;
    color: var(--g-dark); letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: .75rem; width: fit-content;
}
.app-tool-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--g-vif); flex-shrink: 0; }
.app-quote { font-size: 12px; font-style: italic; color: var(--gold); font-weight: 600; margin-bottom: .7rem; line-height: 1.5; }
.app-desc { font-size: 12px; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.app-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.25rem; flex: 1; }
.app-feat { display: flex; align-items: flex-start; gap: 7px; font-size: 11.5px; color: var(--muted); line-height: 1.5; }
.app-feat-check {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--g-light); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.app-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--g-dark); color: white;
    padding: 10px 18px; border-radius: 9px;
    font-size: 12px; font-weight: 700; font-family: var(--fs);
    text-decoration: none; cursor: pointer; border: none;
    transition: background .15s; width: fit-content;
}
.app-btn:hover { background: var(--g-mid); }

@media (max-width: 900px) { .apps-grid { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 900px) { .apps-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   AVANTAGES — Nouveau design avec SVG + badges
   ============================================================ */
.av-ico-svg {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--g-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
}
.av-card--gold .av-ico-svg { background: var(--gold-pale); }
.av-badge-new {
    display: inline-flex; background: var(--g-light); border-radius: 100px;
    padding: 3px 10px; font-size: 9px; font-weight: 700;
    color: var(--g-dark); margin-top: 8px;
    border: 1px solid rgba(61,166,104,.25);
}
.av-card--gold .av-badge-new { background: var(--gold-pale); color: var(--gold); border-color: rgba(200,146,26,.25); }
.av-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; border-radius:2px 2px 0 0; }
.av-card:nth-child(1)::before,.av-card:nth-child(3)::before,.av-card:nth-child(4)::before { background: var(--g-dark); }
.av-card:nth-child(2)::before,.av-card:nth-child(5)::before { background: var(--gold-vif); }

/* ============================================================
   SECTION PROCESS VENTE & ACHAT
   ============================================================ */
.section-process {
    background: var(--text);
    padding: 3rem 0;
}
.process-header-block {
    text-align: center; margin-bottom: 2.5rem;
}
.process-main-title {
    font-family: var(--fs); font-size: clamp(1.3rem,2.5vw,1.75rem);
    font-weight: 700; color: white; line-height: 1.25;
    margin: .75rem 0 .5rem;
}
.process-main-title em { color: var(--gold-vif); font-style: normal; }
.process-main-sub { font-size: 13px; color: rgba(255,255,255,.45); }

.process-two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.process-col {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px; padding: 1.75rem 2rem;
    position: relative; overflow: hidden;
}
.process-col::before {
    content:''; position:absolute; top:0; left:0; right:0;
    height:3px; border-radius:2px 2px 0 0;
}
.process-col--green::before { background: linear-gradient(90deg, var(--g-dark), var(--g-vif)); }
.process-col--gold::before  { background: linear-gradient(90deg, var(--gold-vif), var(--gold)); }

.process-col-header {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--fs); font-size: 13px; font-weight: 700;
    color: white; margin-bottom: 1.5rem;
}
.process-col-ico {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.process-col-ico--green { background: rgba(61,166,104,.2); }
.process-col-ico--gold  { background: rgba(240,174,42,.2); }

.process-steps-list { display: flex; flex-direction: column; }

.ps-row {
    display: flex; gap: 10px; position: relative;
}
.ps-row:not(.ps-row--last)::before {
    content:''; position:absolute;
    left:12px; top:26px; bottom:0;
    width: 1.5px; background: rgba(255,255,255,.08); z-index:0;
}
.ps-num {
    width: 26px; height: 26px; border-radius: 50%;
    font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; z-index: 1; margin-top: 1px;
}
.ps-num--green { background: rgba(61,166,104,.22); color: #6ee7a0; border: 1px solid rgba(61,166,104,.35); }
.ps-num--gold  { background: rgba(240,174,42,.18); color: var(--gold-vif); border: 1px solid rgba(240,174,42,.3); }

.ps-body { padding-bottom: 1rem; flex: 1; }
.ps-row--last .ps-body { padding-bottom: 0; }
.ps-txt { font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.65; }
.ps-txt em { color: var(--gold-vif); font-style: normal; }
.ps-badge {
    display: inline-flex; border-radius: 6px;
    padding: 3px 9px; font-size: 10px; font-weight: 600;
    margin-top: 5px;
}
.ps-badge--green { background: rgba(61,166,104,.15); color: #6ee7a0; }
.ps-badge--gold  { background: rgba(240,174,42,.15); color: var(--gold-vif); }

@media (max-width: 768px) {
    .process-two-cols { grid-template-columns: 1fr; }
}

/* Customizer apps — ajout section dans panel */

/* ============================================================
   ONGLET PRODUCTEURS — Nouveau design timeline canaux
   ============================================================ */
.enrol-intro { font-size:13px; color:var(--muted); margin-bottom:1.5rem; }
.enrol-intro strong { color:var(--text); }

/* Timeline canaux */
.how-canaux-wrap { position:relative; margin-bottom:1.5rem; padding:0; }
.how-canaux-line { display:none; }
.how-canaux-nodes {
  display:flex; justify-content:space-between;
  position:relative; align-items:flex-start;
}
/* Trait connecteur via pseudo sur chaque nœud sauf le dernier */
.how-canal-node {
  display:flex; flex-direction:column; align-items:center;
  gap:9px; cursor:pointer; flex:1;
  position:relative; z-index:1;
}
/* Ligne entre cercles : part du centre du dot, va jusqu'au centre du dot suivant */
.how-canal-node:not(:last-child)::after {
  content:'';
  position:absolute;
  top:28px;
  left:50%; right:calc(-50%);
  height:2px;
  z-index:0;
}
.how-canal-node:nth-child(1)::after { background:linear-gradient(90deg,var(--g-dark),var(--g-vif)); left:28px; right:calc(-100% + 28px); }
.how-canal-node:nth-child(2)::after { background:linear-gradient(90deg,var(--g-vif),var(--gold-vif)); left:28px; right:calc(-100% + 28px); }
.how-canal-node:nth-child(3)::after { background:linear-gradient(90deg,var(--gold-vif),var(--gold)); left:28px; right:calc(-100% + 28px); }
.how-canal-dot {
  width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  position:relative; transition:all .25s;
  box-shadow:0 2px 8px rgba(27,94,53,.1);
  z-index:2;
}
.how-canal-dot--1 { background:var(--g-dark); border:2px solid var(--g-dark); }
.how-canal-dot--2 { background:var(--g-vif);  border:2px solid var(--g-vif);  }
.how-canal-dot--3 { background:var(--gold-vif); border:2px solid var(--gold-vif); }
.how-canal-dot--4 { background:var(--gold);   border:2px solid var(--gold);   }

.how-canal-node:not(.how-canal-on) .how-canal-dot { opacity:.55; }
.how-canal-on .how-canal-dot { opacity:1; box-shadow:0 4px 16px rgba(27,94,53,.25); transform:scale(1.08); }
.how-canal-node:hover .how-canal-dot { opacity:.85; }

.how-canal-num {
  position:absolute; top:-5px; right:-5px;
  width:18px; height:18px; border-radius:50%;
  background:var(--cream); border:1.5px solid rgba(27,94,53,.2);
  font-size:8px; font-weight:800; color:var(--g-dark);
  display:flex; align-items:center; justify-content:center;
}
.how-canal-lbl { font-family:var(--fs); font-size:11px; font-weight:600; color:var(--text); text-align:center; max-width:110px; line-height:1.3; }
.how-canal-sub { font-size:9px; color:var(--muted); text-align:center; }
.how-canal-node:not(.how-canal-on) .how-canal-lbl { color:var(--muted); }

/* Détail canal */
.how-canal-detail {
  background:white; border:1.5px solid var(--g-light); border-radius:14px;
  padding:1.25rem 1.5rem; margin-bottom:1.5rem;
  display:grid; grid-template-columns:48px 1fr; gap:1rem; align-items:start;
  box-shadow:0 2px 12px rgba(27,94,53,.07);
  transition:opacity .25s, transform .25s;
}
.how-cd-ico {
  width:48px; height:48px; border-radius:12px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.how-cd-tag { font-size:9px; font-weight:800; text-transform:uppercase; letter-spacing:.1em; margin-bottom:5px; }
.how-cd-title { font-family:var(--fs); font-size:14px; font-weight:700; color:var(--text); margin-bottom:6px; }
.how-cd-desc { font-size:12.5px; color:var(--muted); line-height:1.7; }
.how-visite {
  display:flex; align-items:flex-start; gap:10px;
  background:linear-gradient(135deg,var(--g-dark),#2E7D4F);
  border-radius:10px; padding:10px 14px; margin-top:12px;
  font-size:11.5px; color:rgba(255,255,255,.85); line-height:1.6;
}
.how-visite strong { color:white; }
.how-visite-ico {
  width:32px; height:32px; border-radius:8px;
  background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}

/* Conditions */
.how-cond-block {
  background:white; border:1.5px solid var(--g-light); border-radius:16px;
  padding:1.5rem; margin-bottom:1.5rem; box-shadow:0 2px 12px rgba(27,94,53,.06);
}
.how-cond-head { display:flex; align-items:center; gap:10px; margin-bottom:1.25rem; }
.how-cond-head-ico {
  width:40px; height:40px; border-radius:10px; background:var(--g-dark);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.how-cond-title { font-family:var(--fs); font-size:14px; font-weight:700; color:var(--text); }
.how-cond-sub { font-size:11px; color:var(--muted); }
.how-cond-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:1rem; }
.how-cond-item {
  background:var(--cream); border-radius:12px; padding:12px 14px;
  display:flex; gap:10px; align-items:flex-start; border:1px solid var(--g-light);
  font-size:11px; color:var(--muted); line-height:1.5;
}
.how-cond-item strong { display:block; font-size:12px; font-weight:700; color:var(--text); margin-bottom:3px; }
.how-cond-ico {
  width:36px; height:36px; border-radius:9px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.how-abo-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.how-abo-item {
  background:var(--g-light); border-radius:10px; padding:10px 12px;
  display:flex; align-items:center; gap:8px;
  border:1px solid rgba(61,166,104,.2);
  font-size:11px; color:var(--g-dark); font-weight:500; line-height:1.35;
}
.how-abo-item strong { font-weight:700; }
.how-abo-dot { width:8px; height:8px; border-radius:50%; background:var(--g-dark); flex-shrink:0; }

/* Après validation */
.how-apres-title {
  font-family:var(--fs); font-size:13px; font-weight:700; color:var(--text);
  margin-bottom:1rem; display:flex; align-items:center; gap:10px;
}
.how-apres-title::after { content:''; flex:1; height:1px; background:var(--g-light); }
.how-apres-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.how-apres-card {
  background:white; border:1.5px solid var(--g-light); border-radius:14px;
  padding:1.25rem; box-shadow:0 2px 10px rgba(27,94,53,.06);
  position:relative; overflow:hidden;
}
.how-apres-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
}
.how-apres-card--1::before { background:var(--g-dark); }
.how-apres-card--2::before { background:var(--gold-vif); }
.how-apres-card--3::before { background:var(--g-vif); }
.how-apres-ico {
  width:44px; height:44px; border-radius:12px;
  display:flex; align-items:center; justify-content:center; margin-bottom:10px;
}
.how-apres-card h4 { font-family:var(--fs); font-size:13px; font-weight:700; color:var(--text); margin-bottom:6px; }
.how-apres-card p { font-size:11.5px; color:var(--muted); line-height:1.65; }
.how-apres-badge {
  display:inline-flex; background:var(--g-light); border-radius:100px;
  padding:3px 10px; font-size:9px; font-weight:700; color:var(--g-dark);
  margin-top:8px; border:1px solid rgba(61,166,104,.25);
}
.how-apres-badge--gold { background:var(--gold-pale); color:var(--gold); border-color:rgba(200,146,26,.25); }

/* ============================================================
   ONGLET ACHETEURS — Carte liste verticale
   ============================================================ */
.how-ach-card {
  background:white; border-radius:18px; padding:2rem;
  box-shadow:0 4px 24px rgba(27,94,53,.08); border:1px solid var(--g-light);
  max-width:520px; margin-bottom:2rem;
}
.how-ach-title { font-family:var(--fs); font-size:1.1rem; font-weight:700; color:var(--text); margin-bottom:.2rem; }
.how-ach-underline {
  height:3px; width:100%;
  background:linear-gradient(90deg,var(--g-dark) 60%,var(--gold-vif) 100%);
  border-radius:2px; margin-bottom:1.5rem;
}
.how-ach-steps { display:flex; flex-direction:column; }
.how-ach-step { display:flex; gap:14px; position:relative; }
.how-ach-step:not(.how-ach-step--last) .how-ach-left::after {
  content:''; position:absolute;
  left:19px; top:38px; bottom:-16px;
  width:2px; background:var(--g-light); z-index:0;
}
.how-ach-left { display:flex; flex-direction:column; align-items:center; flex-shrink:0; position:relative; z-index:1; }
.how-ach-num {
  width:38px; height:38px; border-radius:50%;
  background:var(--g-dark); color:white;
  font-family:var(--fs); font-size:14px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 2px 8px rgba(27,94,53,.22);
}
.how-ach-num--gold { background:var(--gold-vif); color:var(--text); }
.how-ach-num--vif  { background:var(--g-vif); }
.how-ach-right { flex:1; padding-bottom:1.5rem; }
.how-ach-step--last .how-ach-right { padding-bottom:0; }
.how-ach-step-title {
  font-family:var(--fs); font-size:13px; font-weight:700;
  color:var(--text); margin-bottom:5px; margin-top:7px; line-height:1.3;
}
.how-ach-step-desc { font-size:12px; color:var(--muted); line-height:1.65; }
.how-ach-badge {
  display:inline-flex; align-items:center; gap:5px;
  background:var(--g-light); border:1px solid rgba(61,166,104,.2);
  border-radius:6px; padding:4px 10px;
  font-size:10px; color:var(--g-dark); font-weight:600; margin-top:7px;
}
.how-ach-step:nth-child(4) .how-ach-badge { background:var(--gold-pale); border-color:rgba(200,146,26,.2); color:var(--gold); }

/* Responsive */
@media (max-width:768px) {
  .how-canaux-nodes { gap:0; }
  .how-canal-lbl { font-size:9px; max-width:70px; }
  .how-cond-grid { grid-template-columns:1fr; }
  .how-abo-grid { grid-template-columns:1fr 1fr; }
  .how-apres-grid { grid-template-columns:1fr; }
}

/* ============================================================
   FIX PHOTO QUI SOMMES-NOUS — trait dégradé propre
   ============================================================ */
.pres-photo-fade {
    position: absolute; inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,253,244,.85) 0%,
        rgba(255,253,244,.45) 18%,
        transparent 38%
    );
    pointer-events: none;
}

/* ============================================================
   SECTION IMPACT — sans statistiques
   ============================================================ */
.section-impact { text-align: center; }
.imp-header { max-width: 640px; margin: 0 auto; }
.imp-header h2 { color: white; font-family: var(--fs); font-size: clamp(1.4rem,3vw,1.9rem); font-weight: 700; margin-bottom: .6rem; }
.imp-header p  { color: rgba(255,255,255,.65); font-size: 14px; }
.imp-grid { display: none; } /* Statistiques masquées */

/* ============================================================
   SECTION PARTENAIRES
   ============================================================ */
.section-partners { background: white; border-top: 1px solid var(--g-light); }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin: 2rem 0 1.5rem;
}
.partner-card { border-radius: 14px; overflow: hidden; }
.partner-card--pending .partner-card-inner { opacity: .72; }
.partner-card-inner {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; padding: 1.25rem 1rem;
    background: var(--cream); border: 1.5px solid var(--g-light);
    border-radius: 14px; text-decoration: none;
    transition: all .2s; cursor: pointer;
}
.partner-card-inner:hover {
    border-color: var(--g-vif);
    box-shadow: 0 4px 16px rgba(27,94,53,.1);
    transform: translateY(-2px);
}
.partner-logo-wrap {
    width: 80px; height: 56px; border-radius: 10px;
    border: 1.5px solid var(--g-light);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: white;
}
.partner-logo-img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.partner-logo-initials {
    font-family: var(--fs); font-size: 18px; font-weight: 800;
    letter-spacing: -.02em;
}
.partner-name {
    font-family: var(--fs); font-size: 12px; font-weight: 600;
    color: var(--text); text-align: center; line-height: 1.3;
}
.partner-badge {
    font-size: 9px; font-weight: 700; color: var(--gold);
    background: var(--gold-pale); border: 1px solid rgba(200,146,26,.25);
    border-radius: 100px; padding: 2px 8px; letter-spacing: .05em;
}
.partners-cta { text-align: center; margin-top: .5rem; }
.btn-outline-green {
    background: transparent;
    border: 2px solid var(--g-dark);
    color: var(--g-dark);
    font-family: var(--fs); font-weight: 700;
    padding: 11px 24px; border-radius: 10px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; transition: all .2s;
}
.btn-outline-green:hover { background: var(--g-dark); color: white; }

/* ============================================================
   RESPONSIVE iOS — corrections complètes
   ============================================================ */

/* Empêcher le zoom auto sur iOS sur les inputs */
input, textarea, select {
    font-size: 16px !important; /* ≥16px = pas de zoom sur iOS */
}
/* Sauf les mini badges/labels */
.slabel, .av-badge-new, .partner-badge, .how-canal-sub { font-size: inherit !important; }

/* Safe area pour iPhone X+ (encoche/Dynamic Island) */
header, .pub-bar, .cag-header    { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
footer, .cag-footer               { padding-bottom: max(1rem, env(safe-area-inset-bottom)); }
body  { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }

/* Éviter le débordement horizontal */
html, body { max-width: 100%; overflow-x: hidden; }
.cag-container { max-width: 100%; }
* { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Touch targets ≥ 44px (iOS HIG) */
.how-tab, .faq-cat, .app-btn, .btn,
.how-canal-node, .pres-tl-node,
.how-ach-num, .partner-card-inner {
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}
.how-canal-node { padding-top: 4px; padding-bottom: 4px; }

/* Empêcher overflow sur sections process */
.process-two-cols { overflow-x: hidden; }
.process-col { word-break: break-word; }

/* Hero compact iOS */
@media (max-width: 480px) {
    .hero-section { min-height: auto; }
    .how-canaux-nodes { gap: 0; }
    .how-canal-lbl { font-size: 9px; max-width: 65px; }
    .how-canal-dot { width: 48px; height: 48px; }
    .how-canal-node:nth-child(1)::after,
    .how-canal-node:nth-child(2)::after,
    .how-canal-node:nth-child(3)::after { top: 24px; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .apps-grid { grid-template-columns: 1fr; }
    .process-two-cols { grid-template-columns: 1fr; }
    .av-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .how-apres-grid { grid-template-columns: 1fr; }
    .how-cond-grid { grid-template-columns: 1fr; }
    .pres-top-grid { grid-template-columns: 1fr; }
    .gov-grid { grid-template-columns: 1fr; }
}

/* Smooth scroll natif */
html { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }

/* Fix carousel swipe iOS */
.hc-viewport { -webkit-overflow-scrolling: touch; }

/* ============================================================
   SECTION IMPACT — Nouveau design 2 colonnes
   ============================================================ */
.section-impact { background: var(--text); padding: 4rem 0; }

.imp-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

/* Gauche */
.imp-eyebrow {
    display: inline-flex;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.65);
    font-size: 10px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 4px 14px; border-radius: 100px;
    margin-bottom: 1rem;
}
.imp-title {
    font-family: var(--fs);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700; color: white;
    line-height: 1.2; margin-bottom: .75rem;
}
.imp-sub { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* Droite : piliers */
.imp-pillars { display: flex; flex-direction: column; gap: 1.5rem; }
.imp-pillar {
    display: flex; gap: 14px; align-items: flex-start;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px; padding: 1.1rem 1.25rem;
    transition: background .2s;
}
.imp-pillar:hover { background: rgba(255,255,255,.07); }
.imp-pillar-ico {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(61,166,104,.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.imp-pillar-title {
    font-family: var(--fs); font-size: 13px; font-weight: 700;
    color: white; margin-bottom: 4px;
}
.imp-pillar-desc { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* Responsive impact */
@media (max-width: 768px) {
    .imp-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   SUPPRESSION TRAIT TIMELINE CANAUX — remplacé par rien
   ============================================================ */
.how-canal-node:nth-child(1)::after,
.how-canal-node:nth-child(2)::after,
.how-canal-node:nth-child(3)::after { display: none; }

/* Optionnel : remplacer par des petits points discrets entre les nœuds */
.how-canaux-nodes { gap: 0; }

/* ============================================================
   SECTION IMPACT — Design "Notre mission" (fond clair)
   ============================================================ */
.section-impact {
    background: var(--cream);
    border-top: 1px solid var(--g-light);
    border-bottom: 1px solid var(--g-light);
}

.imp-mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Gauche */
.imp-mission-left .sh2 { margin-bottom: .75rem; }
.imp-mission-vals { display: flex; flex-direction: column; gap: 10px; margin-top: 1.25rem; }
.imp-mission-val {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--muted); font-weight: 500;
}
.imp-val-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* Droite : grille 2×2 KPIs */
.imp-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.imp-kpi {
    background: white;
    border: 1.5px solid var(--g-light);
    border-radius: 16px;
    padding: 1.4rem 1.25rem;
    display: flex; flex-direction: column; gap: 6px;
    box-shadow: 0 2px 10px rgba(27,94,53,.05);
    position: relative; overflow: hidden;
}
.imp-kpi::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; border-radius: 2px 2px 0 0;
    background: var(--g-dark);
}
.imp-kpi--gold::before  { background: var(--gold-vif); }
.imp-kpi--light::before { background: var(--g-vif); }
.imp-kpi--dark::before  { background: var(--text); }

.imp-kpi-n {
    font-family: var(--fs);
    font-size: 2rem; font-weight: 800;
    color: var(--text); line-height: 1;
}
.imp-kpi--gold  .imp-kpi-n { color: var(--gold); }
.imp-kpi--light .imp-kpi-n { color: var(--g-vif); }
.imp-kpi--dark  .imp-kpi-n { color: var(--text); }

.imp-kpi-l {
    font-size: 11.5px; color: var(--muted);
    line-height: 1.5; font-weight: 500;
}

/* cat-img-card sans lien : curseur par défaut */
.cat-img-card[role="button"] { cursor: default; }
.cat-img-card[role="button"]:hover { transform: none; box-shadow: none; }

/* Responsive impact */
@media (max-width: 900px) {
    .imp-mission-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 480px) {
    .imp-kpis { grid-template-columns: 1fr 1fr; gap: 10px; }
    .imp-kpi-n { font-size: 1.5rem; }
}

/* ============================================================
   SECTION IMPACT v2 — Design 2 colonnes (fond crème)
   ============================================================ */
.section-impact {
    background: var(--cream) !important;
    border-top: 1px solid var(--g-light);
    border-bottom: 1px solid var(--g-light);
}
.imp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
/* Gauche */
.imp-left .sh2 { margin-bottom: .75rem; }
.imp-left .ssub { margin-bottom: 1.25rem; }
.imp-vals  { display: flex; flex-direction: column; gap: 10px; margin-top: 1.25rem; }
.imp-val   { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); font-weight: 500; }
.imp-dot   { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* Droite : grille KPI */
.imp-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.imp-kpi {
    background: white;
    border: 1.5px solid var(--g-light);
    border-radius: 16px;
    padding: 1.4rem 1.25rem;
    display: flex; flex-direction: column; gap: 6px;
    position: relative; overflow: hidden;
    box-shadow: 0 2px 10px rgba(27,94,53,.05);
}
.imp-kpi::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
}
.imp-kpi--green::before { background: var(--g-dark); }
.imp-kpi--gold::before  { background: var(--gold-vif); }
.imp-kpi--vif::before   { background: var(--g-vif); }
.imp-kpi--dark::before  { background: var(--text); }
.imp-kpi-n {
    font-family: var(--fs);
    font-size: 2rem; font-weight: 800; line-height: 1;
    color: var(--text);
}
.imp-kpi--green .imp-kpi-n { color: var(--g-dark); }
.imp-kpi--gold  .imp-kpi-n { color: var(--gold); }
.imp-kpi--vif   .imp-kpi-n { color: var(--g-vif); }
.imp-kpi-l {
    font-size: 11.5px; color: var(--muted);
    line-height: 1.5; font-weight: 500;
}

/* Override anciens styles impact qui pourraient interférer */
.imp-header, .imp-grid { display: none; }

@media (max-width: 900px) {
    .imp-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 480px) {
    .imp-kpis { grid-template-columns: 1fr 1fr; gap: 10px; }
    .imp-kpi-n { font-size: 1.5rem; }
    .imp-kpi { padding: 1rem; }
}

/* ============================================================
   SECTION IMPACT v5 — Split texte / image
   ============================================================ */
.section-impact { padding: 0 !important; background: var(--text) !important; border: none !important; }

.imp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
    overflow: hidden;
}

/* Gauche */
.imp-split-left {
    padding: 4rem 3.5rem;
    display: flex; flex-direction: column; justify-content: center;
    background: var(--text);
}
.imp-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.6); font-size: 10px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 100px;
    margin-bottom: 1.25rem; width: fit-content;
}
.imp-eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold-vif); flex-shrink: 0;
}
.imp-split-title {
    font-family: var(--fs);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800; color: white;
    line-height: 1.25; margin-bottom: 1rem;
}
.imp-split-title em { color: var(--gold-vif); font-style: normal; }
.imp-split-sub {
    font-size: 14px; color: rgba(255,255,255,.5);
    line-height: 1.8; margin-bottom: 2rem; max-width: 380px;
}

/* Droite */
.imp-split-right { position: relative; overflow: hidden; }
.imp-split-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 8s ease;
}
.imp-split-right:hover .imp-split-img { transform: scale(1.04); }
.imp-split-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--text) 0%, transparent 30%);
}

/* Badge flottant */
.imp-split-badge {
    position: absolute; bottom: 28px; left: 28px;
    background: rgba(13,43,24,.88);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px; padding: 14px 18px;
    backdrop-filter: blur(8px);
}
.imp-badge-top {
    display: flex; align-items: center; gap: 7px; margin-bottom: 4px;
}
.imp-badge-pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: #6ee7a0; flex-shrink: 0;
}
.imp-badge-label {
    font-size: 10px; font-weight: 700;
    color: rgba(255,255,255,.55); letter-spacing: .08em; text-transform: uppercase;
}
.imp-badge-val {
    font-family: var(--fs); font-size: 1.6rem;
    font-weight: 800; color: white; line-height: 1;
}
.imp-badge-sub {
    font-size: 11px; color: rgba(255,255,255,.45); margin-top: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .imp-split { grid-template-columns: 1fr; }
    .imp-split-right { min-height: 280px; }
    .imp-split-overlay { background: linear-gradient(to bottom, var(--text) 0%, transparent 40%); }
    .imp-split-left { padding: 3rem 1.5rem 2rem; }
}

/* ============================================================
   CORRECTIONS LAYOUT GLOBAL — affichage 100% navigateur
   ============================================================ */

/* Éviter tout débordement horizontal */
html { overflow-x: hidden; }
body { overflow-x: hidden; }
.hero-section { overflow: hidden; }

/* Hero : la colonne gauche ne doit pas déborder */
.hero-left { min-width: 0; overflow: hidden; }
.hero-title { word-break: break-word; }

/* Pub bar sticky en haut */
.pub-bar   { position: sticky; top: 0; z-index: 1000; }
.site-header { position: sticky; top: 44px; z-index: 999; }

/* Container sécurisé */
.cag-container { box-sizing: border-box; width: 100%; }

/* Stats hero : pas de chevauchement */
.hero-stat { word-break: break-word; }

/* Breakpoint intermédiaire 1024px */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 300px); }
    .hero-stat-n { font-size: 18px; }
    .hero-title  { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
}
