:root{
  --color-bg:#ffffff;
  --color-text:#1e293b;
  --color-muted:#475569;
  --color-muted-soft:#64748b;
  --color-line:#e2e8f0;
  --color-soft:#f8fafc;
  --color-primary:#0369a1;
  --color-primary-dark:#0c4a6e;
  --color-primary-deep:#082f49;
  --color-accent:#59c3c3;
  --color-danger:#b91c1c;
  --shadow:0 12px 30px rgba(15,23,42,.08);
  --shadow-strong:0 22px 55px rgba(2,6,23,.18);
  --container:1180px;
  --radius:24px;
  --header-height:96px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--color-text);
  background:var(--color-bg);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
img{max-width:100%;display:block}
svg{display:block}
.container{width:min(var(--container),calc(100% - 32px));margin:0 auto}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.skip-link{position:absolute;left:12px;top:12px;z-index:1000;transform:translateY(-140%);padding:10px 14px;border-radius:999px;background:#fff;color:var(--color-primary-deep);font-weight:900;box-shadow:var(--shadow)}
.skip-link:focus{transform:translateY(0)}

/* Header — logo plus présent, menu institutionnel conservé */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  min-height:var(--header-height);
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(226,232,240,.9);
  box-shadow:0 8px 24px rgba(15,23,42,.04);
}
.header-inner{min-height:var(--header-height);display:flex;align-items:center;justify-content:space-between;gap:28px}
.brand{display:flex;align-items:center;gap:14px;min-width:250px;color:var(--color-primary-deep)}
.brand-logo{height:78px;width:auto;max-width:min(260px,42vw);object-fit:contain}
.brand-text{font-size:30px;font-weight:950;letter-spacing:-.04em;color:var(--color-primary)}
.brand-baseline{display:block;max-width:170px;font-size:12px;line-height:1.35;font-weight:800;color:#557086;letter-spacing:.02em}
.nav-toggle{display:none;align-items:center;justify-content:center;width:48px;height:48px;border:1px solid var(--color-line);border-radius:16px;background:#fff;color:var(--color-primary-deep);cursor:pointer}
.nav-toggle-lines,.nav-toggle-lines::before,.nav-toggle-lines::after{display:block;width:22px;height:2px;border-radius:99px;background:currentColor;position:relative;content:""}
.nav-toggle-lines::before{position:absolute;top:-7px}
.nav-toggle-lines::after{position:absolute;top:7px}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines{background:transparent}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before{top:0;transform:rotate(45deg)}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after{top:0;transform:rotate(-45deg)}
.nav-list{display:flex;align-items:center;justify-content:flex-end;gap:4px;margin:0;padding:0;list-style:none}
.nav-link{display:inline-flex;align-items:center;gap:6px;min-height:44px;padding:10px 13px;border-radius:999px;border:0;background:transparent;color:#34495e;font-size:14px;font-weight:900;cursor:pointer;transition:.18s ease}
.nav-link:hover,.nav-link:focus-visible,.nav-link.is-active{color:var(--color-primary);background:#eef9ff}
.nav-link-cta{background:var(--color-primary);color:#fff;border:1px solid var(--color-primary)}
.nav-link-cta:hover,.nav-link-cta:focus-visible,.nav-link-cta.is-active{background:var(--color-primary-dark);color:#fff}
.chevron{width:18px;height:18px;transition:.18s ease}
.has-dropdown{position:relative}
.dropdown-menu{position:absolute;right:0;top:calc(100% + 10px);min-width:245px;margin:0;padding:8px;list-style:none;border:1px solid var(--color-line);border-radius:18px;background:#fff;box-shadow:var(--shadow-strong);opacity:0;visibility:hidden;transform:translateY(-8px);transition:.18s ease}
.dropdown-menu a{display:block;border-radius:12px;padding:12px 14px;font-size:14px;font-weight:850;color:#334155}
.dropdown-menu a:hover,.dropdown-menu a:focus-visible{background:#f0f9ff;color:var(--color-primary)}
.has-dropdown:hover .dropdown-menu,.has-dropdown:focus-within .dropdown-menu,.has-dropdown.is-open .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.has-dropdown.is-open .chevron{transform:rotate(180deg)}

/* Hero accueil — image d’ambiance si disponible + vague Solunova */
.hero{position:relative;color:#fff;overflow:hidden}
.home-hero{min-height:calc(100vh - var(--header-height));isolation:isolate;background:var(--color-primary-deep)}
.hero-bg{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(98deg,rgba(8,47,73,.94) 0%,rgba(7,89,133,.82) 48%,rgba(3,105,161,.48) 100%),
    radial-gradient(circle at 78% 18%,rgba(89,195,195,.42),transparent 28%);
  background-size:cover,cover;
  background-position:center,center;
}
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,0,0,.12),rgba(0,0,0,.28)),
    repeating-linear-gradient(135deg,rgba(255,255,255,.08) 0 1px,transparent 1px 52px);
  opacity:.65;
}
.home-hero-inner{
  min-height:640px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  align-items:center;
  gap:56px;
  padding:82px 0 150px;
}
.home-hero-content{max-width:850px}
.hero-kicker{color:#7dd3fc}
.eyebrow{display:inline-block;margin:0;font-size:12px;font-weight:950;letter-spacing:.18em;text-transform:uppercase;color:var(--color-primary)}
.home-hero .eyebrow{color:#98f2ff}
h1,h2,h3,p{margin-top:0}
h1{margin:22px 0 0;max-width:860px;font-size:clamp(42px,6.2vw,72px);line-height:1.02;letter-spacing:-.055em;text-wrap:balance;text-shadow:0 10px 34px rgba(2,6,23,.38)}
h2{margin:12px 0 0;font-size:clamp(30px,4vw,48px);line-height:1.08;letter-spacing:-.04em;color:var(--color-primary-deep)}
h3{margin:0;font-size:21px;line-height:1.2;letter-spacing:-.03em;color:var(--color-primary-deep)}
.hero-text{margin:24px 0 0;max-width:690px;font-size:19px;line-height:1.8;color:#475569}
.hero .hero-text{color:rgba(240,249,255,.94)}
/* IMPORTANT : la couleur claire de .hero-text est désormais limitée au contexte .hero.
   Hors hero, .hero-text redevient lisible sur fond blanc et .section-lead est privilégiée sur index.html. */
.section-lead{max-width:860px;margin:16px 0 0;font-size:18px;line-height:1.8;color:#334155}
.section-text{max-width:860px;margin:12px 0 0;font-size:16px;line-height:1.8;color:#475569}
.hero-actions,.intro-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:50px;border-radius:999px;padding:14px 20px;border:1px solid transparent;font-size:14px;font-weight:950;cursor:pointer;transition:.18s ease;text-align:center;white-space:nowrap}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--color-primary);color:#fff;box-shadow:0 12px 22px rgba(3,105,161,.20)}
.btn-primary:hover{background:var(--color-primary-dark)}
.btn-secondary{background:#fff;color:var(--color-primary-deep);border-color:#cbd5e1}
.btn-secondary:hover{background:#f8fafc}
.btn-light{background:#fff;color:var(--color-primary-deep);box-shadow:0 14px 32px rgba(2,6,23,.16)}
.btn-light:hover{background:#f8fafc}
.btn-outline{background:rgba(255,255,255,.08);color:#fff;border-color:rgba(255,255,255,.36)}
.btn-outline:hover{background:rgba(255,255,255,.16)}
.btn-ghost{background:rgba(8,47,73,.38);color:#fff;border-color:rgba(255,255,255,.18)}
.btn-full{width:100%}
.hero-signature{justify-self:end;width:100%;display:grid;gap:18px}
.hero-logo-card{display:flex;align-items:center;justify-content:center;border-radius:34px;background:rgba(255,255,255,.96);padding:28px 26px;box-shadow:0 28px 70px rgba(2,6,23,.25)}
.hero-logo-card img{max-height:118px;width:auto;object-fit:contain}
.signature-lines{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.signature-lines span{display:flex;align-items:center;justify-content:center;min-height:42px;border:1px solid rgba(255,255,255,.2);border-radius:999px;background:rgba(255,255,255,.12);backdrop-filter:blur(8px);font-size:13px;font-weight:950;color:#ecfeff}
.hero-wave{position:absolute;left:0;right:0;bottom:-1px;height:132px;pointer-events:none}
.hero-wave svg{width:100%;height:100%}
.wave-blue{fill:#0ea5cf;opacity:.92}
.wave-white{fill:#fff}

/* Sections accueil */
.section{padding:82px 0}
.section-soft{background:linear-gradient(180deg,#f8fafc 0%,#f0f9ff 100%)}
.home-intro-section{padding-top:74px}
.intro-grid{display:grid;grid-template-columns:minmax(0,1.18fr) minmax(300px,.82fr);gap:34px;align-items:center}
.competence-card,.card,.proof-card{background:#fff;border:1px solid var(--color-line);border-radius:var(--radius);padding:26px;box-shadow:var(--shadow)}
.competence-card{background:linear-gradient(180deg,#ffffff 0%,#f0f9ff 100%);border-color:#bae6fd}
.check-list{margin:18px 0 0;padding:0;display:grid;gap:12px;list-style:none;color:#334155}
.check-list li{position:relative;padding-left:28px;line-height:1.65}
.check-list li::before{content:"";position:absolute;left:0;top:.56em;width:9px;height:9px;border-radius:99px;background:var(--color-accent);box-shadow:0 0 0 5px rgba(89,195,195,.16)}
.section-heading{max-width:850px}
.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.solution-cards{margin-top:34px}
.solution-card{position:relative;overflow:hidden;min-height:270px;transition:.2s ease}
.solution-card::before{content:"";position:absolute;inset:0 0 auto 0;height:5px;background:linear-gradient(90deg,var(--color-primary),var(--color-accent))}
.solution-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-strong)}
.solution-index{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:50%;background:#e0f2fe;color:#075985;font-weight:950;margin-bottom:28px}
.solution-card p,.proof-card p{margin:14px 0 0;color:#475569;line-height:1.75}
.text-link{display:inline-flex;align-items:center;gap:8px;margin-top:20px;color:var(--color-primary);font-weight:950;text-decoration:underline;text-underline-offset:5px;text-decoration-thickness:1px}
.text-link:hover{color:var(--color-primary-dark)}
.proof-section{padding-top:74px}
.proof-card{background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);box-shadow:none}

.home-card-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px;margin-top:34px}
.home-solutions-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px;margin-top:34px}
.home-solution-card{position:relative;display:flex;min-height:260px;flex-direction:column;align-items:flex-start;overflow:hidden;background:#fff;border:1px solid var(--color-line);border-radius:var(--radius);padding:26px;box-shadow:var(--shadow);transition:.2s ease}
.home-solution-card::before{content:"";position:absolute;inset:0 0 auto 0;height:5px;background:linear-gradient(90deg,var(--color-primary),var(--color-accent))}
.home-solution-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-strong)}
.home-solution-card p{margin:14px 0 0;color:#475569;line-height:1.75}
.home-solution-card .text-link{margin-top:auto;padding-top:22px}
.home-final-cta{position:relative;overflow:hidden;border-radius:34px;padding:42px;background:linear-gradient(135deg,var(--color-primary-deep) 0%,var(--color-primary) 100%);color:#fff;box-shadow:var(--shadow-strong)}
.home-final-cta::after{content:"";position:absolute;right:-90px;top:-110px;width:280px;height:280px;border-radius:50%;background:rgba(89,195,195,.22)}
.home-final-cta h2,.home-final-cta .section-lead{color:#fff;position:relative;z-index:1}
.home-final-cta .eyebrow{color:#98f2ff;position:relative;z-index:1}
.home-final-cta .hero-actions{position:relative;z-index:1}

/* Lot 1 beta : lisibilite et coherence responsive des parcours visibles. */
.home-solution-card{
  min-width:0;
}

.home-solution-card h3,
.proof-card h3,
.competence-card h3{
  overflow-wrap:anywhere;
}

.home-solution-card p,
.proof-card p,
.section-lead,
.section-text{
  overflow-wrap:break-word;
}

.home-solution-card .form-note{
  margin-top:16px;
}

.internal-hero-actions .btn,
.hero-actions .btn,
.cta-actions .btn,
.actions .btn,
.card-actions .btn{
  white-space:normal;
}

.legacy-informatique,
.legacy-telephonie,
.bureau-ext,
.telephony-client{
  overflow-x:clip;
}

.legacy-informatique .card,
.legacy-informatique .it-offer-card,
.legacy-informatique .it-panel,
.legacy-telephonie .card,
.legacy-telephonie .panel,
.bureau-ext .card,
.telephony-client .card,
.telephony-client .panel,
.telephony-client .timeline-step{
  min-width:0;
}

.legacy-informatique h1,
.legacy-informatique h2,
.legacy-informatique h3,
.legacy-telephonie h1,
.legacy-telephonie h2,
.legacy-telephonie h3,
.bureau-ext h1,
.bureau-ext h2,
.bureau-ext h3,
.telephony-client h1,
.telephony-client h2,
.telephony-client h3{
  overflow-wrap:anywhere;
}

/* Accès rapides latéraux — pastilles bleues compactes, libellé au survol */
.quick-actions{position:fixed;right:0;top:50%;z-index:45;display:grid;gap:8px;transform:translateY(-50%)}
.quick-action{position:relative;display:flex;align-items:center;justify-content:center;width:64px;height:64px;border:1px solid rgba(255,255,255,.16);border-radius:24px 0 0 24px;background:var(--color-primary);color:#fff;box-shadow:0 12px 28px rgba(2,6,23,.18);cursor:pointer;transition:.18s ease}
.quick-action:hover,.quick-action:focus-visible{width:76px;background:var(--color-primary-dark)}
.quick-action[aria-disabled="true"]{cursor:not-allowed;opacity:.72}
.quick-action svg{width:28px;height:28px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.quick-action span{position:absolute;right:calc(100% + 10px);top:50%;transform:translateY(-50%) translateX(8px);opacity:0;pointer-events:none;border-radius:999px;padding:8px 12px;background:var(--color-primary-deep);color:#fff;font-size:12px;font-weight:950;white-space:nowrap;box-shadow:var(--shadow)}
.quick-action:hover span,.quick-action:focus-visible span{opacity:1;transform:translateY(-50%) translateX(0)}

/* Panneaux rapides */
.panel-overlay{position:fixed;inset:0;z-index:70;background:rgba(15,23,42,.42);backdrop-filter:blur(2px)}
.panel-overlay[hidden]{display:none}
.side-panel{position:fixed;top:0;right:0;z-index:80;width:min(430px,calc(100vw - 22px));height:100vh;padding:24px;background:#fff;box-shadow:-22px 0 60px rgba(15,23,42,.22);transform:translateX(105%);transition:.22s ease;overflow:auto}
.side-panel.is-open{transform:translateX(0)}
.side-panel-header{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;border-bottom:1px solid var(--color-line);padding-bottom:18px}
.side-panel-header h2{font-size:28px}
.icon-button{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border:1px solid var(--color-line);border-radius:999px;background:#fff;color:var(--color-text);font-size:28px;line-height:1;cursor:pointer}
.side-panel-body{padding-top:22px;color:#475569;line-height:1.7}
.quick-form{display:grid;gap:16px;margin-top:20px}
.field label{display:block;margin-bottom:8px;font-size:14px;font-weight:900;color:var(--color-primary-deep)}
.field input,.field select,.field textarea{width:100%;border:1px solid #cbd5e1;border-radius:15px;padding:14px;background:#fff;color:var(--color-text);outline:none;transition:.16s ease}
.field textarea{resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{border-color:#7dd3fc;box-shadow:0 0 0 4px rgba(14,165,233,.14)}
.form-note{margin:0;padding:12px 14px;border-radius:14px;background:#fff7ed;color:#92400e;border:1px solid #fed7aa;font-size:13px;font-weight:800}
.form-note[hidden],.form-error[hidden]{display:none}
.form-error{margin:0;color:var(--color-danger);font-size:13px;font-weight:900}
.panel-link{display:inline-flex;margin-top:18px;color:var(--color-primary);font-weight:950;text-decoration:underline;text-underline-offset:5px}
.support-actions{display:grid;gap:12px;margin-top:20px}

.support-technicians-section{padding-top:76px}
.support-technicians-section .technician-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin-top:34px}
.support-technicians-section .technician-card{display:grid;grid-template-rows:auto 1fr;overflow:hidden;padding:0;transition:.2s ease}
.support-technicians-section .technician-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-strong)}
.support-technicians-section .technician-photo{display:block;width:100%;aspect-ratio:4/5;object-fit:contain;object-position:center bottom;background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);border-bottom:1px solid var(--color-line)}
.support-technicians-section .technician-content{display:flex;flex-direction:column;padding:24px;min-height:0}
.support-technicians-section .technician-content h2{font-size:24px;line-height:1.15;color:var(--color-primary-deep)}
.support-technicians-section .technician-role{min-height:54px;margin:10px 0 0;color:#475569;line-height:1.55;font-weight:800}
.support-technicians-section .technician-tools{display:grid;gap:10px;margin-top:auto;padding-top:22px}
.support-technicians-section .technician-tools .btn{width:100%;white-space:normal}
.support-tool-note{margin-top:22px}

/* Footer */
.site-footer{border-top:1px solid var(--color-line);background:#fff;padding:34px 0;color:#475569;font-size:14px}
.footer-grid{display:grid;grid-template-columns:1.1fr 1fr 1fr;gap:24px;align-items:start}
.site-footer strong{display:block;color:var(--color-primary-deep);font-size:18px}
.site-footer p{margin:8px 0 0;line-height:1.7}
.footer-links{display:flex;flex-wrap:wrap;gap:14px}
.footer-links a{font-weight:850;color:#334155}
.footer-links a:hover{color:var(--color-primary)}
.footer-meta{display:grid;gap:7px;text-align:right}

/* Focus */
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:3px solid rgba(14,165,233,.28);outline-offset:3px}

@media (max-width:1100px){
  :root{--header-height:86px}
  .support-technicians-section .technician-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .brand-logo{height:66px}
  .brand-baseline{display:none}
  .home-hero-inner{grid-template-columns:1fr;min-height:590px;gap:34px;padding-top:70px}
  .hero-signature{justify-self:start;max-width:500px}
  .hero-logo-card{display:none}
  .intro-grid,.grid-3,.footer-grid{grid-template-columns:1fr}
  .home-card-grid,.home-solutions-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-meta{text-align:left}
}
@media (max-width:920px){
  .header-inner{gap:16px}
  .nav-toggle{display:inline-flex}
  .main-nav{position:absolute;left:0;right:0;top:100%;display:none;background:#fff;border-bottom:1px solid var(--color-line);box-shadow:0 18px 32px rgba(15,23,42,.10)}
  .main-nav.is-open{display:block}
  .nav-list{width:min(var(--container),calc(100% - 32px));margin:0 auto;padding:14px 0 18px;display:grid;gap:6px;align-items:stretch}
  .nav-link{width:100%;justify-content:space-between;border-radius:14px}
  .has-dropdown{display:grid}
  .dropdown-menu{position:static;display:none;opacity:1;visibility:visible;transform:none;box-shadow:none;border-radius:14px;margin:4px 0 8px 16px;min-width:0}
  .has-dropdown.is-open .dropdown-menu{display:block}
}
@media (max-width:680px){
  :root{--header-height:76px}
  body{padding-bottom:0}
  .support-technicians-section .technician-grid{grid-template-columns:1fr;gap:18px}
  .support-technicians-section .technician-card{grid-template-columns:104px minmax(0,1fr);grid-template-rows:auto;align-items:stretch}
  .support-technicians-section .technician-photo{height:100%;min-height:220px;aspect-ratio:auto;border-right:1px solid var(--color-line);border-bottom:0}
  .support-technicians-section .technician-content{padding:18px}
  .support-technicians-section .technician-content h2{font-size:21px}
  .support-technicians-section .technician-role{min-height:0;font-size:14px}
  .support-technicians-section .technician-tools{padding-top:18px}
  .support-technicians-section .technician-tools .btn{min-height:46px;padding:12px 14px;font-size:13px}
  .container{width:min(var(--container),calc(100% - 24px))}
  .header-inner{min-height:76px}
  .brand{min-width:0}
  .brand-logo{height:56px;max-width:190px}
  .home-hero{min-height:auto}
  .home-hero-inner{min-height:540px;padding:52px 0 118px}
  h1{font-size:clamp(36px,12vw,52px);line-height:1.03}
  .hero-text{font-size:17px;line-height:1.72}
  .hero-actions,.intro-actions{display:grid}
  .btn{width:100%}
  .signature-lines{grid-template-columns:1fr 1fr}
  .section{padding:62px 0}
  .home-card-grid,.home-solutions-grid{grid-template-columns:1fr}
  .home-final-cta{padding:28px 22px;border-radius:26px}
  .quick-actions{position:static;width:min(var(--container),calc(100% - 24px));margin:24px auto 0;display:flex;justify-content:center;gap:10px;transform:none}
  .quick-action{width:48px;height:48px;border-radius:16px}
  .quick-action:hover,.quick-action:focus-visible{width:48px}
  .quick-action svg{width:24px;height:24px}
  .quick-action span{display:none}
  .side-panel{width:calc(100vw - 16px);padding:20px}
  .hero-wave{height:94px}
}
/* Header commun — version institutionnelle avec logo central.
   Cette couche surcharge uniquement le header et conserve le menu déroulant existant. */
:root{
  --header-height:104px;
}

.site-header--centered{
  min-height:var(--header-height);
  background:rgba(255,255,255,.97);
  border-bottom:1px solid rgba(203,213,225,.86);
  box-shadow:0 10px 28px rgba(15,23,42,.06);
  transition:min-height .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.site-header--centered.is-scrolled{
  --header-height:74px;
  box-shadow:0 14px 34px rgba(15,23,42,.10);
  background:rgba(255,255,255,.985);
}

.header-inner-centered{
  min-height:var(--header-height);
  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  align-items:center;
  gap:22px;
  position:relative;
  transition:min-height .22s ease;
}

.desktop-main-nav{
  min-width:0;
}

.desktop-main-nav-left .nav-list{
  justify-content:flex-end;
}

.desktop-main-nav-right .nav-list{
  justify-content:flex-start;
}

.desktop-main-nav .nav-list{
  gap:3px;
  flex-wrap:nowrap;
}

.site-header--centered .nav-link{
  min-height:42px;
  padding:9px 12px;
  font-size:13px;
  letter-spacing:.01em;
  color:#24384a;
}

.site-header--centered .nav-link:hover,
.site-header--centered .nav-link:focus-visible,
.site-header--centered .nav-link.is-active{
  background:#edf8ff;
  color:var(--color-primary);
}

.site-header--centered .nav-link-cta{
  min-height:40px;
  padding:9px 14px;
  background:var(--color-primary);
  color:#fff;
  box-shadow:0 8px 18px rgba(3,105,161,.18);
}

.site-header--centered .nav-link-cta:hover,
.site-header--centered .nav-link-cta:focus-visible,
.site-header--centered .nav-link-cta.is-active{
  background:var(--color-primary-dark);
  color:#fff;
}

.brand-centered{
  min-width:0;
  width:184px;
  max-width:24vw;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:14px 18px 13px;
  border:1px solid rgba(226,232,240,.9);
  border-top:0;
  border-radius:0 0 34px 34px;
  background:#fff;
  box-shadow:0 18px 36px rgba(15,23,42,.14);
  transform:translateY(16px);
  transition:width .22s ease, padding .22s ease, transform .22s ease, box-shadow .22s ease, border-radius .22s ease;
  z-index:2;
}

.brand-centered .brand-logo{
  width:min(148px,100%);
  height:auto!important;
  max-width:100%;
  object-fit:contain;
  transition:width .22s ease;
}

.brand-centered .brand-baseline{
  max-width:none;
  display:block;
  text-align:center;
  font-size:11px;
  line-height:1.25;
  font-weight:850;
  letter-spacing:.035em;
  color:#577188;
  white-space:nowrap;
  transition:opacity .16s ease, height .16s ease, margin .16s ease;
}

.site-header--centered.is-scrolled .brand-centered{
  width:120px;
  padding:8px 12px 9px;
  border-radius:0 0 24px 24px;
  transform:translateY(6px);
  box-shadow:0 12px 26px rgba(15,23,42,.12);
}

.site-header--centered.is-scrolled .brand-centered .brand-logo{
  width:86px;
}

.site-header--centered.is-scrolled .brand-centered .brand-baseline{
  opacity:0;
  height:0;
  margin:0;
  overflow:hidden;
}

.desktop-main-nav-right .dropdown-menu{
  left:0;
  right:auto;
}

.mobile-main-nav{
  display:none;
}

/* Le logo central ne doit pas masquer le contenu quand le menu mobile prend le relais. */
@media (max-width:1060px){
  .site-header--centered .nav-link{
    padding-inline:10px;
    font-size:12.5px;
  }

  .brand-centered{
    width:164px;
  }

  .brand-centered .brand-logo{
    width:132px;
  }
}

@media (max-width:920px){
  :root{--header-height:78px}

  .site-header--centered,
  .site-header--centered.is-scrolled{
    min-height:var(--header-height);
  }

  .header-inner-centered{
    min-height:var(--header-height);
    display:flex;
    justify-content:space-between;
    gap:16px;
  }

  .desktop-main-nav{
    display:none;
  }

  .brand-centered,
  .site-header--centered.is-scrolled .brand-centered{
    width:auto;
    max-width:none;
    min-width:0;
    flex-direction:row;
    gap:10px;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    transform:none;
  }

  .brand-centered .brand-logo,
  .site-header--centered.is-scrolled .brand-centered .brand-logo{
    width:180px;
    max-width:56vw;
    height:auto!important;
  }

  .brand-centered .brand-baseline,
  .site-header--centered.is-scrolled .brand-centered .brand-baseline{
    display:none;
  }

  .mobile-main-nav{
    position:absolute;
    left:0;
    right:0;
    top:100%;
    display:none;
    background:#fff;
    border-bottom:1px solid var(--color-line);
    box-shadow:0 18px 32px rgba(15,23,42,.10);
  }

  .mobile-main-nav.is-open{
    display:block;
  }

  .mobile-main-nav .nav-list{
    width:min(var(--container),calc(100% - 32px));
    margin:0 auto;
    padding:14px 0 18px;
    display:grid;
    gap:6px;
    align-items:stretch;
  }

  .mobile-main-nav .nav-link{
    width:100%;
    min-height:48px;
    justify-content:space-between;
    border-radius:14px;
    font-size:14px;
  }

  .mobile-main-nav .dropdown-menu{
    position:static;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    border-radius:14px;
    margin:4px 0 8px 16px;
    min-width:0;
  }

  .mobile-main-nav .has-dropdown.is-open .dropdown-menu{
    display:block;
  }
}

@media (max-width:680px){
  :root{--header-height:74px}

  .brand-centered .brand-logo,
  .site-header--centered.is-scrolled .brand-centered .brand-logo{
    width:154px;
    max-width:58vw;
  }

  .nav-toggle{
    width:46px;
    height:46px;
    border-radius:15px;
  }
}
/* ==========================================================================
   Correctif header central — anti-doublon de navigation
   Objectif : une seule ligne de navigation desktop avec logo central, et un seul
   menu mobile affichable uniquement via le burger.
   ========================================================================== */


/* Desktop : une seule ligne visuelle.
   Structure : nav gauche | logo central | nav droite. */
@media (min-width:921px){
  .site-header--centered{
    --header-height:104px;
    min-height:var(--header-height)!important;
    overflow:visible;
    background:rgba(255,255,255,.965);
  }

  .site-header--centered.is-scrolled{
    --header-height:72px;
    min-height:var(--header-height)!important;
    background:rgba(255,255,255,.988);
    box-shadow:0 14px 30px rgba(15,23,42,.10);
  }

  .site-header--centered .header-inner-centered{
    min-height:var(--header-height)!important;
    height:var(--header-height)!important;
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto minmax(0,1fr)!important;
    align-items:center!important;
    gap:24px!important;
    padding:0!important;
    position:relative!important;
  }

  .site-header--centered .desktop-main-nav{
    display:block!important;
    visibility:visible!important;
    min-width:0!important;
  }

  .site-header--centered .desktop-main-nav .nav-list{
    width:auto!important;
    max-width:none!important;
    margin:0!important;
    padding:0!important;
    display:flex!important;
    align-items:center!important;
    gap:4px!important;
    flex-wrap:nowrap!important;
  }

  .site-header--centered .desktop-main-nav-left .nav-list{
    justify-content:flex-end!important;
  }

  .site-header--centered .desktop-main-nav-right .nav-list{
    justify-content:flex-start!important;
  }

  .site-header--centered .nav-link{
    min-height:42px!important;
    padding:9px 11px!important;
    font-size:13px!important;
    line-height:1.1!important;
    white-space:nowrap!important;
    border-radius:999px!important;
  }

  .site-header--centered .nav-link-cta{
    min-height:40px!important;
    padding:9px 13px!important;
  }

  .site-header--centered .nav-toggle{
    display:none!important;
  }

  .site-header--centered .brand-centered{
    width:176px!important;
    max-width:176px!important;
    min-width:0!important;
    flex:0 0 auto!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    gap:5px!important;
    padding:13px 17px 12px!important;
    border:1px solid rgba(226,232,240,.92)!important;
    border-top:0!important;
    border-radius:0 0 32px 32px!important;
    background:#fff!important;
    box-shadow:0 16px 34px rgba(15,23,42,.13)!important;
    transform:translateY(13px)!important;
    z-index:3!important;
  }

  .site-header--centered .brand-centered .brand-logo{
    width:142px!important;
    max-width:142px!important;
    height:auto!important;
    object-fit:contain!important;
  }

  .site-header--centered .brand-centered .brand-baseline{
    display:block!important;
    max-width:140px!important;
    margin:0!important;
    color:#557086!important;
    font-size:10.5px!important;
    line-height:1.22!important;
    font-weight:850!important;
    text-align:center!important;
    opacity:1!important;
    height:auto!important;
    overflow:visible!important;
  }

  .site-header--centered.is-scrolled .brand-centered{
    width:108px!important;
    max-width:108px!important;
    padding:7px 10px 8px!important;
    border-radius:0 0 22px 22px!important;
    transform:translateY(5px)!important;
    box-shadow:0 10px 24px rgba(15,23,42,.12)!important;
  }

  .site-header--centered.is-scrolled .brand-centered .brand-logo{
    width:88px!important;
    max-width:88px!important;
  }

  .site-header--centered.is-scrolled .brand-centered .brand-baseline{
    display:none!important;
  }

  .site-header--centered .dropdown-menu{
    top:calc(100% + 10px)!important;
    z-index:80!important;
  }

  /* Règle stricte demandée : le menu mobile ne peut jamais former une deuxième
     ligne de navigation en desktop. */
  .site-header--centered .mobile-main-nav,
  .site-header--centered .mobile-main-nav.is-open,
  .site-header--centered .main-nav.mobile-main-nav,
  .site-header--centered .main-nav.mobile-main-nav.is-open{
    display:none!important;
    visibility:hidden!important;
    height:0!important;
    min-height:0!important;
    max-height:0!important;
    overflow:hidden!important;
    padding:0!important;
    margin:0!important;
    border:0!important;
    box-shadow:none!important;
  }
}

/* Ajustement desktop étroit : compactage léger avant le passage mobile pour
   éviter le retour à la ligne. */
@media (min-width:921px) and (max-width:1160px){
  .site-header--centered .header-inner-centered{
    gap:16px!important;
  }

  .site-header--centered .brand-centered{
    width:160px!important;
    max-width:160px!important;
    padding-left:14px!important;
    padding-right:14px!important;
  }

  .site-header--centered .brand-centered .brand-logo{
    width:128px!important;
    max-width:128px!important;
  }

  .site-header--centered .brand-centered .brand-baseline{
    max-width:126px!important;
    font-size:9.8px!important;
  }

  .site-header--centered .nav-link{
    padding-inline:8px!important;
    font-size:12.2px!important;
  }

  .site-header--centered .nav-link-cta{
    padding-inline:10px!important;
  }
}

/* Mobile : plus de split menu. Logo simple + burger, puis menu vertical
   uniquement lorsque .is-open est appliquée. */
@media (max-width:920px){
  .site-header--centered,
  .site-header--centered.is-scrolled{
    --header-height:78px;
    min-height:var(--header-height)!important;
    overflow:visible;
  }

  .site-header--centered .header-inner-centered{
    min-height:var(--header-height)!important;
    height:var(--header-height)!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:14px!important;
    padding:0!important;
  }

  .site-header--centered .desktop-main-nav,
  .site-header--centered .desktop-main-nav-left,
  .site-header--centered .desktop-main-nav-right{
    display:none!important;
    visibility:hidden!important;
  }

  .site-header--centered .brand-centered,
  .site-header--centered.is-scrolled .brand-centered{
    width:auto!important;
    max-width:none!important;
    min-width:0!important;
    padding:0!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    box-shadow:none!important;
    transform:none!important;
    display:flex!important;
    flex-direction:row!important;
    justify-content:flex-start!important;
    align-items:center!important;
    gap:10px!important;
  }

  .site-header--centered .brand-centered .brand-logo,
  .site-header--centered.is-scrolled .brand-centered .brand-logo{
    width:176px!important;
    max-width:56vw!important;
    height:auto!important;
  }

  .site-header--centered .brand-centered .brand-baseline,
  .site-header--centered.is-scrolled .brand-centered .brand-baseline{
    display:none!important;
  }

  .site-header--centered .nav-toggle{
    display:inline-flex!important;
    flex:0 0 48px!important;
  }

  .site-header--centered .mobile-main-nav{
    position:absolute!important;
    left:0!important;
    right:0!important;
    top:100%!important;
    display:none!important;
    visibility:hidden!important;
    height:auto!important;
    max-height:none!important;
    overflow:visible!important;
    padding:0!important;
    margin:0!important;
    border-bottom:1px solid var(--color-line)!important;
    background:#fff!important;
    box-shadow:0 18px 32px rgba(15,23,42,.12)!important;
  }

  .site-header--centered .mobile-main-nav.is-open{
    display:block!important;
    visibility:visible!important;
  }

  .site-header--centered .mobile-main-nav .nav-list{
    width:min(var(--container),calc(100% - 32px))!important;
    margin:0 auto!important;
    padding:14px 0 18px!important;
    display:grid!important;
    gap:6px!important;
    align-items:stretch!important;
  }

  .site-header--centered .mobile-main-nav .nav-link{
    width:100%!important;
    min-height:48px!important;
    justify-content:space-between!important;
    padding:12px 14px!important;
    border-radius:14px!important;
    font-size:14px!important;
  }

  .site-header--centered .mobile-main-nav .dropdown-menu{
    position:static!important;
    display:none!important;
    opacity:1!important;
    visibility:visible!important;
    transform:none!important;
    box-shadow:none!important;
    min-width:0!important;
    margin:4px 0 8px 14px!important;
    padding:6px!important;
    border-radius:14px!important;
    background:#f8fafc!important;
  }

  .site-header--centered .mobile-main-nav .has-dropdown.is-open .dropdown-menu{
    display:block!important;
  }
}

@media (max-width:520px){
  .site-header--centered .brand-centered .brand-logo,
  .site-header--centered.is-scrolled .brand-centered .brand-logo{
    width:150px!important;
    max-width:52vw!important;
  }
}


/* ==========================================================================
   HEADER COMMUN SOLUNOVA — version uniforme beta
   Objectif : un seul header central, léger, responsive et sans double baseline.
   Ce bloc neutralise les anciennes couches de styles de header sans impacter
   les sections, calculateurs, formulaires, footer ni accès rapides.
   ========================================================================== */

.site-header.site-header--centered{
  position:sticky!important;
  top:0!important;
  z-index:90!important;
  background:rgba(255,255,255,.97)!important;
  border-bottom:1px solid rgba(226,232,240,.92)!important;
  box-shadow:0 10px 24px rgba(15,23,42,.07)!important;
  backdrop-filter:blur(14px)!important;
  overflow:visible!important;
}

.site-header--centered .brand-centered .brand-baseline{
  display:none!important;
}

.site-header--centered .legacy-burger-compat,
.site-header--centered .legacy-burger-panel-compat{
  display:none!important;
}

@media (min-width:921px){
  .site-header--centered{
    --header-height:92px!important;
    min-height:var(--header-height)!important;
    height:auto!important;
  }

  .site-header--centered.is-scrolled{
    --header-height:68px!important;
    min-height:var(--header-height)!important;
    box-shadow:0 8px 22px rgba(15,23,42,.08)!important;
    background:rgba(255,255,255,.985)!important;
  }

  .site-header--centered .header-inner-centered{
    min-height:var(--header-height)!important;
    height:var(--header-height)!important;
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto minmax(0,1fr)!important;
    align-items:center!important;
    gap:22px!important;
    padding:0!important;
    position:relative!important;
  }

  .site-header--centered .desktop-main-nav,
  .site-header--centered .desktop-main-nav-left,
  .site-header--centered .desktop-main-nav-right{
    display:block!important;
    visibility:visible!important;
    min-width:0!important;
  }

  .site-header--centered .desktop-main-nav .nav-list{
    margin:0!important;
    padding:0!important;
    list-style:none!important;
    display:flex!important;
    align-items:center!important;
    gap:4px!important;
    flex-wrap:nowrap!important;
  }

  .site-header--centered .desktop-main-nav-left .nav-list{
    justify-content:flex-end!important;
  }

  .site-header--centered .desktop-main-nav-right .nav-list{
    justify-content:flex-start!important;
  }

  .site-header--centered .nav-link{
    min-height:40px!important;
    padding:8px 10px!important;
    border-radius:999px!important;
    font-size:13px!important;
    line-height:1.1!important;
    font-weight:850!important;
    white-space:nowrap!important;
  }

  .site-header--centered .nav-link-cta{
    min-height:38px!important;
    padding:8px 12px!important;
  }

  .site-header--centered .nav-toggle{
    display:none!important;
  }

  .site-header--centered .brand-centered{
    width:158px!important;
    max-width:158px!important;
    min-width:0!important;
    flex:0 0 auto!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    padding:10px 13px 11px!important;
    border:1px solid rgba(226,232,240,.95)!important;
    border-top:0!important;
    border-radius:0 0 28px 28px!important;
    background:#fff!important;
    box-shadow:0 12px 26px rgba(15,23,42,.11)!important;
    transform:translateY(9px)!important;
    z-index:3!important;
  }

  .site-header--centered .brand-centered .brand-logo{
    width:132px!important;
    max-width:132px!important;
    height:auto!important;
    object-fit:contain!important;
  }

  .site-header--centered.is-scrolled .brand-centered{
    width:96px!important;
    max-width:96px!important;
    padding:6px 9px 7px!important;
    border-radius:0 0 20px 20px!important;
    transform:translateY(3px)!important;
    box-shadow:0 7px 18px rgba(15,23,42,.10)!important;
  }

  .site-header--centered.is-scrolled .brand-centered .brand-logo{
    width:78px!important;
    max-width:78px!important;
  }

  .site-header--centered .dropdown-menu{
    top:calc(100% + 10px)!important;
    z-index:120!important;
  }

  .site-header--centered .mobile-main-nav,
  .site-header--centered .mobile-main-nav.is-open,
  .site-header--centered .main-nav.mobile-main-nav,
  .site-header--centered .main-nav.mobile-main-nav.is-open{
    display:none!important;
    visibility:hidden!important;
    height:0!important;
    min-height:0!important;
    max-height:0!important;
    overflow:hidden!important;
    padding:0!important;
    margin:0!important;
    border:0!important;
    box-shadow:none!important;
  }
}

@media (min-width:921px) and (max-width:1180px){
  .site-header--centered .header-inner-centered{
    gap:14px!important;
  }

  .site-header--centered .brand-centered{
    width:150px!important;
    max-width:150px!important;
    padding-left:11px!important;
    padding-right:11px!important;
  }

  .site-header--centered .brand-centered .brand-logo{
    width:126px!important;
    max-width:126px!important;
  }

  .site-header--centered .nav-link{
    padding-inline:7px!important;
    font-size:12px!important;
  }

  .site-header--centered .nav-link-cta{
    padding-inline:9px!important;
  }
}

@media (max-width:920px){
  .site-header--centered,
  .site-header--centered.is-scrolled{
    --header-height:74px!important;
    min-height:var(--header-height)!important;
    box-shadow:0 8px 22px rgba(15,23,42,.08)!important;
    overflow:visible!important;
  }

  .site-header--centered .header-inner-centered{
    min-height:var(--header-height)!important;
    height:var(--header-height)!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:14px!important;
    padding:0!important;
  }

  .site-header--centered .desktop-main-nav,
  .site-header--centered .desktop-main-nav-left,
  .site-header--centered .desktop-main-nav-right{
    display:none!important;
    visibility:hidden!important;
  }

  .site-header--centered .brand-centered,
  .site-header--centered.is-scrolled .brand-centered{
    width:auto!important;
    max-width:none!important;
    min-width:0!important;
    padding:0!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    box-shadow:none!important;
    transform:none!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
  }

  .site-header--centered .brand-centered .brand-logo,
  .site-header--centered.is-scrolled .brand-centered .brand-logo{
    width:154px!important;
    max-width:56vw!important;
    height:auto!important;
  }

  .site-header--centered .nav-toggle{
    display:inline-flex!important;
    flex:0 0 46px!important;
    width:46px!important;
    height:46px!important;
  }

  .site-header--centered .mobile-main-nav{
    position:absolute!important;
    left:0!important;
    right:0!important;
    top:100%!important;
    display:none!important;
    visibility:hidden!important;
    height:auto!important;
    max-height:none!important;
    overflow:visible!important;
    padding:0!important;
    margin:0!important;
    border-bottom:1px solid var(--color-line)!important;
    background:#fff!important;
    box-shadow:0 18px 34px rgba(15,23,42,.12)!important;
  }

  .site-header--centered .mobile-main-nav.is-open{
    display:block!important;
    visibility:visible!important;
  }

  .site-header--centered .mobile-main-nav .nav-list{
    width:min(var(--container),calc(100% - 32px))!important;
    margin:0 auto!important;
    padding:14px 0 18px!important;
    list-style:none!important;
    display:grid!important;
    gap:6px!important;
  }

  .site-header--centered .mobile-main-nav .nav-link{
    width:100%!important;
    min-height:48px!important;
    justify-content:space-between!important;
    padding:12px 14px!important;
    border-radius:14px!important;
    font-size:14px!important;
  }

  .site-header--centered .mobile-main-nav .dropdown-menu{
    position:static!important;
    display:none!important;
    opacity:1!important;
    visibility:visible!important;
    transform:none!important;
    box-shadow:none!important;
    min-width:0!important;
    margin:4px 0 8px 14px!important;
    padding:6px!important;
    border-radius:14px!important;
    background:#f8fafc!important;
  }

  .site-header--centered .mobile-main-nav .has-dropdown.is-open .dropdown-menu{
    display:block!important;
  }
}

@media (max-width:520px){
  .site-header--centered .brand-centered .brand-logo,
  .site-header--centered.is-scrolled .brand-centered .brand-logo{
    width:138px!important;
    max-width:52vw!important;
  }
}

/* ==========================================================================
   HEADER COMMUN SOLUNOVA — uniformisation finale toutes pages beta
   Cette couche est volontairement en fin de fichier pour neutraliser les anciens
   headers autonomes, sans toucher aux contenus, calculateurs, formulaires,
   footer ni accès rapides.
   ========================================================================== */

.site-header.site-header--centered{
  position:sticky!important;
  top:0!important;
  z-index:90!important;
  overflow:visible!important;
  background:rgba(255,255,255,.97)!important;
  border-bottom:1px solid rgba(226,232,240,.92)!important;
  box-shadow:0 10px 24px rgba(15,23,42,.07)!important;
  backdrop-filter:blur(14px)!important;
}

.site-header--centered .brand-centered .brand-baseline,
.site-header--centered .legacy-burger-compat,
.site-header--centered .legacy-burger-panel-compat{
  display:none!important;
}

@media (min-width:921px){
  .site-header--centered{--header-height:92px!important;min-height:var(--header-height)!important;}
  .site-header--centered.is-scrolled{--header-height:68px!important;min-height:var(--header-height)!important;background:rgba(255,255,255,.985)!important;box-shadow:0 8px 22px rgba(15,23,42,.08)!important;}
  .site-header--centered .header-inner-centered{min-height:var(--header-height)!important;height:var(--header-height)!important;display:grid!important;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr)!important;align-items:center!important;gap:22px!important;padding:0!important;position:relative!important;}
  .site-header--centered .desktop-main-nav,.site-header--centered .desktop-main-nav-left,.site-header--centered .desktop-main-nav-right{display:block!important;visibility:visible!important;min-width:0!important;}
  .site-header--centered .desktop-main-nav .nav-list{display:flex!important;flex-wrap:nowrap!important;align-items:center!important;gap:4px!important;list-style:none!important;margin:0!important;padding:0!important;}
  .site-header--centered .desktop-main-nav-left .nav-list{justify-content:flex-end!important;}
  .site-header--centered .desktop-main-nav-right .nav-list{justify-content:flex-start!important;}
  .site-header--centered .nav-link{min-height:40px!important;padding:8px 10px!important;border-radius:999px!important;font-size:13px!important;line-height:1.1!important;font-weight:850!important;white-space:nowrap!important;}
  .site-header--centered .nav-link-cta{min-height:38px!important;padding:8px 12px!important;}
  .site-header--centered .nav-toggle{display:none!important;}
  .site-header--centered .brand-centered{width:158px!important;max-width:158px!important;min-width:0!important;flex:0 0 auto!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:10px 13px 11px!important;border:1px solid rgba(226,232,240,.95)!important;border-top:0!important;border-radius:0 0 28px 28px!important;background:#fff!important;box-shadow:0 12px 26px rgba(15,23,42,.11)!important;transform:translateY(9px)!important;z-index:3!important;}
  .site-header--centered .brand-centered .brand-logo{width:132px!important;max-width:132px!important;height:auto!important;object-fit:contain!important;}
  .site-header--centered.is-scrolled .brand-centered{width:96px!important;max-width:96px!important;padding:6px 9px 7px!important;border-radius:0 0 20px 20px!important;transform:translateY(3px)!important;box-shadow:0 7px 18px rgba(15,23,42,.10)!important;}
  .site-header--centered.is-scrolled .brand-centered .brand-logo{width:78px!important;max-width:78px!important;}
  .site-header--centered .dropdown-menu{top:calc(100% + 10px)!important;z-index:120!important;}
  .site-header--centered .mobile-main-nav,.site-header--centered .mobile-main-nav.is-open,.site-header--centered .main-nav.mobile-main-nav,.site-header--centered .main-nav.mobile-main-nav.is-open{display:none!important;visibility:hidden!important;height:0!important;min-height:0!important;max-height:0!important;overflow:hidden!important;padding:0!important;margin:0!important;border:0!important;box-shadow:none!important;}
}

@media (min-width:921px) and (max-width:1180px){
  .site-header--centered .header-inner-centered{gap:14px!important;}
  .site-header--centered .brand-centered{width:150px!important;max-width:150px!important;padding-left:11px!important;padding-right:11px!important;}
  .site-header--centered .brand-centered .brand-logo{width:126px!important;max-width:126px!important;}
  .site-header--centered .nav-link{padding-inline:7px!important;font-size:12px!important;}
  .site-header--centered .nav-link-cta{padding-inline:9px!important;}
}

@media (max-width:920px){
  .site-header--centered,.site-header--centered.is-scrolled{--header-height:74px!important;min-height:var(--header-height)!important;overflow:visible!important;box-shadow:0 8px 22px rgba(15,23,42,.08)!important;}
  .site-header--centered .header-inner-centered{min-height:var(--header-height)!important;height:var(--header-height)!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:14px!important;padding:0!important;}
  .site-header--centered .desktop-main-nav,.site-header--centered .desktop-main-nav-left,.site-header--centered .desktop-main-nav-right{display:none!important;visibility:hidden!important;}
  .site-header--centered .brand-centered,.site-header--centered.is-scrolled .brand-centered{width:auto!important;max-width:none!important;min-width:0!important;padding:0!important;border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;transform:none!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;}
  .site-header--centered .brand-centered .brand-logo,.site-header--centered.is-scrolled .brand-centered .brand-logo{width:154px!important;max-width:56vw!important;height:auto!important;}
  .site-header--centered .nav-toggle{display:inline-flex!important;flex:0 0 46px!important;width:46px!important;height:46px!important;}
  .site-header--centered .mobile-main-nav{position:absolute!important;left:0!important;right:0!important;top:100%!important;display:none!important;visibility:hidden!important;height:auto!important;max-height:none!important;overflow:visible!important;padding:0!important;margin:0!important;border-bottom:1px solid var(--color-line)!important;background:#fff!important;box-shadow:0 18px 34px rgba(15,23,42,.12)!important;}
  .site-header--centered .mobile-main-nav.is-open{display:block!important;visibility:visible!important;}
  .site-header--centered .mobile-main-nav .nav-list{width:min(var(--container),calc(100% - 32px))!important;margin:0 auto!important;padding:14px 0 18px!important;list-style:none!important;display:grid!important;gap:6px!important;}
  .site-header--centered .mobile-main-nav .nav-link{width:100%!important;min-height:48px!important;justify-content:space-between!important;padding:12px 14px!important;border-radius:14px!important;font-size:14px!important;}
  .site-header--centered .mobile-main-nav .dropdown-menu{position:static!important;display:none!important;opacity:1!important;visibility:visible!important;transform:none!important;box-shadow:none!important;min-width:0!important;margin:4px 0 8px 14px!important;padding:6px!important;border-radius:14px!important;background:#f8fafc!important;}
  .site-header--centered .mobile-main-nav .has-dropdown.is-open .dropdown-menu{display:block!important;}
}

@media (max-width:520px){
  .site-header--centered .brand-centered .brand-logo,.site-header--centered.is-scrolled .brand-centered .brand-logo{width:138px!important;max-width:52vw!important;}
}



/* ===========================================================================
   Correctif final header mobile Solunova — menu visible et logo contenu
   =========================================================================== */
@media (max-width: 920px) {
  body.mobile-nav-open {
    overflow-x: hidden;
  }

  .site-header.site-header--centered,
  .site-header.site-header--centered.is-scrolled {
    --header-height: 68px !important;
    min-height: 68px !important;
    height: 68px !important;
    overflow: visible !important;
    z-index: 150 !important;
  }

  .site-header--centered .header-inner-centered {
    min-height: 68px !important;
    height: 68px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .site-header--centered .brand-centered,
  .site-header--centered.is-scrolled .brand-centered {
    height: 68px !important;
    max-height: 68px !important;
    min-height: 0 !important;
    flex: 1 1 auto !important;
    max-width: calc(100% - 58px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow: hidden !important;
    transform: none !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 151 !important;
  }

  .site-header--centered .brand-centered .brand-logo,
  .site-header--centered.is-scrolled .brand-centered .brand-logo {
    width: auto !important;
    max-width: 138px !important;
    height: auto !important;
    max-height: 56px !important;
    object-fit: contain !important;
    object-position: left center !important;
    display: block !important;
  }

  .site-header--centered .nav-toggle {
    position: relative !important;
    z-index: 170 !important;
    display: inline-flex !important;
    flex: 0 0 46px !important;
    width: 46px !important;
    height: 46px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  #mainNav.mobile-main-nav {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 68px !important;
    z-index: 9999 !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 100vw !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100dvh - 68px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    border-bottom: 1px solid var(--color-line) !important;
    box-shadow: 0 18px 34px rgba(15, 23, 42, .18) !important;
    transform: none !important;
    clip: auto !important;
    clip-path: none !important;
  }

  #mainNav.mobile-main-nav.is-open,
  body.mobile-nav-open #mainNav.mobile-main-nav {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100dvh - 68px) !important;
    overflow-y: auto !important;
  }

  #mainNav.mobile-main-nav .nav-list {
    display: grid !important;
    width: min(var(--container), calc(100% - 32px)) !important;
    margin: 0 auto !important;
    padding: 14px 0 18px !important;
    gap: 6px !important;
    list-style: none !important;
  }

  #mainNav.mobile-main-nav .nav-link {
    display: flex !important;
    width: 100% !important;
    min-height: 48px !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
  }

  #mainNav.mobile-main-nav .dropdown-menu {
    position: static !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    min-width: 0 !important;
    margin: 4px 0 8px 14px !important;
    padding: 6px !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
  }

  #mainNav.mobile-main-nav .has-dropdown.is-open .dropdown-menu {
    display: block !important;
  }
}

@media (max-width: 520px) {
  .site-header--centered .brand-centered .brand-logo,
  .site-header--centered.is-scrolled .brand-centered .brand-logo {
    max-width: 128px !important;
    max-height: 54px !important;
  }
}

/* ==========================================================================
   Correctif présentation panneau menu mobile
   ========================================================================== */
@media (max-width: 920px) {
  body.mobile-nav-open #mainNav.mobile-main-nav,
  #mainNav.mobile-main-nav.is-open {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    padding: 12px 16px 22px !important;
    box-sizing: border-box !important;
  }

  body.mobile-nav-open #mainNav.mobile-main-nav .nav-list,
  #mainNav.mobile-main-nav.is-open .nav-list {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 8px !important;
    align-items: stretch !important;
    justify-items: stretch !important;
  }

  body.mobile-nav-open #mainNav.mobile-main-nav .nav-list > li,
  #mainNav.mobile-main-nav.is-open .nav-list > li {
    width: 100% !important;
  }

  body.mobile-nav-open #mainNav.mobile-main-nav .nav-link,
  #mainNav.mobile-main-nav.is-open .nav-link {
    width: 100% !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
    padding: 12px 16px !important;
    border-radius: 14px !important;
  }

  body.mobile-nav-open #mainNav.mobile-main-nav .nav-link-cta,
  #mainNav.mobile-main-nav.is-open .nav-link-cta {
    justify-content: center !important;
  }

  body.mobile-nav-open #mainNav.mobile-main-nav .dropdown-menu,
  #mainNav.mobile-main-nav.is-open .dropdown-menu {
    width: 100% !important;
    margin: 6px 0 8px 0 !important;
  }
}

/* ==========================================================================
   Correctif final menu mobile pleine largeur
   ========================================================================== */
@media (max-width: 920px) {
  html body.mobile-nav-open #mainNav,
  html body #mainNav.mobile-main-nav.is-open {
    position: fixed !important;
    top: 68px !important;
    left: 0 !important;
    right: auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    z-index: 9999 !important;

    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;

    margin: 0 !important;
    padding: 14px 16px 22px !important;
    box-sizing: border-box !important;

    background: #fff !important;
    border-bottom: 1px solid var(--color-line) !important;
    box-shadow: 0 18px 34px rgba(15, 23, 42, .18) !important;

    text-align: left !important;
    overflow-y: auto !important;
    max-height: calc(100dvh - 68px) !important;
  }

  html body.mobile-nav-open #mainNav > .nav-list,
  html body #mainNav.mobile-main-nav.is-open > .nav-list {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;

    justify-content: stretch !important;
    justify-items: stretch !important;
    align-items: stretch !important;

    text-align: left !important;
    list-style: none !important;
  }

  html body.mobile-nav-open #mainNav > .nav-list > li,
  html body #mainNav.mobile-main-nav.is-open > .nav-list > li {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  html body.mobile-nav-open #mainNav .nav-link,
  html body #mainNav.mobile-main-nav.is-open .nav-link {
    width: 100% !important;
    max-width: none !important;
    min-height: 48px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;

    margin: 0 !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;

    border-radius: 14px !important;
    text-align: left !important;
  }

  html body.mobile-nav-open #mainNav .nav-link .chevron,
  html body #mainNav.mobile-main-nav.is-open .nav-link .chevron {
    margin-left: auto !important;
  }

  html body.mobile-nav-open #mainNav .nav-link-cta,
  html body #mainNav.mobile-main-nav.is-open .nav-link-cta {
    justify-content: center !important;
    text-align: center !important;
  }

  html body.mobile-nav-open #mainNav .dropdown-menu,
  html body #mainNav.mobile-main-nav.is-open .dropdown-menu {
    width: 100% !important;
    max-width: none !important;
    margin: 6px 0 8px 0 !important;
    padding: 6px !important;
    box-sizing: border-box !important;
  }
}

/* ==========================================================================
   Correctif final global menu mobile pleine largeur
   ========================================================================== */
@media (max-width: 920px) {
  html body.mobile-nav-open #mainNav,
  html body #mainNav.mobile-main-nav.is-open {
    position: fixed !important;
    top: 68px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;

    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;

    margin: 0 !important;
    padding: 14px 16px 22px !important;
    box-sizing: border-box !important;

    background: #fff !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    max-height: calc(100dvh - 68px) !important;

    text-align: left !important;
    transform: none !important;
  }

  html body.mobile-nav-open #mainNav > ul.nav-list,
  html body #mainNav.mobile-main-nav.is-open > ul.nav-list {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    justify-items: stretch !important;

    gap: 8px !important;
    list-style: none !important;
    text-align: left !important;

    transform: none !important;
  }

  html body.mobile-nav-open #mainNav > ul.nav-list > li,
  html body #mainNav.mobile-main-nav.is-open > ul.nav-list > li {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: left !important;
    transform: none !important;
  }

  html body.mobile-nav-open #mainNav a.nav-link,
  html body.mobile-nav-open #mainNav button.nav-link,
  html body #mainNav.mobile-main-nav.is-open a.nav-link,
  html body #mainNav.mobile-main-nav.is-open button.nav-link {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    min-height: 48px !important;

    align-items: center !important;
    justify-content: flex-start !important;

    margin: 0 !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;

    border-radius: 14px !important;
    text-align: left !important;

    transform: none !important;
  }

  html body.mobile-nav-open #mainNav button.nav-link .chevron,
  html body #mainNav.mobile-main-nav.is-open button.nav-link .chevron {
    margin-left: auto !important;
    flex: 0 0 auto !important;
  }

  html body.mobile-nav-open #mainNav a.nav-link-cta,
  html body #mainNav.mobile-main-nav.is-open a.nav-link-cta {
    justify-content: center !important;
    text-align: center !important;
  }

  html body.mobile-nav-open #mainNav .dropdown-menu,
  html body #mainNav.mobile-main-nav.is-open .dropdown-menu {
    position: static !important;
    display: none !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    margin: 6px 0 8px 0 !important;
    padding: 6px !important;
    box-sizing: border-box !important;

    transform: none !important;
  }

  html body.mobile-nav-open #mainNav .has-dropdown.is-open .dropdown-menu,
  html body #mainNav.mobile-main-nav.is-open .has-dropdown.is-open .dropdown-menu {
    display: block !important;
  }
}

/* ======================================================================
   Ajustement visuel header mobile raffiné
   Conserve le menu mobile validé en pleine largeur.
   ====================================================================== */
@media (max-width: 920px) {
  .site-header.site-header--centered,
  .site-header.site-header--centered.is-scrolled {
    --header-height: 74px !important;
    min-height: 74px !important;
    height: 74px !important;
    background: rgba(255,255,255,.97) !important;
    backdrop-filter: saturate(135%) blur(5px) !important;
    border-bottom: 1px solid rgba(15,23,42,.08) !important;
    box-shadow: 0 6px 18px rgba(15,23,42,.05) !important;
    overflow: visible !important;
    z-index: 150 !important;
  }

  .site-header--centered .header-inner-centered {
    min-height: 74px !important;
    height: 74px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 0 16px !important;
    overflow: hidden !important;
  }

  .site-header--centered .brand-centered,
  .site-header--centered.is-scrolled .brand-centered {
    flex: 0 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 185px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 8px 12px !important;
    margin: 0 !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, rgba(3,105,161,.06), rgba(255,255,255,.96)) !important;
    border: 1px solid rgba(3,105,161,.10) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72) !important;
    transform: none !important;
    overflow: hidden !important;
  }

  .site-header--centered .brand-centered .brand-logo,
  .site-header--centered.is-scrolled .brand-centered .brand-logo {
    width: auto !important;
    max-width: 138px !important;
    height: auto !important;
    max-height: 52px !important;
    display: block !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .site-header--centered .nav-toggle {
    position: relative !important;
    z-index: 170 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 46px !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    border: 1px solid rgba(15,23,42,.10) !important;
    box-shadow: 0 5px 14px rgba(15,23,42,.07) !important;
  }

  html body.mobile-nav-open #mainNav,
  html body #mainNav.mobile-main-nav.is-open {
    top: 74px !important;
    max-height: calc(100dvh - 74px) !important;
  }
}

@media (max-width: 520px) {
  .site-header--centered .brand-centered,
  .site-header--centered.is-scrolled .brand-centered {
    max-width: 172px !important;
    padding: 8px 10px !important;
  }

  .site-header--centered .brand-centered .brand-logo,
  .site-header--centered.is-scrolled .brand-centered .brand-logo {
    max-width: 132px !important;
    max-height: 50px !important;
  }
}


/* ==========================================================================
   Header glassmorphism premium — variables
   ========================================================================== */
:root{
  --header-glass-bg:rgba(13,58,92,.65);
  --header-glass-border:rgba(140,220,240,.25);
  --header-glass-blur:blur(20px) saturate(140%);
  --header-shadow-scrolled:0 8px 24px rgba(8,30,50,.18);
  --header-transition:background 280ms cubic-bezier(.4,0,.2,1),-webkit-backdrop-filter 280ms cubic-bezier(.4,0,.2,1),backdrop-filter 280ms cubic-bezier(.4,0,.2,1),border-color 280ms cubic-bezier(.4,0,.2,1),box-shadow 280ms cubic-bezier(.4,0,.2,1),min-height 280ms cubic-bezier(.4,0,.2,1),height 280ms cubic-bezier(.4,0,.2,1),transform 280ms cubic-bezier(.4,0,.2,1);
  --header-text:#fff;
  --header-text-shadow:0 1px 2px rgba(0,0,0,.25);
  --header-glass-height:92px;
  --header-glass-height-scrolled:82px;
  --header-mobile-height:76px;
}

/* ==========================================================================
   Header glassmorphism premium — base, états et desktop
   ========================================================================== */
.site-header.site-header--centered{
  position:fixed!important;top:0!important;left:0!important;right:0!important;z-index:100!important;
  min-height:var(--header-glass-height)!important;height:var(--header-glass-height)!important;overflow:visible!important;
  transition:var(--header-transition)!important;opacity:0;background:transparent!important;border-bottom:1px solid transparent!important;box-shadow:none!important;
  -webkit-backdrop-filter:none!important;backdrop-filter:none!important;
}
body.is-loaded .site-header.site-header--centered{animation:solunovaHeaderIn 600ms cubic-bezier(.22,1,.36,1) forwards;}
body[data-header-context="plain"] .site-header.site-header--centered,.site-header.site-header--centered.is-scrolled{
  background:var(--header-glass-bg)!important;border-bottom-color:var(--header-glass-border)!important;-webkit-backdrop-filter:var(--header-glass-blur)!important;backdrop-filter:var(--header-glass-blur)!important;
}
.site-header.site-header--centered.is-scrolled{min-height:var(--header-glass-height-scrolled)!important;height:var(--header-glass-height-scrolled)!important;box-shadow:var(--header-shadow-scrolled)!important;}
body[data-header-context="plain"] main{padding-top:var(--header-glass-height);}
.site-header--centered .header-inner-centered{min-height:100%!important;height:100%!important;align-items:center!important;transition:var(--header-transition)!important;}
.site-header--centered .desktop-main-nav .nav-link{color:var(--header-text)!important;text-shadow:var(--header-text-shadow)!important;}
.site-header--centered .desktop-main-nav .nav-link:hover,.site-header--centered .desktop-main-nav .nav-link:focus-visible,.site-header--centered .desktop-main-nav .nav-link.is-active{color:#fff!important;background:rgba(255,255,255,.14)!important;}
.site-header--centered .desktop-main-nav .nav-link-cta{background:rgba(255,255,255,.18)!important;border-color:rgba(255,255,255,.34)!important;color:#fff!important;box-shadow:none!important;}
.site-header--centered .brand-centered,.site-header--centered.is-scrolled .brand-centered{background:rgba(255,255,255,.96)!important;border:1px solid rgba(255,255,255,.70)!important;border-radius:0 0 28px 28px!important;box-shadow:0 14px 32px rgba(2,6,23,.16)!important;overflow:hidden!important;}
body.is-loaded .site-header--centered .brand-centered{animation:solunovaBrandIn 700ms cubic-bezier(.22,1,.36,1) 100ms both;}

/* ==========================================================================
   Header glassmorphism premium — burger
   ========================================================================== */
.site-header--centered .nav-toggle{
  position:relative!important;width:44px!important;height:44px!important;min-width:44px!important;min-height:44px!important;border-radius:999px!important;
  display:inline-flex!important;align-items:center!important;justify-content:center!important;color:#fff!important;background:rgba(13,58,92,.42)!important;border:1px solid rgba(255,255,255,.30)!important;box-shadow:0 8px 20px rgba(8,30,50,.14)!important;
  -webkit-backdrop-filter:var(--header-glass-blur)!important;backdrop-filter:var(--header-glass-blur)!important;transition:background 220ms ease,transform 120ms ease,box-shadow 220ms ease,border-color 220ms ease!important;
}
body.is-loaded .site-header--centered .nav-toggle{animation:solunovaBurgerIn 500ms cubic-bezier(.22,1,.36,1) 250ms both;}
.site-header--centered .nav-toggle:hover,.site-header--centered .nav-toggle:focus-visible{background:rgba(100,220,240,.18)!important;border-color:rgba(140,220,240,.42)!important;}
.site-header--centered .nav-toggle:focus-visible{outline:2px solid rgba(140,220,240,.9)!important;outline-offset:3px!important;}
.site-header--centered .nav-toggle:active{transform:scale(.94)!important;}
.site-header--centered .nav-toggle-lines,.site-header--centered .nav-toggle-lines::before,.site-header--centered .nav-toggle-lines::after{width:22px!important;height:2px!important;border-radius:999px!important;background:#fff!important;transition:transform 350ms cubic-bezier(.68,-.55,.27,1.55),opacity 220ms ease,background 220ms ease!important;}
.site-header--centered .nav-toggle-lines::before{top:-6px!important;}.site-header--centered .nav-toggle-lines::after{top:6px!important;}
.site-header--centered .nav-toggle:hover .nav-toggle-lines{transform:rotate(2deg)!important;}
.site-header--centered .nav-toggle[aria-expanded="true"] .nav-toggle-lines{background:transparent!important;}
.site-header--centered .nav-toggle[aria-expanded="true"] .nav-toggle-lines::before{top:0!important;transform:rotate(45deg)!important;}
.site-header--centered .nav-toggle[aria-expanded="true"] .nav-toggle-lines::after{top:0!important;transform:rotate(-45deg)!important;}

/* ==========================================================================
   Header glassmorphism premium — mobile et menu pleine largeur validé
   ========================================================================== */
@media (max-width:920px){
  .site-header.site-header--centered,.site-header.site-header--centered.is-scrolled{min-height:var(--header-mobile-height)!important;height:var(--header-mobile-height)!important;overflow:visible!important;}
  body[data-header-context="plain"] main{padding-top:var(--header-mobile-height);}
  .site-header--centered .header-inner-centered{min-height:var(--header-mobile-height)!important;height:var(--header-mobile-height)!important;padding:0 14px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:12px!important;overflow:visible!important;}
  .site-header--centered .brand-centered,.site-header--centered.is-scrolled .brand-centered{flex:0 1 auto!important;width:auto!important;max-width:178px!important;height:auto!important;max-height:60px!important;padding:7px 10px!important;border-radius:18px!important;transform:none!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;background:rgba(255,255,255,.95)!important;border:1px solid rgba(255,255,255,.72)!important;box-shadow:0 8px 18px rgba(8,30,50,.12),inset 0 1px 0 rgba(255,255,255,.8)!important;overflow:hidden!important;}
  .site-header--centered .brand-centered .brand-logo,.site-header--centered.is-scrolled .brand-centered .brand-logo{width:auto!important;max-width:136px!important;height:auto!important;max-height:50px!important;object-fit:contain!important;object-position:left center!important;display:block!important;}
  .site-header--centered .nav-toggle{width:48px!important;height:48px!important;flex:0 0 48px!important;z-index:170!important;}
  html body.mobile-nav-open #mainNav,html body #mainNav.mobile-main-nav.is-open{position:fixed!important;top:var(--header-mobile-height)!important;left:0!important;right:0!important;width:100vw!important;max-width:100vw!important;min-width:100vw!important;z-index:90!important;display:block!important;visibility:visible!important;opacity:1!important;pointer-events:auto!important;margin:0!important;padding:14px 16px 22px!important;box-sizing:border-box!important;background:rgba(13,58,92,.94)!important;-webkit-backdrop-filter:var(--header-glass-blur)!important;backdrop-filter:var(--header-glass-blur)!important;border-bottom:1px solid var(--header-glass-border)!important;box-shadow:var(--header-shadow-scrolled)!important;max-height:calc(100dvh - var(--header-mobile-height))!important;overflow-y:auto!important;text-align:left!important;transform:none!important;}
  html body.mobile-nav-open #mainNav > ul.nav-list,html body #mainNav.mobile-main-nav.is-open > ul.nav-list{width:100%!important;max-width:none!important;min-width:0!important;margin:0!important;padding:0!important;display:flex!important;flex-direction:column!important;align-items:stretch!important;justify-content:flex-start!important;justify-items:stretch!important;gap:8px!important;list-style:none!important;text-align:left!important;transform:none!important;}
  html body.mobile-nav-open #mainNav > ul.nav-list > li,html body #mainNav.mobile-main-nav.is-open > ul.nav-list > li{display:block!important;width:100%!important;max-width:none!important;min-width:0!important;margin:0!important;padding:0!important;text-align:left!important;transform:none!important;}
  html body.mobile-nav-open #mainNav a.nav-link,html body.mobile-nav-open #mainNav button.nav-link,html body #mainNav.mobile-main-nav.is-open a.nav-link,html body #mainNav.mobile-main-nav.is-open button.nav-link{display:flex!important;width:100%!important;max-width:none!important;min-width:0!important;min-height:48px!important;align-items:center!important;justify-content:flex-start!important;margin:0!important;padding:12px 16px!important;box-sizing:border-box!important;border-radius:14px!important;color:#fff!important;text-align:left!important;text-shadow:var(--header-text-shadow)!important;background:rgba(255,255,255,.08)!important;transform:none!important;}
  html body.mobile-nav-open #mainNav button.nav-link .chevron,html body #mainNav.mobile-main-nav.is-open button.nav-link .chevron{margin-left:auto!important;flex:0 0 auto!important;}
  html body.mobile-nav-open #mainNav a.nav-link-cta,html body #mainNav.mobile-main-nav.is-open a.nav-link-cta{justify-content:center!important;text-align:center!important;background:rgba(100,220,240,.20)!important;border-color:rgba(140,220,240,.30)!important;}
  html body.mobile-nav-open #mainNav .dropdown-menu,html body #mainNav.mobile-main-nav.is-open .dropdown-menu{position:static!important;display:none!important;width:100%!important;max-width:none!important;min-width:0!important;margin:6px 0 8px!important;padding:6px!important;box-sizing:border-box!important;border-color:rgba(255,255,255,.16)!important;background:rgba(255,255,255,.08)!important;transform:none!important;}
  html body.mobile-nav-open #mainNav .dropdown-menu a,html body #mainNav.mobile-main-nav.is-open .dropdown-menu a{color:#fff!important;}
  html body.mobile-nav-open #mainNav .has-dropdown.is-open .dropdown-menu,html body #mainNav.mobile-main-nav.is-open .has-dropdown.is-open .dropdown-menu{display:block!important;}
}
@media (max-width:520px){.site-header--centered .brand-centered,.site-header--centered.is-scrolled .brand-centered{max-width:168px!important;padding:7px 9px!important}.site-header--centered .brand-centered .brand-logo,.site-header--centered.is-scrolled .brand-centered .brand-logo{max-width:128px!important;max-height:48px!important}}

/* ==========================================================================
   Header glassmorphism premium — animations, fallback, reduced motion
   ========================================================================== */
@keyframes solunovaHeaderIn{from{opacity:0}to{opacity:1}}
@keyframes solunovaBrandIn{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}
@keyframes solunovaBurgerIn{from{opacity:0;transform:scale(.92)}to{opacity:1;transform:scale(1)}}
@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))){.site-header.site-header--centered.is-scrolled,body[data-header-context="plain"] .site-header.site-header--centered{background:rgba(13,58,92,.92)!important}}
@media (prefers-reduced-motion:reduce){.site-header.site-header--centered,.site-header--centered .brand-centered,.site-header--centered .nav-toggle,.site-header--centered .nav-toggle-lines,.site-header--centered .nav-toggle-lines::before,.site-header--centered .nav-toggle-lines::after{animation:none!important;transition:none!important;opacity:1!important;transform:none!important}}
.side-panel{z-index:200!important}.panel-overlay{z-index:190!important}

/* ==========================================================================
   Corrections critiques header glass — Bugs 1 à 7
   Placé en fin de fichier pour neutraliser les couches antérieures sans
   modifier l'ossature HTML ni le menu mobile validé.
   ========================================================================== */
:root{
  --header-glass-height:100px; /* fix Bug 6 */
  --header-glass-height-scrolled:86px; /* fix Bug 6 */
  --header-mobile-height:76px;
  --hero-top-padding:calc(var(--header-mobile-height) + 16px); /* fix Bug 1 */
}

@media (min-width:921px){
  .site-header.site-header--centered{
    min-height:var(--header-glass-height)!important;
    height:var(--header-glass-height)!important;
    overflow:visible!important;
  }

  .site-header.site-header--centered.is-scrolled{
    min-height:var(--header-glass-height-scrolled)!important;
    height:var(--header-glass-height-scrolled)!important;
  }

  .site-header--centered .header-inner-centered{
    min-height:100%!important;
    height:100%!important;
    display:flex!important; /* fix Bug 5 */
    flex-direction:row!important; /* fix Bug 5 */
    flex-wrap:nowrap!important; /* fix Bug 5 */
    align-items:center!important;
    justify-content:space-between!important;
    gap:24px!important;
    overflow:visible!important;
  }

  .site-header--centered .desktop-main-nav{
    display:block!important;
    visibility:visible!important;
    min-width:0!important;
    flex:1 1 0!important;
  }

  .site-header--centered .desktop-main-nav-left{
    display:flex!important;
    justify-content:flex-end!important; /* fix Bug 5 */
  }

  .site-header--centered .desktop-main-nav-right{
    display:flex!important;
    justify-content:flex-start!important; /* fix Bug 5 */
  }

  .site-header--centered .desktop-main-nav .nav-list{
    display:flex!important;
    flex-direction:row!important;
    flex-wrap:nowrap!important;
    align-items:center!important;
    gap:4px!important;
    width:auto!important;
    margin:0!important;
    padding:0!important;
  }

  .site-header--centered .nav-toggle{
    display:none!important; /* fix Bug 4 */
  }

  .site-header--centered .brand-centered,
  .site-header--centered.is-scrolled .brand-centered{
    flex:0 0 auto!important;
    width:156px!important;
    max-width:156px!important;
    min-width:0!important;
    padding:10px 12px!important;
    border-radius:0 0 24px 24px!important;
    transform:translateY(6px)!important; /* fix Bug 6 */
    overflow:hidden!important;
  }

  .site-header--centered .brand-centered .brand-logo{
    width:132px!important;
    max-width:132px!important;
    height:auto!important;
    max-height:72px!important;
    object-fit:contain!important;
  }

  .site-header--centered.is-scrolled .brand-centered{
    width:132px!important;
    max-width:132px!important;
    padding:7px 10px!important;
    transform:translateY(3px)!important;
  }

  .site-header--centered.is-scrolled .brand-centered .brand-logo{
    width:108px!important;
    max-width:108px!important;
    max-height:58px!important;
  }

  body[data-header-context="hero"] .home-hero-inner{
    padding-top:calc(var(--header-glass-height) + 24px)!important; /* fix Bug 1 */
  }
}

@media (max-width:920px){
  .site-header--centered .desktop-main-nav,
  .site-header--centered .desktop-main-nav-left,
  .site-header--centered .desktop-main-nav-right{
    display:none!important; /* fix Bug 3 */
    visibility:hidden!important;
  }

  body[data-header-context="hero"] .home-hero-inner{
    padding-top:var(--hero-top-padding)!important; /* fix Bug 1 */
  }

  body[data-header-context="hero"]:not(.mobile-nav-open) .site-header:not(.is-scrolled) .nav-toggle{
    background:rgba(8,30,50,.58)!important; /* fix Bug 2 */
    border-color:rgba(255,255,255,.45)!important; /* fix Bug 2 */
    color:#fff!important;
    -webkit-backdrop-filter:var(--header-glass-blur)!important;
    backdrop-filter:var(--header-glass-blur)!important;
  }

  .site-header.site-header--centered,
  .site-header.site-header--centered.is-scrolled{
    min-height:var(--header-mobile-height)!important;
    height:var(--header-mobile-height)!important;
    overflow:visible!important;
  }

  .site-header--centered .header-inner-centered{
    min-height:var(--header-mobile-height)!important;
    height:var(--header-mobile-height)!important;
    display:flex!important;
    flex-direction:row!important;
    flex-wrap:nowrap!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:12px!important;
    padding:0 14px!important;
    overflow:visible!important;
  }

  .site-header--centered .brand-centered,
  .site-header--centered.is-scrolled .brand-centered{
    flex:0 1 auto!important;
    width:auto!important;
    max-width:168px!important;
    max-height:60px!important;
    padding:7px 9px!important;
    border-radius:18px!important;
    transform:none!important;
  }

  .site-header--centered .brand-centered .brand-logo,
  .site-header--centered.is-scrolled .brand-centered .brand-logo{
    max-width:128px!important;
    max-height:48px!important;
  }

  .site-header--centered .nav-toggle{
    display:inline-flex!important;
    width:48px!important;
    height:48px!important;
    flex:0 0 48px!important;
    z-index:170!important;
  }

  html body.mobile-nav-open #mainNav,
  html body #mainNav.mobile-main-nav.is-open{
    top:var(--header-mobile-height)!important;
    min-height:calc(100dvh - var(--header-mobile-height))!important; /* fix Bug 7 */
    max-height:calc(100dvh - var(--header-mobile-height))!important;
    background:rgba(13,58,92,.98)!important; /* fix Bug 7 */
    z-index:90!important;
    overflow-y:auto!important;
  }
}

@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))){
  .site-header.site-header--centered.is-scrolled,
  body[data-header-context="plain"] .site-header.site-header--centered{
    background:rgba(13,58,92,.92)!important;
  }
}

/* ==========================================================================
   Correctif desktop header — séparation logo central / hero
   Objectif : conserver le header glass existant tout en évitant que le logo
   central descende trop près de la kicker du hero sur les vues larges.
   Mobile et menu mobile inchangés.
   ========================================================================== */
@media (min-width: 921px) {
  .site-header--centered .brand-centered {
    transform: translateY(0) !important;
  }

  .site-header--centered.is-scrolled .brand-centered {
    transform: translateY(0) !important;
  }

  body[data-header-context="hero"] .home-hero-inner {
    padding-top: calc(var(--header-glass-height) + 42px) !important;
  }
}

/* Pages légales */
.legal-section {
  background: #f7fafc;
}

.legal-layout {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.legal-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.legal-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.legal-card p {
  margin: 0 0 10px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.form-rgpd-note {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
}

.form-rgpd-note a {
  font-weight: 700;
}

/* ==========================================================================
   Bandeaux internes Solunova — alignement strict sur le hero Accueil
   Périmètre : uniquement les sections d’introduction marquées .internal-hero.
   ========================================================================== */
.internal-hero{
  position:relative!important;
  isolation:isolate!important;
  overflow:hidden!important;
  min-height:calc(100vh - var(--header-height))!important;
  color:#fff!important;
  background:var(--color-primary-deep)!important;
}

.internal-hero .hero-bg{
  display:block!important;
}

.internal-hero .internal-hero-inner{
  position:relative!important;
  z-index:1!important;
  min-height:640px!important;
  display:grid!important;
  grid-template-columns:minmax(0,1fr) 330px!important;
  align-items:center!important;
  gap:56px!important;
  padding:82px 0 150px!important;
}

.internal-hero.internal-hero--single .internal-hero-inner,
.internal-hero .internal-hero-inner--single{
  grid-template-columns:minmax(0,860px)!important;
  justify-content:start!important;
}

.internal-hero .internal-hero-content{
  max-width:850px!important;
}

.internal-hero .breadcrumb{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:8px!important;
  align-items:center!important;
  margin:0 0 18px!important;
  font-size:13px!important;
  font-weight:850!important;
  color:rgba(240,249,255,.78)!important;
}

.internal-hero .breadcrumb a{
  color:#fff!important;
  text-decoration:underline!important;
  text-underline-offset:4px!important;
}

.internal-hero .eyebrow,
.internal-hero .hero-kicker,
.legacy-informatique .internal-hero .eyebrow,
.legacy-informatique .internal-hero .hero-kicker,
.legacy-telephonie .internal-hero .eyebrow,
.legacy-telephonie .internal-hero .hero-kicker,
.bureau-ext .internal-hero .eyebrow,
.bureau-ext .internal-hero .hero-kicker{
  display:inline-block!important;
  margin:0!important;
  font-size:12px!important;
  font-weight:950!important;
  letter-spacing:.18em!important;
  text-transform:uppercase!important;
  color:#98f2ff!important;
}

.internal-hero h1,
.legacy-informatique .internal-hero h1,
.legacy-telephonie .internal-hero h1,
.bureau-ext .internal-hero h1{
  margin:22px 0 0!important;
  max-width:860px!important;
  font-size:clamp(42px,6.2vw,72px)!important;
  line-height:1.02!important;
  letter-spacing:-.055em!important;
  color:#fff!important;
  text-wrap:balance!important;
  text-shadow:0 10px 34px rgba(2,6,23,.38)!important;
}

.internal-hero .internal-hero-content > p:not(.eyebrow),
.internal-hero .hero-text,
.legacy-informatique .internal-hero .internal-hero-content > p,
.legacy-telephonie .internal-hero .internal-hero-content > p,
.bureau-ext .internal-hero .hero-text{
  margin:24px 0 0!important;
  max-width:690px!important;
  font-size:19px!important;
  line-height:1.8!important;
  color:rgba(240,249,255,.94)!important;
}

.internal-hero .hero-actions,
.internal-hero .actions,
.internal-hero .internal-hero-actions,
.legacy-informatique .internal-hero .hero-actions,
.legacy-telephonie .internal-hero .hero-actions,
.bureau-ext .internal-hero .hero-actions{
  display:flex!important;
  flex-wrap:wrap!important;
  align-items:center!important;
  gap:14px!important;
  margin-top:30px!important;
}

.internal-hero .btn,
.legacy-informatique .internal-hero .btn,
.legacy-telephonie .internal-hero .btn,
.bureau-ext .internal-hero .btn{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  min-height:50px!important;
  border-radius:999px!important;
  padding:14px 20px!important;
  border:1px solid transparent!important;
  font-size:14px!important;
  font-weight:950!important;
  cursor:pointer!important;
  transition:.18s ease!important;
  text-align:center!important;
  white-space:nowrap!important;
}

.internal-hero .btn-primary,
.internal-hero .btn-light,
.legacy-informatique .internal-hero .btn-primary,
.legacy-informatique .internal-hero .btn-light,
.legacy-telephonie .internal-hero .btn-primary,
.legacy-telephonie .internal-hero .btn-light,
.bureau-ext .internal-hero .btn-primary,
.bureau-ext .internal-hero .btn-light{
  background:#fff!important;
  color:var(--color-primary-deep)!important;
  border-color:transparent!important;
  box-shadow:0 14px 32px rgba(2,6,23,.16)!important;
}

.internal-hero .btn-primary:hover,
.internal-hero .btn-light:hover,
.legacy-informatique .internal-hero .btn-primary:hover,
.legacy-informatique .internal-hero .btn-light:hover,
.legacy-telephonie .internal-hero .btn-primary:hover,
.legacy-telephonie .internal-hero .btn-light:hover,
.bureau-ext .internal-hero .btn-primary:hover,
.bureau-ext .internal-hero .btn-light:hover{
  background:#f8fafc!important;
}

.internal-hero .btn-secondary,
.internal-hero .btn-outline,
.internal-hero .btn-ghost,
.legacy-informatique .internal-hero .btn-secondary,
.legacy-informatique .internal-hero .btn-outline,
.legacy-telephonie .internal-hero .btn-secondary,
.legacy-telephonie .internal-hero .btn-outline,
.bureau-ext .internal-hero .btn-secondary,
.bureau-ext .internal-hero .btn-outline{
  background:rgba(255,255,255,.08)!important;
  color:#fff!important;
  border-color:rgba(255,255,255,.36)!important;
  box-shadow:none!important;
}

.internal-hero .btn-secondary:hover,
.internal-hero .btn-outline:hover,
.internal-hero .btn-ghost:hover,
.legacy-informatique .internal-hero .btn-secondary:hover,
.legacy-informatique .internal-hero .btn-outline:hover,
.legacy-telephonie .internal-hero .btn-secondary:hover,
.legacy-telephonie .internal-hero .btn-outline:hover,
.bureau-ext .internal-hero .btn-secondary:hover,
.bureau-ext .internal-hero .btn-outline:hover{
  background:rgba(255,255,255,.16)!important;
}

.internal-hero .text-link-btn{
  color:#fff!important;
  font-weight:950!important;
  text-decoration:underline!important;
  text-underline-offset:5px!important;
}

.internal-hero .internal-hero-aside,
.internal-hero .test-card,
.internal-hero .hero-metrics,
.legacy-informatique .internal-hero .hero-metrics,
.legacy-telephonie .internal-hero .hero-metrics,
.bureau-ext .internal-hero .hero-metrics{
  justify-self:end!important;
  width:100%!important;
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:10px!important;
  border:1px solid rgba(255,255,255,.20)!important;
  border-radius:34px!important;
  background:rgba(255,255,255,.12)!important;
  box-shadow:0 28px 70px rgba(2,6,23,.25)!important;
  -webkit-backdrop-filter:blur(8px)!important;
  backdrop-filter:blur(8px)!important;
  overflow:hidden!important;
}

.internal-hero .test-card,
.internal-hero aside.internal-hero-aside{
  grid-template-columns:1fr!important;
  gap:12px!important;
  padding:28px 26px!important;
}

.internal-hero .test-card h2,
.internal-hero aside.internal-hero-aside h2{
  margin:0!important;
  font-size:clamp(26px,3vw,36px)!important;
  line-height:1.08!important;
  letter-spacing:-.04em!important;
  color:#fff!important;
  text-shadow:0 10px 34px rgba(2,6,23,.25)!important;
}

.internal-hero .test-card p,
.internal-hero aside.internal-hero-aside p{
  margin:0!important;
  font-size:15px!important;
  line-height:1.75!important;
  color:rgba(240,249,255,.88)!important;
}

.internal-hero .hero-metric,
.legacy-informatique .internal-hero .hero-metric,
.legacy-telephonie .internal-hero .hero-metric,
.bureau-ext .internal-hero .hero-metric{
  min-height:120px!important;
  padding:24px!important;
  background:rgba(255,255,255,.05)!important;
  color:#fff!important;
}

.internal-hero .hero-metric-value,
.legacy-informatique .internal-hero .hero-metric-value,
.legacy-telephonie .internal-hero .hero-metric-value{
  font-size:42px!important;
  font-weight:950!important;
  letter-spacing:-.05em!important;
  line-height:1!important;
  color:#fff!important;
}

.internal-hero .hero-metric-value .unit,
.legacy-informatique .internal-hero .hero-metric-value .unit,
.legacy-telephonie .internal-hero .hero-metric-value .unit{
  margin-left:8px!important;
  font-size:15px!important;
  font-weight:900!important;
  letter-spacing:.02em!important;
  color:#bae6fd!important;
}

.internal-hero .hero-metric-label,
.legacy-informatique .internal-hero .hero-metric-label,
.legacy-telephonie .internal-hero .hero-metric-label,
.bureau-ext .internal-hero .hero-metric span{
  display:block!important;
  margin-top:10px!important;
  font-size:13px!important;
  line-height:1.6!important;
  color:rgba(240,249,255,.76)!important;
}

.bureau-ext .internal-hero .hero-metric strong{
  display:block!important;
  font-size:21px!important;
  line-height:1.15!important;
  letter-spacing:-.035em!important;
  color:#fff!important;
}

.internal-hero .hero-wave{
  display:block!important;
}

body[data-header-context="hero"] .internal-hero .internal-hero-inner{
  padding-top:calc(var(--header-glass-height) + 42px)!important;
}

@media (max-width:1100px){
  .internal-hero .internal-hero-inner{
    grid-template-columns:1fr!important;
    min-height:590px!important;
    gap:34px!important;
    padding-top:70px!important;
  }

  .internal-hero .internal-hero-aside,
  .internal-hero .test-card,
  .internal-hero .hero-metrics,
  .legacy-informatique .internal-hero .hero-metrics,
  .legacy-telephonie .internal-hero .hero-metrics,
  .bureau-ext .internal-hero .hero-metrics{
    justify-self:start!important;
    max-width:620px!important;
  }
}

@media (max-width:920px){
  body[data-header-context="hero"] .internal-hero .internal-hero-inner{
    padding-top:var(--hero-top-padding)!important;
  }
}

@media (max-width:680px){
  .internal-hero{
    min-height:auto!important;
  }

  .internal-hero .internal-hero-inner{
    min-height:540px!important;
    padding:52px 0 118px!important;
  }

  body[data-header-context="hero"] .internal-hero .internal-hero-inner{
    padding-top:var(--hero-top-padding)!important;
  }

  .internal-hero h1,
  .legacy-informatique .internal-hero h1,
  .legacy-telephonie .internal-hero h1,
  .bureau-ext .internal-hero h1{
    font-size:clamp(36px,12vw,52px)!important;
    line-height:1.03!important;
  }

  .internal-hero .internal-hero-content > p:not(.eyebrow),
  .internal-hero .hero-text,
  .legacy-informatique .internal-hero .internal-hero-content > p,
  .legacy-telephonie .internal-hero .internal-hero-content > p,
  .bureau-ext .internal-hero .hero-text{
    font-size:17px!important;
    line-height:1.72!important;
  }

  .internal-hero .hero-actions,
  .internal-hero .actions,
  .internal-hero .internal-hero-actions,
  .legacy-informatique .internal-hero .hero-actions,
  .legacy-telephonie .internal-hero .hero-actions,
  .bureau-ext .internal-hero .hero-actions{
    display:grid!important;
    width:100%!important;
  }

  .internal-hero .btn,
  .legacy-informatique .internal-hero .btn,
  .legacy-telephonie .internal-hero .btn,
  .bureau-ext .internal-hero .btn{
    width:100%!important;
  }

  .internal-hero .hero-metrics,
  .legacy-informatique .internal-hero .hero-metrics,
  .legacy-telephonie .internal-hero .hero-metrics,
  .bureau-ext .internal-hero .hero-metrics{
    grid-template-columns:1fr!important;
  }
}

.internal-hero{
  padding:0!important;
}

/* Support quick panel technicians */
.side-panel[data-panel="support"] .panel-technician-list{display:grid;gap:10px;margin-top:14px}
.side-panel[data-panel="support"] .panel-technician-card{display:grid;grid-template-columns:56px minmax(0,1fr);grid-template-areas:"photo content" "tools tools";gap:8px 10px;align-items:center;padding:10px;border:1px solid var(--color-line);border-radius:16px;background:#fff;box-shadow:0 8px 20px rgba(15,23,42,.07)}
.side-panel[data-panel="support"] .panel-technician-photo{grid-area:photo;display:block;width:56px;height:56px;object-fit:contain;object-position:center bottom;border-radius:14px;background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);border:1px solid var(--color-line)}
.side-panel[data-panel="support"] .panel-technician-content{grid-area:content;display:flex;min-width:0;flex-direction:column;justify-content:center}
.side-panel[data-panel="support"] .panel-technician-content h3{font-size:16px;line-height:1.15;color:var(--color-primary-deep)}
.side-panel[data-panel="support"] .panel-technician-content p{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;margin:3px 0 0;font-size:12px;line-height:1.25;color:#475569;font-weight:800}
.side-panel[data-panel="support"] .panel-technician-tools{grid-area:tools;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:0;padding-top:0}
.side-panel[data-panel="support"] .panel-technician-tools .btn{min-height:38px;padding:8px 9px;font-size:12px;line-height:1.15;white-space:normal}
@media (max-width:360px){
  .side-panel[data-panel="support"] .panel-technician-card{grid-template-columns:50px minmax(0,1fr);gap:7px 9px;padding:9px}
  .side-panel[data-panel="support"] .panel-technician-photo{width:50px;height:50px;border-radius:12px}
  .side-panel[data-panel="support"] .panel-technician-content h3{font-size:15px}
  .side-panel[data-panel="support"] .panel-technician-content p{font-size:11px}
  .side-panel[data-panel="support"] .panel-technician-tools .btn{min-height:36px;padding:7px 8px;font-size:11.5px}
}
.baseline-unavailable {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #b7791f;
  border-radius: 0.5rem;
  background: #fffaf0;
  color: #744210;
  font-weight: 700;
}

span[data-baseline-disabled="true"] {
  cursor: default;
  opacity: 0.7;
}

.btn[data-baseline-disabled="true"]:disabled,
.btn[data-baseline-disabled="true"]:disabled:hover {
  transform: none;
  border-color: #cbd5e1;
  background: #e2e8f0;
  color: #475569;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

/* ==========================================================================
   Correctif responsive global - anti-debordement mobile
   Perimetre : pages publiques principales, sans modification fonctionnelle.
   ========================================================================== */
main,
section,
.container,
.card,
.proof-card,
.competence-card,
.home-solution-card,
.home-final-cta,
.section-heading,
.split-layout,
.form-grid,
.footer-grid,
.support-technicians-section .technician-card,
.support-technicians-section .technician-content,
.internal-hero .internal-hero-content,
.internal-hero .internal-hero-aside,
.internal-hero .test-card,
.internal-hero .hero-metrics,
.bureau-ext .card,
.bureau-ext .cta-band,
.bureau-ext .estimate-form,
.bureau-ext .estimate-result {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
a,
button,
.btn,
.text-link,
.section-lead,
.section-text,
.hero-text,
.breadcrumb,
.footer-links,
.footer-meta,
.card,
.proof-card,
.home-solution-card,
.support-technicians-section .technician-role,
.internal-hero .hero-metric,
.bureau-ext .hero-metric,
.bureau-ext .result-value,
.bureau-ext .result-line,
.bureau-ext .detail-row {
  overflow-wrap: anywhere;
}

.btn,
.internal-hero .btn,
.legacy-informatique .internal-hero .btn,
.legacy-telephonie .internal-hero .btn,
.bureau-ext .internal-hero .btn {
  max-width: 100%;
}

@media (max-width: 680px) {
  .hero-actions,
  .intro-actions,
  .actions,
  .internal-hero .hero-actions,
  .internal-hero .actions,
  .internal-hero .internal-hero-actions,
  .legacy-informatique .internal-hero .hero-actions,
  .legacy-telephonie .internal-hero .hero-actions,
  .bureau-ext .internal-hero .hero-actions,
  .bureau-ext .cta-actions,
  .modal-actions {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 100%;
  }

  .btn,
  .internal-hero .btn,
  .legacy-informatique .internal-hero .btn,
  .legacy-telephonie .internal-hero .btn,
  .bureau-ext .internal-hero .btn {
    min-width: 0 !important;
    white-space: normal !important;
  }

  .text-link {
    max-width: 100%;
  }

  .signature-lines {
    grid-template-columns: 1fr !important;
  }

  .support-technicians-section .technician-card {
    grid-template-columns: minmax(0, 1fr);
  }
}
