:root {
    --navy: #074F6A;
    --navy-deep: #042f40;
    --navy-light: #0a6b8f;
    --orange: #E97132;
    --orange-light: #f08a52;
    --cream: #FAF7F2;
    --cream-dark: #F0EBE0;
    --text: #1a1a1a;
    --text-muted: #5a6470;
    --white: #ffffff;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--cream); color: var(--text); overflow-x: hidden; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw; height: 68px;
    background: #ffffff; backdrop-filter: none;
    border-bottom: 1px solid rgba(7,79,106,0.10); transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 2px 20px rgba(7,79,106,0.08); }
  .nav-logo { display: flex; align-items: center; text-decoration: none; }
  .nav-logo img { height: 44px; width: auto; display: block; }
  .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
  .nav-links a { font-size: 14px; font-weight: 400; color: var(--text-muted); text-decoration: none; transition: color .2s; }
  .nav-links a:hover { color: var(--navy); }
  .nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 10px 22px; border-radius: 100px; font-weight: 500 !important; font-size: 14px !important; transition: background .2s, transform .15s !important; }
  .nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }

  .hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 68px; }
  .hero-left { display: flex; flex-direction: column; justify-content: center; padding: 8vh 5vw; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 2rem; animation: fadeUp .7s ease both; }
  .hero-eyebrow::before { display: none; }
  .hero-title { font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.5rem); line-height: 1.05; color: var(--navy-deep); margin-bottom: 1rem; animation: fadeUp .7s .1s ease both; }
  .hero-title em { font-style: italic; color: var(--orange); }
  .hero-tagline { font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.8rem); font-style: italic; color: var(--navy); opacity: .7; margin-bottom: 2.5rem; animation: fadeUp .7s .2s ease both; }
  .hero-desc { font-size: 16px; line-height: 1.75; color: var(--text-muted); max-width: 480px; margin-bottom: 3rem; animation: fadeUp .7s .3s ease both; }
  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .7s .4s ease both; }
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: var(--white); padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 500; text-decoration: none; transition: background .2s, transform .15s; }
  .btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); }
  .btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--navy); padding: 14px 28px; border-radius: 100px; border: 1.5px solid var(--navy); font-size: 15px; font-weight: 500; text-decoration: none; transition: background .2s, color .2s, transform .15s; }
  .btn-secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
  .hero-stats { display: flex; gap: 2.5rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(7,79,106,0.12); animation: fadeUp .7s .5s ease both; }
  .stat-value { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
  .stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
  .hero-right { background: var(--navy-deep); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
  .hero-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 40%, rgba(233,113,50,0.15) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(10,107,143,0.25) 0%, transparent 50%); }
  .hero-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06); }
  .hero-circle-1 { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .hero-circle-2 { width: 350px; height: 350px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .hero-circle-3 { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .hero-visual-card { position: relative; z-index: 2; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 2.5rem; width: min(380px, 85%); animation: fadeUp .8s .3s ease both; }
  .hero-quote { font-family: var(--serif); font-size: 2rem; font-style: italic; color: var(--white); line-height: 1.3; margin-bottom: 1.5rem; text-align: center; }
  .hero-quote em { color: var(--orange-light); font-style: normal; display: block; font-size: 1.3rem; margin-top: .5rem; }
  .hero-method-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 2rem; }
  .method-step { display: flex; align-items: center; gap: 12px; }
  .step-num { width: 28px; height: 28px; background: rgba(233,113,50,0.25); border: 1px solid rgba(233,113,50,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; color: var(--orange-light); flex-shrink: 0; }
  .step-label { font-size: 13px; color: rgba(255,255,255,0.75); }
  .hero-card-footer { display: flex; align-items: center; gap: 10px; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .founder-avatar { width: 40px; height: 40px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 14px; font-weight: 700; color: var(--white); }
  .founder-info p:first-child { font-size: 13px; font-weight: 500; color: var(--white); }
  .founder-info p:last-child { font-size: 11px; color: rgba(255,255,255,0.5); }

  section { padding: 7rem 5vw; }
  .section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
  .section-eyebrow::before { display: none; }
  .section-title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); color: var(--navy-deep); line-height: 1.15; margin-bottom: 1rem; }
  .section-subtitle { font-size: 17px; line-height: 1.7; color: var(--text-muted); max-width: 560px; }

  .actualites { background: var(--navy-deep); padding: 1rem 5vw; overflow: hidden; }
  .actualites-inner { display: flex; align-items: center; gap: 1.5rem; }
  .actu-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-light); white-space: nowrap; flex-shrink: 0; }
  .actu-ticker { overflow: hidden; flex: 1; }
  .actu-items { display: flex; gap: 2.5rem; animation: ticker 35s linear infinite; white-space: nowrap; }
  .actu-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.72); }
  .actu-dot { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
  .actu-date { font-size: 11px; color: rgba(255,255,255,0.38); margin-left: 4px; }
  @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  .compteurs { background: var(--white); padding: 2.5rem 5vw; border-bottom: 1px solid rgba(7,79,106,0.06); }
  .compteurs-inner { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
  .compteur { text-align: center; }
  .compteur-val { font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: var(--navy); line-height: 1; }
  .compteur-val span { font-size: 1.8rem; color: var(--orange); }
  .compteur-label { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

  .offres { background: var(--white); }
  .offres-header { margin-bottom: 4rem; }
  .offres-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
  .offre-card { background: var(--cream); border-radius: 20px; overflow: hidden; transition: transform .3s; }
  .offre-card:hover { transform: translateY(-6px); }
  .offre-card-top { padding: 2.5rem; }
  .offre-card.bc .offre-card-top { background: var(--navy); }
  .offre-card.bos .offre-card-top { background: var(--navy-deep); }
  .offre-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
  .offre-icon svg { width: 24px; height: 24px; color: var(--white); }
  .offre-tag { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-light); background: rgba(233,113,50,0.2); border: 1px solid rgba(233,113,50,0.35); padding: 4px 12px; border-radius: 100px; margin-bottom: 1rem; }
  .offre-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
  .offre-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.65); }
  .offre-card-body { padding: 2rem 2.5rem; }
  .offre-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 2rem; }
  .offre-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); line-height: 1.5; }
  .offre-features li::before { content: '→'; color: var(--orange); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
  .offre-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--navy); text-decoration: none; border-bottom: 1.5px solid var(--navy); padding-bottom: 2px; transition: color .2s, border-color .2s; }
  .offre-cta:hover { color: var(--orange); border-color: var(--orange); }
  .financement-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 500; color: #1a6b3a; background: #e8f5ee; border: 1px solid rgba(26,107,58,0.25); padding: 5px 12px; border-radius: 100px; margin-top: 1rem; }
  .financement-badge::before { content: '✓'; font-weight: 700; }

  .methode { background: var(--navy-deep); position: relative; overflow: hidden; }
  .methode-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 50%, rgba(233,113,50,0.08) 0%, transparent 60%); }
  .methode-inner { position: relative; z-index: 1; }
  .methode-header { margin-bottom: 4rem; }
  .methode-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; background: rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; }
  .methode-step { background: rgba(255,255,255,0.02); padding: 2.5rem 2rem; transition: background .3s; }
  .methode-step:hover { background: rgba(255,255,255,0.06); }
  .methode-step-num { font-family: var(--serif); font-size: 4rem; font-weight: 700; color: rgba(233,113,50,0.2); line-height: 1; margin-bottom: 1rem; transition: color .3s; }
  .methode-step:hover .methode-step-num { color: rgba(233,113,50,0.45); }
  .methode-step-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
  .methode-step-desc { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.5); }
  .methode-cta-wrap { margin-top: 3rem; text-align: center; }

  .consultants-section { background: var(--white); }
  .consultants-header { margin-bottom: 3rem; }
  .consultants-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
  #map { height: 420px; border-radius: 20px; border: 1px solid rgba(7,79,106,0.12); z-index: 1; }
  .consultants-list { display: flex; flex-direction: column; gap: 1rem; }
  .consultant-card { background: var(--cream); border-radius: 16px; padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: transform .2s; }
  .consultant-card:hover { transform: translateX(4px); }
  .consultant-avatar { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 14px; font-weight: 700; color: var(--white); }
  .consultant-name { font-weight: 500; font-size: 14px; color: var(--text); margin-bottom: 2px; }
  .consultant-zone { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
  .consultant-tags { display: flex; flex-wrap: wrap; gap: 5px; }
  .tag { font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 100px; background: rgba(7,79,106,0.08); color: var(--navy); }
  .tag.orange { background: rgba(233,113,50,0.1); color: var(--orange); }
  .tag.green { background: rgba(42,90,64,0.1); color: #2a5a40; }
  .card-region-cta { background: rgba(233,113,50,0.06); border: 1.5px dashed rgba(233,113,50,0.3); border-radius: 16px; padding: 1.25rem 1.5rem; margin-top: 1rem; }
  .card-region-cta p { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
  .card-region-cta p:first-child { font-size: 14px; font-weight: 500; color: var(--orange); margin-bottom: 4px; }
  .card-region-cta a { font-size: 13px; font-weight: 500; color: var(--orange); text-decoration: none; border-bottom: 1px solid var(--orange); }

  .boutique { background: var(--cream-dark); }
  .boutique-header { margin-bottom: 3rem; }
  .boutique-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
  .product-card { background: var(--white); border-radius: 20px; overflow: hidden; transition: transform .3s, box-shadow .3s; }
  .product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(7,79,106,0.1); }
  .product-img { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
  .product-img.navy { background: var(--navy); }
  .product-img.orange-grad { background: linear-gradient(135deg, #e97132, #f0a050); }
  .product-img.dark { background: var(--navy-deep); }
  .product-img-icon { font-family: var(--serif); font-size: 3.5rem; font-weight: 700; color: rgba(255,255,255,0.2); position: absolute; bottom: -10px; right: 1rem; }
  .product-img-badge { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); color: var(--white); font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 100px; }
  .product-img-central { font-size: 3rem; opacity: .9; }
  .product-body { padding: 1.5rem; }
  .product-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy-deep); margin-bottom: .4rem; }
  .product-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
  .product-footer { display: flex; align-items: center; justify-content: space-between; }
  .product-price { font-size: 1.1rem; font-weight: 700; color: var(--navy); font-family: var(--serif); }
  .product-price span { font-size: 11px; font-weight: 400; color: var(--text-muted); font-family: var(--sans); display: block; margin-top: 2px; }
  .btn-add { display: inline-flex; align-items: center; gap: 6px; background: var(--navy); color: var(--white); padding: 9px 18px; border-radius: 100px; font-size: 13px; font-weight: 500; text-decoration: none; border: none; cursor: pointer; transition: background .2s; }
  .btn-add:hover { background: var(--navy-light); }

  .temoignages { background: var(--white); }
  .temoignages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .temoignage-card { background: var(--cream); border-radius: 16px; padding: 2rem; position: relative; }
  .temoignage-card::before { content: '"'; font-family: var(--serif); font-size: 6rem; line-height: .8; color: rgba(7,79,106,0.08); position: absolute; top: 1rem; left: 1.5rem; }
  .temoignage-text { font-family: var(--serif); font-style: italic; font-size: 1rem; line-height: 1.7; color: var(--text); margin-bottom: 1.5rem; position: relative; z-index: 1; }
  .temoignage-author { display: flex; align-items: center; gap: 10px; }
  .temoignage-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--white); font-family: var(--serif); }
  .temoignage-name { font-size: 13px; font-weight: 500; color: var(--text); }
  .temoignage-role { font-size: 12px; color: var(--text-muted); }
  .stars { color: var(--orange); font-size: 12px; margin-bottom: .75rem; }

  .recrutement { background: var(--navy); position: relative; overflow: hidden; }
  .recrutement-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(233,113,50,0.12) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(10,107,143,0.2) 0%, transparent 50%); }
  .recrutement-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .recrutement .section-eyebrow { color: var(--orange-light); }
  .recrutement .section-title { color: var(--white); }
  .recrutement .section-subtitle { color: rgba(255,255,255,0.6); }
  .recrutement-avantages { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 3rem; }
  .avantage { display: flex; gap: 1rem; align-items: flex-start; }
  .avantage-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(233,113,50,0.2); border: 1px solid rgba(233,113,50,0.4); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
  .avantage-icon svg { width: 18px; height: 18px; color: var(--orange-light); }
  .avantage-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
  .avantage-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }
  .prochaines-formations { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 2rem; margin-bottom: 1.5rem; }
  .prochaines-formations h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--white); margin-bottom: 1.5rem; }
  .formation-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .formation-item:last-child { border-bottom: none; padding-bottom: 0; }
  .formation-date { font-size: 11px; font-weight: 500; background: rgba(233,113,50,0.25); color: var(--orange-light); padding: 4px 10px; border-radius: 6px; white-space: nowrap; flex-shrink: 0; }
  .formation-info { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.4; }
  .formation-places { font-size: 11px; color: var(--orange-light); margin-top: 3px; font-weight: 500; }

  .form-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 2rem; }
  .form-card h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--white); margin-bottom: 1.5rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 10px 14px; font-size: 14px; color: var(--white); font-family: var(--sans); outline: none; transition: border-color .2s; }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
  .form-group select option { background: var(--navy-deep); color: var(--white); }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .btn-form { display: block; width: 100%; text-align: center; background: var(--orange); color: var(--white); padding: 13px 28px; border-radius: 100px; font-size: 15px; font-weight: 500; border: none; cursor: pointer; font-family: var(--sans); transition: background .2s, transform .15s; margin-top: 1.5rem; }
  .btn-form:hover { background: var(--orange-light); transform: translateY(-2px); }
  .form-note { font-size: 12px; color: rgba(255,255,255,0.35); text-align: center; margin-top: .75rem; }
  .form-success { display: none; background: rgba(26,107,58,0.2); border: 1px solid rgba(26,107,58,0.4); border-radius: 12px; padding: 1rem; font-size: 14px; color: #7dd3a8; text-align: center; margin-top: 1rem; }

  .contact-client { background: var(--cream-dark); }
  .contact-client-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .contact-form-light { background: var(--white); border-radius: 20px; padding: 2.5rem; box-shadow: 0 4px 24px rgba(7,79,106,0.06); }
  .contact-form-light h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--navy-deep); margin-bottom: 1.5rem; }
  .form-group-light { margin-bottom: 1rem; }
  .form-group-light label { display: block; font-size: 12px; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
  .form-group-light input, .form-group-light select, .form-group-light textarea { width: 100%; background: var(--cream); border: 1px solid rgba(7,79,106,0.15); border-radius: 10px; padding: 10px 14px; font-size: 14px; color: var(--text); font-family: var(--sans); outline: none; transition: border-color .2s; }
  .form-group-light input:focus, .form-group-light select:focus, .form-group-light textarea:focus { border-color: var(--navy); }
  .form-group-light textarea { resize: vertical; min-height: 80px; }
  .btn-form-navy { display: block; width: 100%; text-align: center; background: var(--navy); color: var(--white); padding: 13px 28px; border-radius: 100px; font-size: 15px; font-weight: 500; border: none; cursor: pointer; font-family: var(--sans); transition: background .2s, transform .15s; margin-top: 1.5rem; }
  .btn-form-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
  .form-note-light { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: .75rem; }
  .form-success-light { display: none; background: #e8f5ee; border: 1px solid rgba(26,107,58,0.25); border-radius: 12px; padding: 1rem; font-size: 14px; color: #1a6b3a; text-align: center; margin-top: 1rem; }

  footer { background: var(--navy-deep); padding: 4rem 5vw 2rem; color: rgba(255,255,255,0.6); }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
  .footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .8; }
  .footer-brand p { font-size: 13px; margin-top: 1rem; line-height: 1.7; color: rgba(255,255,255,0.45); }
  .footer-brand .qualiopi { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 500; color: var(--orange-light); background: rgba(233,113,50,0.15); border: 1px solid rgba(233,113,50,0.3); padding: 5px 12px; border-radius: 100px; margin-top: 1rem; }
  .footer-col h4 { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color .2s; }
  .footer-col ul a:hover { color: var(--white); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); }
  .footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
  .footer-bottom a:hover { color: rgba(255,255,255,0.6); }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  .leaflet-popup-content-wrapper { border-radius: 12px !important; box-shadow: 0 8px 24px rgba(7,79,106,0.15) !important; }
  .leaflet-popup-content { font-family: var(--sans) !important; font-size: 13px !important; color: var(--text) !important; padding: 4px 2px !important; }
  .popup-name { font-weight: 600; color: var(--navy); font-size: 14px; margin-bottom: 3px; }
  .popup-zone { color: var(--text-muted); font-size: 12px; }
  .popup-tag { display: inline-block; background: rgba(233,113,50,0.1); color: var(--orange); font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 100px; margin-top: 6px; }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .nav-links { display: none; }
    .consultants-layout { grid-template-columns: 1fr; }
    .recrutement-inner { grid-template-columns: 1fr; }
    .contact-client-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }
  @media (max-width: 600px) {
    section { padding: 4rem 5vw; }
    .hero-left { padding: 5vh 5vw; }
    .footer-top { grid-template-columns: 1fr; }
    .compteurs-inner { gap: 2rem; }
  }

/* ── Pages dédiées (BC, BOS, consultant) ─────────────────────── */
.breadcrumb { padding: 90px 5vw 0; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--navy); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero { padding: 2.5rem 5vw 4rem; max-width: 920px; margin: 0 auto; }
.page-hero .section-subtitle { max-width: 100%; }
.page-hero-ctas { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.page-section { padding: 4rem 5vw; max-width: 900px; margin: 0 auto; }
.page-section-wide { padding: 4rem 5vw; max-width: 1140px; margin: 0 auto; }
.page-section h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy-deep); margin-bottom: 1rem; }
.page-section h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); margin-bottom: .5rem; }
.page-section p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
.steps-list { display: flex; flex-direction: column; gap: 2rem; margin: 2rem 0; }
.step-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num-circle { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 1.1rem; }
.step-content p { margin-bottom: 0; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin: 2rem 0; }
.info-card { background: var(--white); border: 1px solid rgba(7,79,106,0.1); border-radius: 16px; padding: 1.5rem; }
.info-card-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .5rem; }
.info-card-value { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); line-height: 1.3; }
.audience-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0; }
.audience-tag { font-size: 13px; background: rgba(7,79,106,0.06); color: var(--navy); padding: 6px 14px; border-radius: 100px; font-weight: 500; }
.page-cta-band { background: var(--navy-deep); color: var(--white); border-radius: 24px; padding: 3rem 2.5rem; text-align: center; margin: 4rem 5vw; }
.page-cta-band h2 { color: var(--white); }
.page-cta-band p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 1.5rem; }
