/* ============ TOKENS ============ */
:root{
  --off-white:#FAF9F7;
  --surface:#FFFFFF;
  --tint:#F3F1ED;
  --ink:#12141A;
  --ink-2:#1B1E27;
  --ink-line:#D8D4CC;
  --border:#E7E3DB;
  --text:#191B21;
  --text-muted:#5C606B;
  --text-faint:#8A8E99;
  --coral:#F5274E;
  --coral-hover:#D91642;
  --coral-tint:rgba(245,39,78,.08);

  --font-display:'General Sans','Satoshi',system-ui,sans-serif;
  --font-body:'Satoshi','General Sans',system-ui,sans-serif;

  --r-sm:10px; --r:14px; --r-lg:20px; --r-pill:999px;
  --shadow-sm:0 1px 2px rgba(18,20,26,.04),0 2px 8px rgba(18,20,26,.04);
  --shadow:0 4px 12px rgba(18,20,26,.05),0 12px 32px rgba(18,20,26,.06);
  --shadow-lg:0 12px 40px rgba(18,20,26,.10);

  --maxw:1180px;
  --gap:clamp(1.5rem,3vw,2rem);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  background:var(--off-white);
  color:var(--text);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3{font-family:var(--font-display);line-height:1.1;letter-spacing:-.02em;font-weight:600}
a{color:inherit;text-decoration:none}
img,svg{display:block;max-width:100%}
::selection{background:var(--coral);color:#fff}

.container{max-width:var(--maxw);margin-inline:auto;padding-inline:clamp(1.25rem,4vw,2.5rem)}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--font-body);font-weight:600;font-size:.95rem;
  padding:.72rem 1.3rem;border-radius:var(--r-pill);border:1.5px solid transparent;
  cursor:pointer;transition:transform .2s cubic-bezier(.16,1,.3,1),background .2s,box-shadow .2s,color .2s;
  white-space:nowrap;
}
.btn--lg{padding:.9rem 1.7rem;font-size:1rem}
.btn--block{width:100%}
.btn--coral{background:var(--coral);color:#fff;box-shadow:0 6px 18px rgba(245,39,78,.28)}
.btn--coral:hover{background:var(--coral-hover);transform:translateY(-2px);box-shadow:0 10px 26px rgba(245,39,78,.34)}
.btn--ghost{background:transparent;color:var(--text);border-color:var(--border)}
.btn--ghost:hover{border-color:var(--ink);background:var(--surface);transform:translateY(-2px)}
.btn--onDark{background:transparent;color:#fff;border-color:rgba(255,255,255,.28)}
.btn--onDark:hover{border-color:#fff;background:rgba(255,255,255,.06);transform:translateY(-2px)}

/* ============ EYEBROW ============ */
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--font-body);font-size:.8rem;font-weight:600;letter-spacing:.05em;
  text-transform:uppercase;color:var(--text-muted);margin-bottom:1.1rem;
}
.eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--coral);flex:none}
.eyebrow--ink{color:var(--text-muted)}
.eyebrow--onDark{color:rgba(255,255,255,.72)}

.hl{color:var(--coral)}

/* ============ NAV ============ */
.navwrap{position:fixed;top:clamp(.7rem,1.4vw,1rem);left:50%;transform:translateX(-50%);width:min(1272px,calc(100% - clamp(1rem,3vw,2rem)));z-index:60;display:flex;flex-direction:column;align-items:stretch}
.navwrap__top{display:flex;align-items:center;justify-content:space-between;gap:1rem;max-height:60px;margin-bottom:.6rem;
  transition:max-height .38s cubic-bezier(.4,0,.2,1),opacity .25s ease,margin-bottom .38s cubic-bezier(.4,0,.2,1)}
.navwrap .brand{flex:none;height:44px;overflow:hidden;filter:drop-shadow(0 3px 12px rgba(18,20,26,.4))}
.navwrap__utils{display:flex;align-items:center;gap:clamp(.8rem,1.6vw,1.15rem);padding-right:.15rem}
.navwrap .nav{margin-left:232px;min-width:0;transition:margin-left .38s cubic-bezier(.4,0,.2,1)}
.nav{position:relative;min-width:0;border-radius:16px;
  background:rgba(250,249,247,.22);
  backdrop-filter:blur(28px) saturate(1.9);-webkit-backdrop-filter:blur(28px) saturate(1.9);
  border:1px solid rgba(255,255,255,.5);
  box-shadow:0 12px 32px rgba(18,20,26,.16),inset 0 1px 0 rgba(255,255,255,.55);
  transition:box-shadow .3s,background .3s}
.nav.is-scrolled{background:rgba(250,249,247,.42);box-shadow:0 14px 40px rgba(18,20,26,.2),inset 0 1px 0 rgba(255,255,255,.55)}
.nav__inner{display:flex;align-items:center;gap:1.1rem;height:42px}
.brand{display:flex;align-items:center;gap:.6rem;font-family:var(--font-display);font-weight:700;font-size:1.18rem;letter-spacing:-.02em}
.brand__mark{width:34px;height:31px;flex:none}
.brand__mark svg{width:100%;height:100%}
.nav__links{display:flex;gap:1.6rem;margin:0 auto;font-size:.95rem;font-weight:500}
.nav__links a{color:var(--text-muted);transition:color .2s;position:relative;padding:.3rem 0;white-space:nowrap}
.nav__links a:hover{color:var(--text)}
.nav__links a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--coral);transition:width .25s}
.nav__links a:hover::after{width:100%}
.nav__right{display:flex;align-items:center;gap:1rem;margin-left:1rem}
.segment{display:inline-flex;background:var(--tint);border-radius:var(--r-pill);padding:3px}
.segment__btn{border:none;background:none;cursor:pointer;font-family:var(--font-body);font-weight:600;font-size:.85rem;
  color:var(--text-muted);padding:.42rem .95rem;border-radius:var(--r-pill);transition:all .2s}
.segment__btn.is-active{background:var(--surface);color:var(--text);box-shadow:var(--shadow-sm)}
.nav__burger{display:flex;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px}
.nav__burger span{width:22px;height:2px;background:var(--text);border-radius:2px;transition:.3s}
.nav__mobile{display:none;flex-direction:column;gap:.4rem;padding:1rem clamp(1.25rem,4vw,2.5rem) 1.5rem;
  background:var(--off-white);border-bottom:1px solid var(--border)}
.nav__mobile a{padding:.7rem .2rem;color:var(--text-muted);font-weight:500;border-bottom:1px solid var(--border)}
.nav__mobile a.btn{margin-top:.6rem;color:#fff;border-bottom:none;justify-content:center}

/* ============ HÉRO ============ */
.hero{position:relative;padding:clamp(3.5rem,8vw,6rem) 0 clamp(3rem,6vw,5rem);overflow:hidden}
.hero__bg{position:absolute;inset:0;z-index:0;pointer-events:none}
.hero__bg .net{width:100%;height:100%}
.hero__inner{position:relative;z-index:1;max-width:920px}
.hero__title{font-size:clamp(2.6rem,6.5vw,5rem);font-weight:700;letter-spacing:-.03em;margin-bottom:1.4rem}
.hero__sub{font-size:clamp(1.05rem,2vw,1.3rem);color:var(--text-muted);max-width:640px;line-height:1.55}
.hero__sub strong{color:var(--text);font-weight:600}
.hero__cta{display:flex;flex-wrap:wrap;gap:.9rem;margin:2rem 0 2.4rem}

.badges{list-style:none;display:flex;flex-wrap:wrap;gap:.7rem;margin-bottom:2.8rem}
.badge{display:inline-flex;align-items:center;gap:.55rem;background:var(--surface);border:1px solid var(--border);
  border-radius:var(--r-pill);padding:.5rem .95rem;font-size:.85rem;font-weight:600;color:var(--text);box-shadow:var(--shadow-sm)}
.badge em{color:var(--text-muted);font-style:normal;font-weight:500}
.badge .ico{width:16px;height:16px;stroke:var(--coral);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:none}

.stats{display:flex;flex-wrap:wrap;gap:clamp(1.5rem,5vw,3.5rem);padding-top:.5rem;border-top:1px solid var(--border);margin-top:.5rem}
.stats{padding-top:2rem}
.stat__num{font-family:var(--font-display);font-size:clamp(2.2rem,4vw,3rem);font-weight:700;color:var(--text);letter-spacing:-.03em;line-height:1;font-variant-numeric:tabular-nums}
.stat__lbl{font-size:.9rem;color:var(--text-muted);margin-top:.4rem}
.stat:first-child .stat__num,.stat:nth-child(2) .stat__num{color:var(--coral)}

/* ============ SECTIONS ============ */
.section{padding:clamp(4rem,8vw,7rem) 0}
.section--tint{background:var(--tint)}
.section--ink{background:var(--ink);color:#fff;position:relative;overflow:hidden}
.section__head{max-width:720px;margin-bottom:clamp(2.5rem,5vw,3.5rem)}
.section__title{font-size:clamp(2rem,4vw,2.9rem);font-weight:600;margin-bottom:1rem}
.section__lede{font-size:1.1rem;color:var(--text-muted);line-height:1.6}

/* ============ GRID / CARDS ============ */
.grid{display:grid;gap:var(--gap)}
.grid--4{grid-template-columns:repeat(4,1fr)}
.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);
  padding:1.9rem 1.7rem;box-shadow:var(--shadow-sm);
  transition:transform .25s cubic-bezier(.16,1,.3,1),box-shadow .25s,border-color .25s;
  display:flex;flex-direction:column;height:100%}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:#dcd8d0}
.card__ico{width:52px;height:52px;border-radius:var(--r);background:var(--coral-tint);
  display:grid;place-items:center;margin-bottom:1.3rem}
.card__ico svg{width:28px;height:28px;stroke:var(--coral);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.card__title{font-size:1.3rem;font-weight:600;margin-bottom:.6rem}
.card__txt{font-size:.98rem;color:var(--text-muted);line-height:1.55;flex:1}
.card__cta{margin-top:1.3rem;font-family:var(--font-body);font-weight:600;font-size:.92rem;color:var(--coral);
  display:inline-flex;align-items:center;gap:.35rem;transition:gap .2s}
.card__cta:hover{gap:.65rem}
.card--benefit .card__ico{background:var(--tint)}
.card--benefit .card__ico svg{stroke:var(--ink)}

/* ============ STEPS ============ */
.steps{list-style:none;display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap);counter-reset:s}
.step{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);padding:2rem 1.8rem;box-shadow:var(--shadow-sm);position:relative}
.step__num{display:grid;place-items:center;width:44px;height:44px;border-radius:50%;background:var(--ink);color:#fff;
  font-family:var(--font-display);font-weight:700;font-size:1.2rem;margin-bottom:1.2rem}
.step:last-child .step__num{background:var(--coral)}
.step__title{font-size:1.2rem;font-weight:600;margin-bottom:.5rem}
.step__txt{color:var(--text-muted);font-size:.98rem}

/* ============ OFFRE ============ */
.ink-net{position:absolute;inset:0;z-index:0;pointer-events:none}
.ink-net svg{width:100%;height:100%}
.section--ink .container{position:relative;z-index:1}
.offer{display:grid;grid-template-columns:1.6fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.offer__title{font-size:clamp(1.9rem,4vw,2.9rem);font-weight:600;margin-bottom:1rem;line-height:1.12}
.offer__txt{color:rgba(255,255,255,.72);font-size:1.08rem;max-width:520px;margin-bottom:1.8rem}
.offer__cta{display:flex;flex-wrap:wrap;gap:.9rem}
.offer__price{justify-self:end;text-align:center;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.12);
  border-radius:var(--r-lg);padding:2rem 2.6rem;backdrop-filter:blur(4px)}
.offer__from{display:block;font-size:.85rem;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.6)}
.offer__amount{display:block;font-family:var(--font-display);font-weight:700;font-size:5rem;line-height:1;color:var(--coral)}
.offer__cur{font-size:2.2rem;vertical-align:super}
.offer__per{display:block;font-size:.95rem;color:rgba(255,255,255,.72);margin-top:.3rem}

/* ============ DÉMÉNAGEMENT ============ */
.moving{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);
  padding:clamp(2rem,4vw,3.2rem);display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:2rem;box-shadow:var(--shadow)}
.moving__txt{max-width:600px}
.moving .eyebrow{margin-bottom:.9rem}
.moving__title{font-size:clamp(1.6rem,3vw,2.3rem);font-weight:600;margin-bottom:.7rem}
.moving__sub{color:var(--text-muted);font-size:1.05rem}

/* ============ SOUMISSION ============ */
.quote{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2.5rem,5vw,4.5rem);align-items:start}
.quote__perks{list-style:none;margin-top:1.8rem;display:grid;gap:.85rem}
.quote__perks li{display:flex;align-items:center;gap:.7rem;font-weight:500;color:var(--text)}
.quote__perks .ico{width:20px;height:20px;stroke:var(--coral);fill:none;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;flex:none}
.quote__form{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);padding:clamp(1.8rem,3vw,2.4rem);box-shadow:var(--shadow)}
.field{margin-bottom:1.2rem;display:flex;flex-direction:column}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.field label{font-size:.85rem;font-weight:600;margin-bottom:.4rem;color:var(--text)}
.field input,.field select{font-family:var(--font-body);font-size:1rem;padding:.8rem .95rem;border:1.5px solid var(--border);
  border-radius:var(--r-sm);background:var(--off-white);color:var(--text);transition:border-color .2s,box-shadow .2s}
.field input:focus,.field select:focus{outline:none;border-color:var(--coral);box-shadow:0 0 0 3px var(--coral-tint)}
.quote__note{font-size:.82rem;color:var(--text-faint);margin-top:1rem;text-align:center}

/* ============ FOOTER ============ */
.footer{background:var(--ink);color:#fff;position:relative;overflow:hidden;padding:clamp(3.5rem,6vw,5rem) 0 2rem}
.footer__inner{position:relative;z-index:1;display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:2.5rem}
.brand--onDark{color:#fff}
.footer__tag{color:rgba(255,255,255,.6);margin:1rem 0 1.4rem;max-width:280px;font-size:.98rem}
.social{display:flex;gap:.7rem}
.social a{width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.18);display:grid;place-items:center;transition:.2s}
.social a:hover{background:var(--coral);border-color:var(--coral)}
.social svg{width:18px;height:18px;fill:#fff;stroke:none}
.social svg[stroke]{fill:none;stroke:#fff;stroke-width:2}
.footer__col h3{font-family:var(--font-display);font-size:.95rem;font-weight:600;margin-bottom:1.1rem;color:#fff}
.footer__col ul{list-style:none;display:grid;gap:.65rem}
.footer__col a{color:rgba(255,255,255,.68);transition:color .2s;font-size:.95rem}
.footer__col a:hover{color:var(--coral)}
.footer__contact li{color:rgba(255,255,255,.68);font-size:.95rem;line-height:1.5}
.footer__contact a{font-weight:600;color:#fff}
.footer__awards li{color:rgba(255,255,255,.6);font-size:.9rem;line-height:1.4}
.footer__bottom{position:relative;z-index:1;display:flex;justify-content:space-between;flex-wrap:wrap;gap:.8rem;
  margin-top:3rem;padding-top:1.6rem;border-top:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.5);font-size:.85rem}
.footer__bottom a{color:rgba(255,255,255,.5)}
.footer__bottom a:hover{color:var(--coral)}

/* ============ REVEAL ============ */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s cubic-bezier(.16,1,.3,1),transform .7s cubic-bezier(.16,1,.3,1)}
.reveal.in{opacity:1;transform:none}

/* ============ RESPONSIVE ============ */
@media(max-width:960px){
  .grid--4{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:1fr}
  .quote{grid-template-columns:1fr}
  .offer{grid-template-columns:1fr}
  .offer__price{justify-self:start}
  .footer__inner{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .grid--4{grid-template-columns:1fr}
  .footer__inner{grid-template-columns:1fr}
  .field-row{grid-template-columns:1fr}
  .hero__cta .btn,.offer__cta .btn{flex:1;min-width:0}
  .moving{flex-direction:column;align-items:flex-start}
  .moving .btn{width:100%}
}
@media(prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important}
  .reveal{opacity:1!important;transform:none!important;transition:none!important}
  .btn:hover,.card:hover{transform:none!important}
}

/* ======================================================================
   EXTENSION SITE COMPLET — nav multi-pages, thème Entreprise, gabarits
   ====================================================================== */

/* --- Bascule d'univers en liens (nav) --- */
.segment{gap:0}
.segment a.segment__btn{text-decoration:none;display:inline-flex;align-items:center}
.segment a.segment__btn.is-active{background:var(--surface);color:var(--text);box-shadow:var(--shadow-sm)}

/* --- Lien nav actif --- */
.nav__links a.is-current{color:var(--text)}
.nav__links a.is-current::after{width:100%}
.nav__mobile a.is-current{color:var(--text);font-weight:700}
.nav__mobile .segment{display:inline-flex;margin:.6rem 0 .2rem}

/* ======================================================================
   THÈME ENTREPRISE — même design system, tonalité corporative sombre
   ====================================================================== */
body.u-entreprise{background:var(--ink);color:#EDEDF1}
body.u-entreprise .nav{background:rgba(18,20,26,.2);border-color:rgba(255,255,255,.16);box-shadow:0 12px 32px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.1)}
body.u-entreprise .nav.is-scrolled{background:rgba(18,20,26,.45);border-color:rgba(255,255,255,.18)}
body.u-entreprise .brand{color:#fff}
body.u-entreprise .nav__links a{color:rgba(255,255,255,.66)}
body.u-entreprise .nav__links a:hover,body.u-entreprise .nav__links a.is-current{color:#fff}
body.u-entreprise .segment{background:rgba(255,255,255,.08)}
body.u-entreprise .segment__btn{color:rgba(255,255,255,.62)}
body.u-entreprise .segment a.segment__btn.is-active{background:var(--coral);color:#fff;box-shadow:none}
body.u-entreprise .nav__burger span{background:#fff}
body.u-entreprise .nav__mobile{background:var(--ink);border-bottom-color:rgba(255,255,255,.1)}
body.u-entreprise .nav__mobile a{color:rgba(255,255,255,.7);border-bottom-color:rgba(255,255,255,.08)}
body.u-entreprise .nav__mobile a.is-current{color:#fff}

/* Surfaces claires deviennent sombres en univers Entreprise */
body.u-entreprise .section--tint{background:var(--ink-2)}
body.u-entreprise .section__title,body.u-entreprise .moving__title,body.u-entreprise .offer__title{color:#fff}
body.u-entreprise .section__lede,body.u-entreprise .section__head .eyebrow--ink{color:rgba(255,255,255,.66)}
body.u-entreprise .eyebrow--ink{color:rgba(255,255,255,.6)}
body.u-entreprise .card{background:var(--ink-2);border-color:rgba(255,255,255,.09);box-shadow:none}
body.u-entreprise .card:hover{border-color:rgba(245,39,78,.4);box-shadow:0 12px 40px rgba(0,0,0,.4)}
body.u-entreprise .card__title{color:#fff}
body.u-entreprise .card__txt{color:rgba(255,255,255,.62)}
body.u-entreprise .card--benefit .card__ico{background:rgba(255,255,255,.06)}
body.u-entreprise .card--benefit .card__ico svg{stroke:#fff}
body.u-entreprise .step{background:var(--ink-2);border-color:rgba(255,255,255,.09);box-shadow:none}
body.u-entreprise .step__title{color:#fff}
body.u-entreprise .step__txt{color:rgba(255,255,255,.62)}
body.u-entreprise .step__num{background:rgba(255,255,255,.1);color:#fff}
body.u-entreprise .step:last-child .step__num{background:var(--coral)}
body.u-entreprise .btn--ghost{color:#fff;border-color:rgba(255,255,255,.28)}
body.u-entreprise .btn--ghost:hover{border-color:#fff;background:rgba(255,255,255,.06)}
body.u-entreprise .moving{background:var(--ink-2);border-color:rgba(255,255,255,.09);box-shadow:none}
body.u-entreprise .moving__sub{color:rgba(255,255,255,.62)}
body.u-entreprise .footer{border-top:1px solid rgba(255,255,255,.06)}
body.u-entreprise .field input,body.u-entreprise .field select,body.u-entreprise .field textarea{background:var(--ink);border-color:rgba(255,255,255,.14);color:#fff}
body.u-entreprise .field label{color:rgba(255,255,255,.85)}
body.u-entreprise .quote__form{background:var(--ink-2);border-color:rgba(255,255,255,.09)}
body.u-entreprise .quote__perks li{color:#fff}
body.u-entreprise .quote__note{color:rgba(255,255,255,.5)}
body.u-entreprise .info-card{background:var(--ink-2);border-color:rgba(255,255,255,.09)}
body.u-entreprise .info-card__txt,body.u-entreprise .info-card li{color:rgba(255,255,255,.66)}
body.u-entreprise .pagehero{background:var(--ink)}
body.u-entreprise .crumbs{color:rgba(255,255,255,.5)}
body.u-entreprise .crumbs a:hover{color:#fff}
body.u-entreprise .crumbs .sep{color:rgba(255,255,255,.3)}
body.u-entreprise .breakout{background:var(--ink-2)}

/* ======================================================================
   HÉRO DE PAGE (sobre, pas pleine hauteur) + fil d'Ariane
   ====================================================================== */
.pagehero{position:relative;overflow:hidden;padding:clamp(2.2rem,5vw,3.4rem) 0 clamp(2.6rem,5vw,3.6rem);border-bottom:1px solid var(--border)}
body.u-entreprise .pagehero{border-bottom-color:rgba(255,255,255,.07)}
.pagehero__bg{position:absolute;inset:0;z-index:0;pointer-events:none;opacity:.7}
.pagehero__bg svg{width:100%;height:100%}
.pagehero .container{position:relative;z-index:1}
.pagehero__inner{max-width:760px}
.pagehero__title{font-size:clamp(2.1rem,4.6vw,3.4rem);font-weight:700;letter-spacing:-.03em;margin:.6rem 0 1rem}
.pagehero__sub{font-size:clamp(1.02rem,1.8vw,1.22rem);color:var(--text-muted);max-width:620px;line-height:1.55}
body.u-entreprise .pagehero__title{color:#fff}
body.u-entreprise .pagehero__sub{color:rgba(255,255,255,.68)}
.pagehero__cta{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:1.8rem}

.crumbs{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem;font-size:.85rem;color:var(--text-faint);font-weight:500}
.crumbs a{color:var(--text-muted);transition:color .2s}
.crumbs a:hover{color:var(--coral)}
.crumbs .sep{color:var(--text-faint)}
.crumbs [aria-current]{color:var(--text)}
body.u-entreprise .crumbs [aria-current]{color:#fff}

/* ======================================================================
   CARTES INFO (services détaillés, 3 col ou 2 col)
   ====================================================================== */
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--2{grid-template-columns:repeat(2,1fr)}
.info-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);
  padding:2rem 1.8rem;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;height:100%;
  transition:transform .25s cubic-bezier(.16,1,.3,1),box-shadow .25s,border-color .25s}
.info-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
body.u-entreprise .info-card:hover{border-color:rgba(245,39,78,.4);box-shadow:0 12px 40px rgba(0,0,0,.4)}
.info-card__ico{width:52px;height:52px;border-radius:var(--r);background:var(--coral-tint);display:grid;place-items:center;margin-bottom:1.3rem}
.info-card__ico svg{width:28px;height:28px;stroke:var(--coral);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.info-card__title{font-size:1.35rem;font-weight:600;margin-bottom:.5rem}
body.u-entreprise .info-card__title{color:#fff}
.info-card__price{font-family:var(--font-display);font-weight:700;color:var(--coral);font-size:1.15rem;margin-bottom:.7rem}
.info-card__txt{color:var(--text-muted);font-size:.98rem;line-height:1.55;margin-bottom:1.1rem}
.feature-list{list-style:none;display:grid;gap:.7rem;margin:0 0 1.4rem}
.feature-list li{display:flex;align-items:flex-start;gap:.6rem;font-size:.95rem;color:var(--text);line-height:1.45}
body.u-entreprise .feature-list li{color:rgba(255,255,255,.8)}
.feature-list svg{width:18px;height:18px;stroke:var(--coral);fill:none;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;flex:none;margin-top:2px}
.info-card__cta{margin-top:auto;font-family:var(--font-body);font-weight:600;font-size:.92rem;color:var(--coral);
  display:inline-flex;align-items:center;gap:.35rem;transition:gap .2s}
.info-card__cta:hover{gap:.65rem}

/* ======================================================================
   BREAKOUT (bande CTA récurrente vers contact)
   ====================================================================== */
.breakout{background:var(--tint);border-radius:var(--r-lg);padding:clamp(2rem,4vw,3rem);
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1.6rem}
.breakout__txt h2{font-size:clamp(1.5rem,3vw,2.1rem);font-weight:600;margin-bottom:.5rem}
.breakout__txt p{color:var(--text-muted);max-width:520px}
body.u-entreprise .breakout__txt h2{color:#fff}
body.u-entreprise .breakout__txt p{color:rgba(255,255,255,.66)}

/* ======================================================================
   ÉQUIPE
   ====================================================================== */
.lead-card{display:grid;grid-template-columns:auto 1fr;gap:clamp(1.5rem,3vw,2.4rem);align-items:center;
  background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);padding:clamp(1.8rem,3vw,2.6rem);box-shadow:var(--shadow)}
body.u-entreprise .lead-card{background:var(--ink-2);border-color:rgba(255,255,255,.09)}
.avatar{width:120px;height:120px;border-radius:var(--r-lg);background:linear-gradient(145deg,var(--ink),var(--ink-2));
  display:grid;place-items:center;color:#fff;font-family:var(--font-display);font-weight:700;font-size:2.4rem;flex:none;position:relative;overflow:hidden}
.avatar--coral{background:linear-gradient(145deg,var(--coral),var(--coral-hover))}
.avatar__cap{position:absolute;bottom:0;left:0;right:0;font-size:.58rem;font-weight:500;background:rgba(0,0,0,.45);color:#fff;padding:3px 4px;letter-spacing:.02em;text-align:center;font-family:var(--font-body)}
.lead-card__role{font-size:.85rem;font-weight:600;color:var(--coral);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.4rem}
.lead-card__name{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:700;margin-bottom:.7rem}
body.u-entreprise .lead-card__name{color:#fff}
.lead-card__txt{color:var(--text-muted);font-size:1.05rem;line-height:1.6}
body.u-entreprise .lead-card__txt{color:rgba(255,255,255,.66)}
.team-member{text-align:center}
.team-member .avatar{width:100%;aspect-ratio:1;height:auto;border-radius:var(--r-lg);font-size:3rem;margin-bottom:1rem}
.team-member__name{font-size:1.15rem;font-weight:600;margin-bottom:.2rem}
body.u-entreprise .team-member__name{color:#fff}
.team-member__role{font-size:.9rem;color:var(--text-muted)}
.partner-strip{display:flex;flex-wrap:wrap;align-items:center;gap:1rem 2.4rem}
.partner-chip{display:inline-flex;align-items:center;gap:.6rem;font-weight:600;color:var(--text);
  background:var(--surface);border:1px solid var(--border);border-radius:var(--r-pill);padding:.6rem 1.1rem;font-size:.95rem}
body.u-entreprise .partner-chip{background:var(--ink-2);border-color:rgba(255,255,255,.1);color:#fff}
.partner-chip .dot{width:8px;height:8px;border-radius:50%;background:var(--coral)}

/* ======================================================================
   BLOGUE
   ====================================================================== */
.post{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;
  display:flex;flex-direction:column;height:100%;box-shadow:var(--shadow-sm);
  transition:transform .25s cubic-bezier(.16,1,.3,1),box-shadow .25s}
.post:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.post__thumb{aspect-ratio:16/10;position:relative;overflow:hidden;background:var(--ink)}
.post__thumb svg{width:100%;height:100%}
.post__body{padding:1.6rem 1.5rem;display:flex;flex-direction:column;flex:1}
.post__meta{font-size:.82rem;color:var(--text-faint);font-weight:600;text-transform:uppercase;letter-spacing:.04em;margin-bottom:.7rem}
.post__title{font-size:1.25rem;font-weight:600;margin-bottom:.6rem;line-height:1.2}
body.u-entreprise .post__title{color:#fff}
.post__excerpt{color:var(--text-muted);font-size:.95rem;line-height:1.55;flex:1;margin-bottom:1.1rem}
.post__cta{font-weight:600;font-size:.92rem;color:var(--coral);display:inline-flex;align-items:center;gap:.35rem;transition:gap .2s}
.post__cta:hover{gap:.65rem}

/* ======================================================================
   CONTACT
   ====================================================================== */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2.5rem,5vw,4.5rem);align-items:start}
.contact-info{display:grid;gap:1.4rem;margin-top:1.8rem}
.contact-line{display:flex;gap:.9rem;align-items:flex-start}
.contact-line__ico{width:44px;height:44px;border-radius:var(--r);background:var(--coral-tint);display:grid;place-items:center;flex:none}
.contact-line__ico svg{width:22px;height:22px;stroke:var(--coral);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.contact-line__lbl{font-size:.82rem;font-weight:600;text-transform:uppercase;letter-spacing:.04em;color:var(--text-faint);margin-bottom:.2rem}
.contact-line__val{font-weight:600;font-size:1.05rem;color:var(--text)}
body.u-entreprise .contact-line__val{color:#fff}
.contact-line__val a{color:inherit}
.contact-line__val a:hover{color:var(--coral)}
.contact-line__sub{color:var(--text-muted);font-size:.92rem}
body.u-entreprise .contact-line__sub{color:rgba(255,255,255,.6)}
.map-frame{margin-top:1.8rem;border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--border);background:var(--tint)}
body.u-entreprise .map-frame{border-color:rgba(255,255,255,.1);background:var(--ink-2)}
.map-frame svg{width:100%;height:auto;display:block}
.field textarea{font-family:var(--font-body);font-size:1rem;padding:.8rem .95rem;border:1.5px solid var(--border);
  border-radius:var(--r-sm);background:var(--off-white);color:var(--text);resize:vertical;min-height:120px;transition:border-color .2s,box-shadow .2s}
.field textarea:focus{outline:none;border-color:var(--coral);box-shadow:0 0 0 3px var(--coral-tint)}
.radio-row{display:flex;gap:.7rem;flex-wrap:wrap}
.radio-pill{position:relative}
.radio-pill input{position:absolute;opacity:0;pointer-events:none}
.radio-pill span{display:inline-flex;padding:.55rem 1.1rem;border:1.5px solid var(--border);border-radius:var(--r-pill);
  font-weight:600;font-size:.9rem;cursor:pointer;transition:.2s;color:var(--text-muted)}
.radio-pill input:checked+span{border-color:var(--coral);background:var(--coral-tint);color:var(--coral)}
body.u-entreprise .radio-pill span{border-color:rgba(255,255,255,.16);color:rgba(255,255,255,.7)}
body.u-entreprise .radio-pill input:checked+span{border-color:var(--coral);color:#fff;background:rgba(245,39,78,.18)}
.checks{display:grid;grid-template-columns:1fr 1fr;gap:.6rem}
.check{display:flex;align-items:center;gap:.55rem;font-size:.95rem;font-weight:500;cursor:pointer}
.check input{width:18px;height:18px;accent-color:var(--coral)}

/* ======================================================================
   DIVERS / PROSE
   ====================================================================== */
.prose{max-width:680px}
.prose p{color:var(--text-muted);font-size:1.08rem;line-height:1.65;margin-bottom:1.2rem}
body.u-entreprise .prose p{color:rgba(255,255,255,.68)}
.prose p strong{color:var(--text);font-weight:600}
body.u-entreprise .prose p strong{color:#fff}
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.spacer-sm{height:clamp(2.5rem,5vw,4rem)}

@media(max-width:960px){
  .grid--3{grid-template-columns:1fr}
  .grid--2{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .lead-card{grid-template-columns:1fr;text-align:center;justify-items:center}
  .checks{grid-template-columns:1fr}
}
@media(max-width:560px){
  .breakout{flex-direction:column;align-items:flex-start}
  .breakout .btn{width:100%}
  .pagehero__cta .btn{flex:1}
}

/* ======================================================================
   PHASE 2 — HÉROS PHOTO (voile ink dégradé latéral, texte en zone négative)
   ====================================================================== */
.photohero{position:relative;overflow:hidden;isolation:isolate;
  border-bottom:1px solid var(--border);
  min-height:clamp(400px,58vh,600px);display:flex;align-items:center}
body.u-entreprise .photohero{border-bottom-color:rgba(255,255,255,.07)}
.photohero__img{position:absolute;inset:0;z-index:0;width:100%;height:100%;object-fit:cover}
/* Voile ink dégradé — plus opaque côté texte pour contraste AA */
.photohero__veil{position:absolute;inset:0;z-index:1;pointer-events:none}
.photohero--left .photohero__veil{
  background:linear-gradient(100deg,
    rgba(15,17,22,.90) 0%, rgba(15,17,22,.86) 26%,
    rgba(15,17,22,.66) 46%, rgba(15,17,22,.28) 66%, rgba(15,17,22,.12) 100%)}
.photohero--right .photohero__veil{
  background:linear-gradient(260deg,
    rgba(15,17,22,.90) 0%, rgba(15,17,22,.86) 26%,
    rgba(15,17,22,.66) 46%, rgba(15,17,22,.28) 66%, rgba(15,17,22,.12) 100%)}
/* Voile vertical complémentaire pour lisibilité en mobile */
.photohero__veil::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(15,17,22,.28),rgba(15,17,22,.05) 40%,rgba(15,17,22,.10))}
.photohero .container{position:relative;z-index:2;width:100%;
  padding-top:clamp(2.6rem,6vw,4.4rem);padding-bottom:clamp(2.6rem,6vw,4.4rem)}
.photohero--right .photohero__inner{margin-left:auto;text-align:right}
.photohero--right .crumbs,.photohero--right .eyebrow,
.photohero--right .photohero__cta,.photohero--right .badges{justify-content:flex-end}
.photohero__inner{max-width:600px;color:#fff}
.photohero .crumbs{color:rgba(255,255,255,.7);display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1rem}
.photohero .crumbs a{color:rgba(255,255,255,.82)}
.photohero .crumbs a:hover{color:#fff}
.photohero .crumbs .sep{color:rgba(255,255,255,.45)}
.photohero .crumbs [aria-current]{color:#fff}
.photohero .eyebrow{display:inline-flex;color:rgba(255,255,255,.85)}
.photohero .eyebrow .dot{background:var(--coral)}
.photohero__title{font-family:var(--font-display);font-weight:700;letter-spacing:-.03em;
  font-size:clamp(2.2rem,5vw,3.6rem);line-height:1.05;color:#fff;margin:.4rem 0 1rem;
  text-shadow:0 2px 24px rgba(0,0,0,.35)}
.photohero__title .hl{color:#FF8FA6}
.photohero__sub{font-size:clamp(1.02rem,1.8vw,1.24rem);line-height:1.55;
  color:rgba(255,255,255,.9);max-width:520px;text-shadow:0 1px 12px rgba(0,0,0,.3)}
.photohero--right .photohero__sub{margin-left:auto}
.photohero__cta{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:1.8rem}
.photohero .btn--ghost{color:#fff;border-color:rgba(255,255,255,.4);background:rgba(255,255,255,.04)}
.photohero .btn--ghost:hover{border-color:#fff;background:rgba(255,255,255,.12)}
.photohero .badges{margin-top:1.8rem;margin-bottom:0}
.photohero .badge{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.22);color:#fff;
  backdrop-filter:blur(6px)}
.photohero .badge em{color:rgba(255,255,255,.75)}
.photohero .badge .ico{stroke:#FF8FA6}
@media(max-width:640px){
  .photohero--right .photohero__inner{text-align:left;margin-left:0}
  .photohero--right .crumbs,.photohero--right .eyebrow,
  .photohero--right .photohero__cta,.photohero--right .badges{justify-content:flex-start}
  .photohero--right .photohero__sub{margin-left:0}
  .photohero--left .photohero__veil,.photohero--right .photohero__veil{
    background:linear-gradient(180deg,rgba(15,17,22,.62),rgba(15,17,22,.82))}
}

/* Image d'appui dans une section (ex. déménagement) */
.media-split{display:grid;grid-template-columns:1.05fr .95fr;gap:0;
  border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--border);box-shadow:var(--shadow)}
body.u-entreprise .media-split{border-color:rgba(255,255,255,.09)}
.media-split__img{position:relative;min-height:340px}
.media-split__img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.media-split__body{background:var(--surface);padding:clamp(2rem,4vw,3.2rem);display:flex;flex-direction:column;justify-content:center}
body.u-entreprise .media-split__body{background:var(--ink-2)}
.media-split__body h2{font-size:clamp(1.6rem,3vw,2.3rem);font-weight:600;margin-bottom:.7rem}
body.u-entreprise .media-split__body h2{color:#fff}
.media-split__body p{color:var(--text-muted);font-size:1.05rem;margin-bottom:1.4rem}
body.u-entreprise .media-split__body p{color:rgba(255,255,255,.66)}
@media(max-width:760px){.media-split{grid-template-columns:1fr}.media-split__img{min-height:240px}}

/* ======================================================================
   PHASE 2 — SÉCURITÉ (bandeau assurance)
   ====================================================================== */
.assurance{display:grid;grid-template-columns:auto 1fr auto;gap:1.6rem;align-items:center;
  background:linear-gradient(120deg,var(--ink),var(--ink-2));color:#fff;border-radius:var(--r-lg);
  padding:clamp(1.8rem,4vw,2.6rem);box-shadow:var(--shadow)}
.assurance__ico{width:64px;height:64px;border-radius:var(--r);background:rgba(245,39,78,.18);display:grid;place-items:center;flex:none}
.assurance__ico svg{width:34px;height:34px;stroke:var(--coral);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.assurance h2{color:#fff;font-size:clamp(1.4rem,2.6vw,1.9rem);margin-bottom:.4rem}
.assurance p{color:rgba(255,255,255,.72);max-width:620px}
.assurance .btn{white-space:nowrap}
@media(max-width:760px){.assurance{grid-template-columns:1fr;text-align:left}.assurance .btn{width:100%}}

/* ======================================================================
   PHASE 2 — BOUTIQUE (catalogue produits)
   ====================================================================== */
.shop-toolbar{display:flex;flex-wrap:wrap;gap:1rem;align-items:center;justify-content:space-between;margin-bottom:2.2rem}
.filters{display:flex;flex-wrap:wrap;gap:.55rem}
.filter-chip{font-family:var(--font-body);font-weight:600;font-size:.9rem;padding:.5rem 1.05rem;
  border:1.5px solid var(--border);border-radius:var(--r-pill);background:var(--surface);color:var(--text-muted);
  cursor:pointer;transition:.2s}
.filter-chip:hover{border-color:var(--ink)}
.filter-chip.is-active{background:var(--ink);color:#fff;border-color:var(--ink)}
body.u-entreprise .filter-chip{background:var(--ink-2);border-color:rgba(255,255,255,.14);color:rgba(255,255,255,.7)}
body.u-entreprise .filter-chip.is-active{background:var(--coral);border-color:var(--coral);color:#fff}
.pickup-note{display:inline-flex;align-items:center;gap:.5rem;font-size:.9rem;font-weight:600;color:var(--text-muted)}
.pickup-note svg{width:18px;height:18px;stroke:var(--coral);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

.shop-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--gap)}
@media(max-width:1000px){.shop-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:760px){.shop-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:440px){.shop-grid{grid-template-columns:1fr}}
.product{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;
  display:flex;flex-direction:column;box-shadow:var(--shadow-sm);transition:transform .25s cubic-bezier(.16,1,.3,1),box-shadow .25s}
.product:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
body.u-entreprise .product{background:var(--ink-2);border-color:rgba(255,255,255,.09)}
.product__media{position:relative;aspect-ratio:1;background:var(--tint);display:grid;place-items:center;overflow:hidden}
body.u-entreprise .product__media{background:#111318}
.product__media svg{width:78%;height:78%}
.product__cat{position:absolute;top:.7rem;left:.7rem;font-size:.72rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.05em;color:var(--text-muted);background:var(--surface);border:1px solid var(--border);
  border-radius:var(--r-pill);padding:.2rem .6rem}
body.u-entreprise .product__cat{background:var(--ink);border-color:rgba(255,255,255,.12);color:rgba(255,255,255,.7)}
.product__body{padding:1.1rem 1.15rem 1.3rem;display:flex;flex-direction:column;flex:1}
.product__name{font-family:var(--font-display);font-weight:600;font-size:1.02rem;line-height:1.25;margin-bottom:.25rem}
body.u-entreprise .product__name{color:#fff}
.product__desc{font-size:.86rem;color:var(--text-muted);line-height:1.45;margin-bottom:.9rem;flex:1}
.product__foot{display:flex;align-items:center;justify-content:space-between;gap:.6rem;margin-top:auto}
.product__price{font-family:var(--font-display);font-weight:700;font-size:1.18rem;color:var(--text)}
body.u-entreprise .product__price{color:#fff}
.product__add{border:none;background:var(--coral-tint);color:var(--coral);border-radius:var(--r-pill);
  width:38px;height:38px;display:grid;place-items:center;cursor:pointer;transition:.2s;flex:none}
.product__add:hover{background:var(--coral);color:#fff}
.product__add svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}
.swatches{display:flex;gap:.35rem;margin-bottom:.8rem}
.swatch{width:16px;height:16px;border-radius:50%;border:1px solid rgba(0,0,0,.12);flex:none}
body.u-entreprise .swatch{border-color:rgba(255,255,255,.2)}

/* ======================================================================
   PHASE 2 — FICHE PRODUIT
   ====================================================================== */
.product-detail{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:start}
@media(max-width:860px){.product-detail{grid-template-columns:1fr}}
.pd-gallery{position:sticky;top:96px}
.pd-hero{aspect-ratio:1;background:var(--tint);border:1px solid var(--border);border-radius:var(--r-lg);
  display:grid;place-items:center;overflow:hidden}
body.u-entreprise .pd-hero{background:#111318;border-color:rgba(255,255,255,.09)}
.pd-hero svg{width:76%;height:76%}
.pd-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:.7rem;margin-top:.7rem}
.pd-thumb{aspect-ratio:1;background:var(--surface);border:1.5px solid var(--border);border-radius:var(--r);
  display:grid;place-items:center;cursor:pointer;overflow:hidden;transition:.2s}
.pd-thumb.is-active,.pd-thumb:hover{border-color:var(--coral)}
body.u-entreprise .pd-thumb{background:var(--ink-2);border-color:rgba(255,255,255,.1)}
.pd-thumb svg{width:70%;height:70%}
.pd-cat{font-size:.82rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--coral);margin-bottom:.5rem}
.pd-title{font-size:clamp(1.8rem,4vw,2.6rem);font-weight:700;letter-spacing:-.02em;margin-bottom:.6rem}
body.u-entreprise .pd-title{color:#fff}
.pd-price{font-family:var(--font-display);font-weight:700;font-size:1.9rem;color:var(--text);margin-bottom:.3rem}
body.u-entreprise .pd-price{color:#fff}
.pd-tax{font-size:.85rem;color:var(--text-faint);margin-bottom:1.4rem}
.pd-lead{color:var(--text-muted);font-size:1.05rem;line-height:1.6;margin-bottom:1.6rem}
body.u-entreprise .pd-lead{color:rgba(255,255,255,.68)}
.pd-optlabel{font-size:.85rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--text-faint);margin-bottom:.6rem}
.color-opts{display:flex;gap:.6rem;margin-bottom:1.6rem;flex-wrap:wrap}
.color-opt{display:inline-flex;align-items:center;gap:.5rem;padding:.45rem .9rem;border:1.5px solid var(--border);
  border-radius:var(--r-pill);cursor:pointer;font-size:.88rem;font-weight:600;transition:.2s}
.color-opt .swatch{width:14px;height:14px}
.color-opt.is-active{border-color:var(--coral);background:var(--coral-tint);color:var(--coral)}
body.u-entreprise .color-opt{border-color:rgba(255,255,255,.14);color:rgba(255,255,255,.75)}
body.u-entreprise .color-opt.is-active{border-color:var(--coral);color:#fff;background:rgba(245,39,78,.18)}
.pd-actions{display:flex;gap:.8rem;margin-bottom:1.8rem;flex-wrap:wrap}
.pd-actions .btn{flex:1;min-width:170px}
.specs{list-style:none;border-top:1px solid var(--border);margin-top:.5rem}
body.u-entreprise .specs{border-color:rgba(255,255,255,.1)}
.specs li{display:flex;justify-content:space-between;gap:1rem;padding:.75rem 0;border-bottom:1px solid var(--border);font-size:.95rem}
body.u-entreprise .specs li{border-color:rgba(255,255,255,.1)}
.specs dt{color:var(--text-muted)}
.specs .spec-k{color:var(--text-muted)}
.specs .spec-v{font-weight:600;color:var(--text);text-align:right}
body.u-entreprise .specs .spec-v{color:#fff}

/* ======================================================================
   PHASE 2 — ARTICLE (éditorial)
   ====================================================================== */
.article-wrap{max-width:720px;margin-inline:auto}
.article-meta{display:flex;flex-wrap:wrap;align-items:center;gap:.7rem;color:rgba(255,255,255,.82);font-size:.9rem;font-weight:600}
.article-meta .tag{background:var(--coral);color:#fff;border-radius:var(--r-pill);padding:.25rem .8rem;font-size:.78rem;text-transform:uppercase;letter-spacing:.04em}
.article-meta .sep{opacity:.5}
.article-body{max-width:680px;margin-inline:auto;font-size:1.12rem;line-height:1.75;color:var(--text)}
body.u-entreprise .article-body{color:rgba(255,255,255,.82)}
.article-body>p{margin-bottom:1.5rem}
.article-body .lead{font-size:1.28rem;line-height:1.6;color:var(--text);font-weight:500;margin-bottom:1.8rem}
body.u-entreprise .article-body .lead{color:#fff}
.article-body h2{font-size:clamp(1.5rem,3vw,2rem);font-weight:600;margin:2.6rem 0 1rem;letter-spacing:-.02em}
body.u-entreprise .article-body h2{color:#fff}
.article-body h3{font-size:1.28rem;font-weight:600;margin:2rem 0 .8rem}
body.u-entreprise .article-body h3{color:#fff}
.article-body ul,.article-body ol{margin:0 0 1.5rem 1.3rem;display:grid;gap:.6rem}
.article-body li{padding-left:.2rem}
.article-body strong{font-weight:600}
.article-body a{color:var(--coral);text-decoration:underline;text-underline-offset:2px}
.callout{background:var(--coral-tint);border-left:4px solid var(--coral);border-radius:var(--r);
  padding:1.4rem 1.6rem;margin:2rem 0;display:flex;gap:1rem}
body.u-entreprise .callout{background:rgba(245,39,78,.12)}
.callout__ico{flex:none;width:34px;height:34px}
.callout__ico svg{width:34px;height:34px;stroke:var(--coral);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.callout__body{font-size:1rem;line-height:1.6;color:var(--text)}
body.u-entreprise .callout__body{color:rgba(255,255,255,.85)}
.callout__body strong{display:block;margin-bottom:.25rem;color:var(--coral);font-size:.85rem;text-transform:uppercase;letter-spacing:.05em}
.pullquote{font-family:var(--font-display);font-size:1.5rem;line-height:1.35;font-weight:600;
  color:var(--ink);border-top:2px solid var(--coral);border-bottom:2px solid var(--coral);
  padding:1.6rem 0;margin:2.4rem 0}
body.u-entreprise .pullquote{color:#fff}
.author-bio{display:flex;gap:1.1rem;align-items:center;background:var(--tint);border-radius:var(--r-lg);
  padding:1.4rem 1.6rem;margin:2.8rem 0 0}
body.u-entreprise .author-bio{background:var(--ink-2)}
.author-bio .avatar{width:60px;height:60px;font-size:1.3rem;border-radius:50%}
.author-bio__name{font-weight:700;font-family:var(--font-display)}
body.u-entreprise .author-bio__name{color:#fff}
.author-bio__txt{font-size:.92rem;color:var(--text-muted)}
body.u-entreprise .author-bio__txt{color:rgba(255,255,255,.62)}

/* Blog featured */
.featured-post{display:grid;grid-template-columns:1.1fr .9fr;gap:0;border-radius:var(--r-lg);overflow:hidden;
  border:1px solid var(--border);box-shadow:var(--shadow);margin-bottom:2.5rem}
body.u-entreprise .featured-post{border-color:rgba(255,255,255,.09)}
.featured-post__media{position:relative;min-height:320px;background:var(--ink)}
.featured-post__media svg{position:absolute;inset:0;width:100%;height:100%}
.featured-post__body{background:var(--surface);padding:clamp(1.8rem,3.5vw,2.8rem);display:flex;flex-direction:column;justify-content:center}
body.u-entreprise .featured-post__body{background:var(--ink-2)}
.featured-post__tag{align-self:flex-start;background:var(--coral);color:#fff;border-radius:var(--r-pill);
  padding:.3rem .9rem;font-size:.76rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;margin-bottom:1rem}
.featured-post__title{font-size:clamp(1.6rem,3vw,2.3rem);font-weight:600;line-height:1.15;margin-bottom:.8rem}
body.u-entreprise .featured-post__title{color:#fff}
.featured-post__excerpt{color:var(--text-muted);margin-bottom:1.3rem;font-size:1.02rem}
body.u-entreprise .featured-post__excerpt{color:rgba(255,255,255,.66)}
@media(max-width:760px){.featured-post{grid-template-columns:1fr}.featured-post__media{min-height:220px}}

/* ======================================================================
   PHASE 2 — SUPPORT (portail bilingue)
   ====================================================================== */
.support-bar{background:var(--ink-2);border:1px solid rgba(255,255,255,.09);border-radius:var(--r-lg);
  padding:1rem 1.3rem;display:flex;flex-wrap:wrap;gap:1rem;align-items:center;justify-content:space-between;margin-bottom:2.4rem}
.support-bar__client{display:flex;align-items:center;gap:.8rem;color:#fff;font-weight:600}
.support-bar__client .chip{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);
  border-radius:var(--r-sm);padding:.4rem .8rem;font-family:var(--font-display);font-weight:700;color:#fff}
.lang-toggle{display:inline-flex;background:rgba(255,255,255,.08);border-radius:var(--r-pill);padding:3px}
.lang-toggle button{border:none;background:none;color:rgba(255,255,255,.6);font-family:var(--font-body);
  font-weight:600;font-size:.85rem;padding:.4rem .9rem;border-radius:var(--r-pill);cursor:pointer;transition:.2s}
.lang-toggle button.is-active{background:var(--coral);color:#fff}
[data-lang-block]{display:none}
[data-lang-block].is-shown{display:block}
.selfserve{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap);margin-bottom:3rem}
@media(max-width:860px){.selfserve{grid-template-columns:1fr}}
.help-card{background:var(--ink-2);border:1px solid rgba(255,255,255,.09);border-radius:var(--r-lg);padding:1.7rem 1.6rem;
  transition:transform .25s,border-color .25s}
.help-card:hover{transform:translateY(-5px);border-color:rgba(245,39,78,.4)}
.help-card__ico{width:46px;height:46px;border-radius:var(--r);background:rgba(245,39,78,.16);display:grid;place-items:center;margin-bottom:1rem}
.help-card__ico svg{width:24px;height:24px;stroke:var(--coral);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.help-card h3{color:#fff;font-size:1.15rem;margin-bottom:.4rem}
.help-card p{color:rgba(255,255,255,.62);font-size:.94rem;line-height:1.5}
.support-form-wrap{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,3.5rem);align-items:start}
@media(max-width:860px){.support-form-wrap{grid-template-columns:1fr}}
.promise{list-style:none;display:grid;gap:1.1rem;margin-top:1.6rem}
.promise li{display:flex;gap:.8rem;align-items:flex-start;color:rgba(255,255,255,.82)}
.promise .ico{width:22px;height:22px;stroke:var(--coral);fill:none;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;flex:none;margin-top:2px}
.note-inline{background:rgba(255,255,255,.05);border:1px dashed rgba(255,255,255,.18);border-radius:var(--r);
  padding:1rem 1.2rem;font-size:.9rem;color:rgba(255,255,255,.66);margin-top:1.6rem}
.note-inline strong{color:#fff}

/* ======================================================================
   PHASE 2 — PAIEMENT
   ====================================================================== */
.pay-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:start;max-width:960px;margin-inline:auto}
@media(max-width:820px){.pay-grid{grid-template-columns:1fr}}
.pay-summary{background:var(--tint);border:1px solid var(--border);border-radius:var(--r-lg);padding:clamp(1.6rem,3vw,2.2rem);position:sticky;top:96px}
body.u-entreprise .pay-summary{background:var(--ink-2);border-color:rgba(255,255,255,.09)}
.pay-summary h2{font-size:1.3rem;margin-bottom:1.2rem}
body.u-entreprise .pay-summary h2{color:#fff}
.pay-line{display:flex;justify-content:space-between;gap:1rem;padding:.7rem 0;border-bottom:1px solid var(--border);font-size:.95rem;color:var(--text-muted)}
body.u-entreprise .pay-line{border-color:rgba(255,255,255,.1);color:rgba(255,255,255,.66)}
.pay-line span:last-child{font-weight:600;color:var(--text)}
body.u-entreprise .pay-line span:last-child{color:#fff}
.pay-total{display:flex;justify-content:space-between;align-items:baseline;padding-top:1rem;margin-top:.5rem}
.pay-total .lbl{font-weight:600}
body.u-entreprise .pay-total .lbl{color:#fff}
.pay-total .amt{font-family:var(--font-display);font-weight:700;font-size:2rem;color:var(--coral)}
.pay-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);padding:clamp(1.8rem,3vw,2.4rem);box-shadow:var(--shadow)}
body.u-entreprise .pay-card{background:var(--ink-2);border-color:rgba(255,255,255,.09)}
.card-input{position:relative}
.card-input .brands{position:absolute;right:.9rem;top:50%;transform:translateY(-50%);display:flex;gap:.35rem}
.card-input .brands span{width:30px;height:20px;border-radius:3px;background:var(--tint);border:1px solid var(--border)}
.trust-row{display:flex;flex-wrap:wrap;gap:1.2rem;align-items:center;justify-content:center;margin-top:1.4rem;
  padding-top:1.4rem;border-top:1px solid var(--border)}
body.u-entreprise .trust-row{border-color:rgba(255,255,255,.1)}
.trust-item{display:inline-flex;align-items:center;gap:.4rem;font-size:.82rem;color:var(--text-muted);font-weight:600}
.trust-item svg{width:16px;height:16px;stroke:var(--text-muted);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.stripe-mention{text-align:center;font-size:.82rem;color:var(--text-faint);margin-top:1rem}

/* ======================================================================
   PHASE 2 — LÉGAL (politique)
   ====================================================================== */
.legal-layout{display:grid;grid-template-columns:250px 1fr;gap:clamp(2rem,5vw,4rem);align-items:start}
@media(max-width:860px){.legal-layout{grid-template-columns:1fr}}
.legal-toc{position:sticky;top:96px;border-left:2px solid var(--border);padding-left:1.2rem}
body.u-entreprise .legal-toc{border-color:rgba(255,255,255,.12)}
@media(max-width:860px){.legal-toc{position:static;border-left:none;border-top:1px solid var(--border);padding:1.2rem 0 0}}
.legal-toc__title{font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--text-faint);margin-bottom:.9rem}
.legal-toc ol{list-style:none;counter-reset:t;display:grid;gap:.55rem}
.legal-toc li{counter-increment:t}
.legal-toc a{font-size:.92rem;color:var(--text-muted);transition:color .2s;display:flex;gap:.5rem}
.legal-toc a::before{content:counter(t);color:var(--coral);font-weight:700;font-family:var(--font-display)}
.legal-toc a:hover{color:var(--coral)}
.legal-content{max-width:720px;font-size:1.04rem;line-height:1.7;color:var(--text)}
body.u-entreprise .legal-content{color:rgba(255,255,255,.8)}
.legal-content section{padding-top:1rem;margin-bottom:2.4rem;scroll-margin-top:96px}
.legal-content h2{font-size:1.5rem;font-weight:600;margin-bottom:.9rem;display:flex;gap:.7rem;align-items:baseline}
body.u-entreprise .legal-content h2{color:#fff}
.legal-content h2 .n{color:var(--coral);font-family:var(--font-display);font-weight:700}
.legal-content p{margin-bottom:1rem}
.legal-content ul{margin:0 0 1rem 1.3rem;display:grid;gap:.5rem}
.legal-content strong{font-weight:600}
body.u-entreprise .legal-content strong{color:#fff}
.legal-updated{font-size:.9rem;color:var(--text-faint);margin-bottom:2rem}
.loi25{background:var(--coral-tint);border:1px solid rgba(245,39,78,.25);border-radius:var(--r);padding:1.2rem 1.4rem;margin:1.4rem 0 2rem;
  display:flex;gap:.9rem;align-items:flex-start}
.loi25 svg{width:26px;height:26px;flex:none;margin-top:2px;stroke:var(--coral);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.loi25 p{margin:0;font-size:.98rem;line-height:1.55;color:var(--text)}
body.u-entreprise .loi25 p{color:rgba(255,255,255,.85)}
.loi25 strong{color:var(--coral)}
body.u-entreprise .loi25{background:rgba(245,39,78,.12)}
.footer__legal-links{display:inline-flex;gap:1.4rem;flex-wrap:wrap}

/* ===== Phase 2 — compléments (paiement, article inline, support head) ===== */
.breakout--inline{margin-top:2.5rem}
.pay-line--muted{color:var(--text-faint);font-size:.9rem}
.pay-line--muted span{color:var(--text-faint)}
.pay-help{display:inline-block;margin-top:1rem;color:var(--coral);font-weight:600;text-decoration:none}
.pay-help:hover{color:var(--coral-hover)}
.pay-card__title{font-family:var(--font-display);font-size:1.3rem;font-weight:600;margin-bottom:1.25rem}
.support-form-head{display:flex;justify-content:space-between;align-items:center;gap:1rem;flex-wrap:wrap;margin-bottom:1.25rem}
.support-form-head h3{font-family:var(--font-display);font-size:1.25rem;font-weight:600}
.form .check{display:flex;align-items:center;gap:.5rem;font-size:.9rem;color:var(--text-muted);flex-direction:row}
.form .check input{width:auto;margin:0}
/* Marques de cartes */
.card-input{position:relative}
.card-input .brands{position:absolute;right:12px;top:50%;transform:translateY(-50%);display:flex;gap:8px;align-items:center;pointer-events:none}
.brand--visa{font-family:var(--font-display);font-weight:700;font-style:italic;font-size:.8rem;color:#1a1f71;letter-spacing:.04em}
.brand--mc{display:flex}
.brand--mc i{width:16px;height:16px;border-radius:50%;display:block}
.brand--mc i:first-child{background:#eb001b}
.brand--mc i:last-child{background:#f79e1b;margin-left:-7px;mix-blend-mode:multiply}

/* ===== Héro photo — page d'accueil (inner large + stats clairs) ===== */
.photohero--home{min-height:clamp(560px,78vh,760px)}
.photohero--home .photohero__inner{max-width:760px}
.photohero--home .photohero__sub{max-width:600px}
.photohero--home .stats{margin-top:2rem;border-top:1px solid rgba(255,255,255,.18);padding-top:1.5rem}
.photohero--home .stats .stat__num{color:#fff}
.photohero--home .stats .stat__lbl{color:rgba(255,255,255,.72)}
@media(max-width:640px){
  .photohero--home .stats{grid-template-columns:1fr;gap:1rem}
}

/* ===== Correctifs QA Phase 2 : formulaires génériques .form, support, promise ===== */
/* Formulaire générique (support, paiement) — libellé au-dessus, champ en dessous */
.form{display:flex;flex-direction:column;gap:1.1rem}
.form label{display:flex;flex-direction:column;font-size:.85rem;font-weight:600;color:var(--text);gap:.4rem}
.form input,.form select,.form textarea{font-family:var(--font-body);font-size:1rem;font-weight:400;
  padding:.8rem .95rem;border:1.5px solid var(--border);border-radius:var(--r-sm);background:var(--surface);color:var(--text);width:100%}
.form input:focus,.form select:focus,.form textarea:focus{outline:none;border-color:var(--coral);box-shadow:0 0 0 3px var(--coral-tint)}
.form textarea{resize:vertical;min-height:96px}
.form__row{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
@media(max-width:560px){.form__row{grid-template-columns:1fr}}
.form .check{flex-direction:row;font-weight:400}
body.u-entreprise .form input,body.u-entreprise .form select,body.u-entreprise .form textarea{background:var(--ink);border-color:rgba(255,255,255,.14);color:#fff}
body.u-entreprise .form label{color:rgba(255,255,255,.85)}

/* Support : bloc formulaire en une seule colonne (annule l'ancien grid 2 col) */
.support-form-wrap{display:block;max-width:640px;margin-top:2.5rem;
  background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);padding:clamp(1.6rem,3vw,2.4rem);box-shadow:var(--shadow)}
body.u-entreprise .support-form-wrap{background:var(--ink-2);border-color:rgba(255,255,255,.09)}
.support-form-head{color:var(--text)}
body.u-entreprise .support-form-head h3{color:#fff}

/* Promesse : redéfinie en ligne compacte (icône + texte), plus de grille cassée */
.promise{display:inline-flex!important;align-items:center;gap:.5rem;margin:0;padding:0;list-style:none;
  font-size:.9rem;font-weight:600;color:var(--coral)}
.promise svg{width:18px;height:18px;flex:none;stroke:var(--coral);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
body.u-entreprise .promise{color:#FF8FA6}

/* note en ligne sous les formulaires */
.note-inline{font-size:.82rem;color:var(--text-faint);line-height:1.5}
body.u-entreprise .note-inline{color:rgba(255,255,255,.5)}

/* ==================================================================
   PHASE 2b — IMAGES DE SECTION (photos illustratives, jamais de texte par-dessus)
   ================================================================== */

/* Vignette 4:3 en tête de carte info (Internet, Télé, Téléphonie, VoIP…) */
.info-card__media{
  display:block;position:relative;width:100%;aspect-ratio:4/3;
  border-radius:var(--r);overflow:hidden;background:var(--tint);
  margin:-.4rem 0 1.4rem;
}
.info-card__media img{width:100%;height:100%;object-fit:cover;display:block}
body.u-entreprise .info-card__media{background:#111318}

/* Photo dans une carte-bénéfice / carte simple : vignette 4:3 en tête */
.card__media{
  display:block;position:relative;width:100%;aspect-ratio:4/3;
  border-radius:var(--r);overflow:hidden;background:var(--tint);margin-bottom:1.2rem;
}
.card__media img{width:100%;height:100%;object-fit:cover;display:block}
body.u-entreprise .card__media{background:#111318}

/* Bloc image + texte côte à côte (réutilise media-split mais figure autonome) */
.media-figure{
  display:grid;grid-template-columns:1.05fr .95fr;gap:0;align-items:stretch;
  border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;background:var(--surface);
}
.media-figure.media-figure--rev{grid-template-columns:.95fr 1.05fr}
.media-figure.media-figure--rev .media-figure__img{order:2}
.media-figure.media-figure--rev .media-figure__body{order:1}
body.u-entreprise .media-figure{border-color:rgba(255,255,255,.09);background:var(--ink-2)}
.media-figure__img{position:relative;min-height:320px}
.media-figure__img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.media-figure__body{padding:clamp(1.8rem,3.5vw,3rem);display:flex;flex-direction:column;justify-content:center}
.media-figure__body .eyebrow{margin-bottom:.9rem}
.media-figure__body h2{font-size:clamp(1.5rem,2.8vw,2.15rem);font-weight:600;margin-bottom:.7rem}
body.u-entreprise .media-figure__body h2{color:#fff}
.media-figure__body p{color:var(--text-muted);font-size:1.03rem;line-height:1.6;margin-bottom:1rem}
body.u-entreprise .media-figure__body p{color:rgba(255,255,255,.66)}
.media-figure__body .feature-list{margin-top:.2rem}
@media(max-width:760px){
  .media-figure,.media-figure.media-figure--rev{grid-template-columns:1fr}
  .media-figure__img{min-height:220px}
  .media-figure.media-figure--rev .media-figure__img{order:1}
  .media-figure.media-figure--rev .media-figure__body{order:2}
}

/* Photos réelles dans les conteneurs existants (blogue / produits) */
.post__thumb img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.product__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.product__media:has(img){padding:0}
.pd-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.pd-hero{position:relative}
.pd-thumb img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.pd-thumb{position:relative;overflow:hidden}

/* Article vedette (blogue) : photo de couverture */
.featured-post__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}

/* En-tête d'article : image de couverture 16:9 */
.article-cover{position:relative;width:100%;aspect-ratio:16/9;border-radius:var(--r-lg);overflow:hidden;background:var(--ink);margin:1.6rem 0 0}
.article-cover img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}

/* Photo conseiller sur la page Contact */
.contact-photo{margin:1.8rem 0 0;border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--border);background:var(--tint);aspect-ratio:4/3;position:relative}
.contact-photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
body.u-entreprise .contact-photo{border-color:rgba(255,255,255,.1)}

/* Carte produit avec photo réelle (fond studio crème) */
.product__media--photo{padding:0;background:#F3F1ED}
body.u-entreprise .product__media--photo{background:#F3F1ED}
.product__media--photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}

/* ---- Logo officiel & ouverture de session ---- */
.brand__logo{height:46px;width:auto;max-width:none;flex:none;display:block}
.brand__logo--footer{height:42px;width:auto;max-width:none}
.nav__login{display:inline-flex;align-items:center;gap:.45rem;font-weight:600;font-size:.92rem;color:var(--text-muted);white-space:nowrap;transition:color .2s ease}
.nav__login:hover{color:var(--text)}
.nav__login svg{flex:none}
body.u-entreprise .nav__login{color:rgba(255,255,255,.72)}
body.u-entreprise .nav__login:hover{color:#fff}
.nav__mobile .nav__login--mobile{display:flex;align-items:center;gap:.5rem}

/* ---- Médaillon Choix du Consommateur 2026 (reproduit du site original) ---- */
.photohero__titlerow{display:flex;align-items:center;gap:clamp(1.4rem,3.5vw,3rem)}
.photohero__award{height:clamp(110px,13vw,168px);width:auto;flex:none;filter:drop-shadow(0 10px 24px rgba(18,20,26,.45))}
@media (max-width:720px){.photohero__award{height:92px}.photohero__titlerow{gap:1rem}}


/* ---- Dégagement sous la barre flottante ---- */
.photohero{padding-top:clamp(7.8rem,11vw,9.2rem)}
.pagehero{padding-top:clamp(9.6rem,13vw,11.2rem)!important}
.nav__mobile{border-radius:0 0 15px 15px;overflow:hidden}


/* ---- Reflet animé sur le logo (cycle long, discret) ---- */
.brand{position:relative}


  86%,100%{background-position:-140% 0}
}
@media (prefers-reduced-motion:reduce){.brand::before,.brand::after{animation:none;display:none}}


/* ---- Surface de verre liquide : reflets spéculaires ---- */
.nav{overflow:visible}
.nav::before{border-radius:inherit;content:"";position:absolute;inset:0;pointer-events:none;z-index:-1;border-radius:inherit;
  background:
    linear-gradient(180deg,rgba(255,255,255,.38) 0%,rgba(255,255,255,.12) 22%,rgba(255,255,255,0) 55%,rgba(255,255,255,.1) 100%),
    radial-gradient(120% 180% at 8% -40%,rgba(255,255,255,.35) 0%,rgba(255,255,255,0) 55%),
    radial-gradient(90% 150% at 96% 130%,rgba(255,255,255,.18) 0%,rgba(255,255,255,0) 50%)}
.nav{border-top-color:rgba(255,255,255,.65)}
body.u-entreprise .nav::before{background:
    linear-gradient(180deg,rgba(255,255,255,.14) 0%,rgba(255,255,255,.04) 22%,rgba(255,255,255,0) 55%,rgba(255,255,255,.05) 100%),
    radial-gradient(120% 180% at 8% -40%,rgba(255,255,255,.12) 0%,rgba(255,255,255,0) 55%)}


/* ---- Barre : compacité et contraste adaptatif ---- */
@media (max-width:1440px){
  .nav__links{gap:1.05rem;font-size:.92rem}
  .nav__inner{gap:1rem}
  .segment__btn{padding:.45rem .8rem}
}
/* Sur les pages à héros photo (thème clair) : liens blancs tant que la barre est sur la photo */
body:not(.u-entreprise):has(main .photohero:first-child) .nav:not(.is-scrolled) .nav__links a{color:rgba(255,255,255,.88)}
body:not(.u-entreprise):has(main .photohero:first-child) .nav:not(.is-scrolled) .nav__links a:hover,
body:not(.u-entreprise):has(main .photohero:first-child) .nav:not(.is-scrolled) .nav__links a.is-current{color:#fff}
body:not(.u-entreprise):has(main .photohero:first-child) .nav:not(.is-scrolled) .nav__inner .nav__login{color:rgba(255,255,255,.85)}
body:not(.u-entreprise):has(main .photohero:first-child) .nav:not(.is-scrolled) .nav__inner .nav__login:hover{color:#fff}
body:not(.u-entreprise):has(main .photohero:first-child) .nav:not(.is-scrolled) .nav__burger span{background:#fff}


/* ---- Héros accueil : titre XL + médaillon centré dans l'espace libre ---- */
.photohero__row{display:flex;align-items:center;gap:clamp(1.5rem,4vw,3rem);width:100%}
.photohero__row .photohero__inner{flex:none}
.photohero__side{flex:1;display:flex;align-items:center;justify-content:center;align-self:stretch}
.photohero__title--xl{font-size:clamp(2.6rem,4.9vw,4.5rem);line-height:1.05;white-space:nowrap}
.photohero__side .photohero__award{height:clamp(150px,19vw,246px);flex:none;filter:drop-shadow(0 12px 28px rgba(18,20,26,.45))}
@media (max-width:960px){
  .photohero__row{flex-direction:column;align-items:flex-start;gap:1.6rem}
  .photohero__side{align-self:flex-start;justify-content:flex-start}
  .photohero__side .photohero__award{height:120px}
}

@media (max-width:960px){.photohero__title--xl{white-space:normal}}


/* ---- Pilule compacte (logo hors barre) ---- */
.nav .container{padding-inline:1.15rem}
.nav__links{gap:1.3rem;font-size:.92rem}
.nav .nav__cta{padding:.52rem 1.1rem;font-size:.88rem}
.segment__btn{padding:.36rem .8rem;font-size:.82rem}


/* ---- Barre deux rangées : reflets logo haut de gamme ---- */
.brand::before,.brand::after{content:"";position:absolute;inset:0;pointer-events:none;
  -webkit-mask:url("img/logo_cbtelecom.png?v=3") no-repeat left center/contain;
  mask:url("img/logo_cbtelecom.png?v=3") no-repeat left center/contain}
.brand::after{background:linear-gradient(115deg,transparent 34%,rgba(255,255,255,0) 42%,rgba(255,255,255,.32) 47.5%,rgba(255,255,255,.62) 50%,rgba(255,255,255,.32) 52.5%,rgba(255,255,255,0) 58%,transparent 66%) no-repeat;
  background-size:360% 100%;animation:logoSheen 14s cubic-bezier(.45,.05,.2,.95) infinite}
.brand::before{background:linear-gradient(62deg,transparent 40%,rgba(255,236,228,0) 46%,rgba(255,224,212,.28) 50%,rgba(255,255,255,.16) 52%,transparent 60%) no-repeat;
  background-size:440% 100%;animation:logoGlint 14s ease-in-out infinite;mix-blend-mode:screen}
@keyframes logoSheen{
  0%{background-position:140% 0;opacity:0}
  6%{opacity:.9}
  26%{background-position:-40% 0;opacity:1}
  34%,100%{background-position:-40% 0;opacity:0}}
@keyframes logoGlint{
  0%,48%{background-position:-70% 0;opacity:0}
  56%{opacity:.5}
  76%{background-position:170% 0;opacity:.35}
  84%,100%{background-position:170% 0;opacity:0}}

/* ---- Rangée du haut : profil ---- */
.profile-chip{display:flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;
  background:rgba(250,249,247,.3);backdrop-filter:blur(20px) saturate(1.8);-webkit-backdrop-filter:blur(20px) saturate(1.8);
  border:1px solid rgba(255,255,255,.55);color:var(--text);box-shadow:0 8px 22px rgba(18,20,26,.22);transition:transform .2s ease}
.profile-chip:hover{transform:scale(1.06)}
.profile-chip[hidden]{display:none}
body.u-entreprise .profile-chip{background:rgba(18,20,26,.35);color:#fff;border-color:rgba(255,255,255,.28)}
body:not(.u-entreprise):has(main .photohero:first-child) .navwrap:has(.nav:not(.is-scrolled)) .profile-chip{color:#fff;background:rgba(18,20,26,.28);border-color:rgba(255,255,255,.4)}

/* ---- Liens avec icônes + infobulles ---- */
.nav__links a{display:inline-flex;align-items:center;gap:.45rem}
.nav__ico{display:none;width:19px;height:19px;flex:none}
.nav__login{position:relative}
.segment__btn{position:relative}
.nav__login::before,.nav__links a[data-label]::before,.segment__btn[data-label]::before,.nav__lang-btn[data-label]::before{content:attr(data-label);position:absolute;top:calc(100% + 14px);left:50%;
  transform:translateX(-50%) translateY(-4px);background:var(--ink);color:#fff;font-size:.74rem;font-weight:600;
  padding:.36rem .68rem;border-radius:8px;white-space:nowrap;opacity:0;pointer-events:none;
  transition:opacity .18s ease,transform .18s ease;box-shadow:0 10px 24px rgba(18,20,26,.28);z-index:80}
.nav__links a[data-label]::before,.segment__btn[data-label]::before,.nav__lang-btn[data-label]::before{display:none}
.nav__login:hover::before,.nav__login:focus-visible::before{opacity:1;transform:translateX(-50%) translateY(0)}
@media (min-width:700px) and (max-width:1179px){
  .nav__links{gap:1.05rem}
  .nav__links a{padding:.3rem .15rem}
  .nav__links a .lbl{display:none}
  .nav__links a .nav__ico{display:block}
  .nav__links a::after{display:none}
  .nav__links a[data-label]::before{display:block}
  .nav__links a[data-label]:hover::before,.nav__links a[data-label]:focus-visible::before{opacity:1;transform:translateX(-50%) translateY(0)}
  .nav__lang-btn .nav__lang-code{display:none}
  .nav__lang-btn[data-label]::before{display:block}
  .nav__lang-btn[data-label]:hover::before,.nav__lang-btn[data-label]:focus-visible::before{opacity:1;transform:translateX(-50%) translateY(0)}
  .nav__right{gap:.75rem}
}
@media (max-width:699px){
  .nav__links{display:none}
  .navwrap .nav{margin-left:0;width:auto;align-self:flex-end}
  .navwrap:has(.nav.is-scrolled) .nav{width:auto}
  .nav__inner{width:auto;max-width:none;gap:.6rem;padding:0 .85rem}
  .nav__right{margin-left:0;gap:.7rem}
  .nav__mobile{position:absolute;top:calc(100% + 10px);right:0;width:min(400px,calc(100vw - 1.2rem));
    border-radius:16px;border:1px solid var(--border);box-shadow:0 18px 48px rgba(18,20,26,.22)}
  body.u-entreprise .nav__mobile{border-color:rgba(255,255,255,.12)}
}
@media (max-width:520px){
  .navwrap__utils .segment__btn .seg__lbl{display:none}
  .navwrap__utils .segment__btn .seg__ico{display:block}
  .navwrap__utils .segment__btn{padding:.45rem .62rem}
}


/* ---- Burger permanent : panneau liens supplémentaires ---- */
.nav.is-open .nav__mobile{display:flex}
.nav__burger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav__burger.is-open span:nth-child(2){opacity:0}
.nav__burger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.nav__mobile-main{display:contents}
@media (min-width:700px){.nav__mobile-main{display:none}}
.nav__extra-head{font-size:.72rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--text-muted);padding:.55rem .2rem .15rem}
body.u-entreprise .nav__extra-head{color:rgba(255,255,255,.55)}

/* ---- Cartes services : photos liées ---- */
.card__media{display:block;border-radius:14px;overflow:hidden;aspect-ratio:16/10;margin-bottom:1.15rem}
.card__media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s ease}
.card:hover .card__media img{transform:scale(1.045)}


/* ---- Verre sombre sur héros photo (barre non défilée) ---- */
body:not(.u-entreprise):has(main .photohero:first-child) .nav:not(.is-scrolled){
  background:rgba(18,20,26,.32);border-color:rgba(255,255,255,.3)}
body:not(.u-entreprise):has(main .photohero:first-child) .nav:not(.is-scrolled)::before{opacity:.5}
body:not(.u-entreprise):has(main .photohero:first-child) .navwrap:has(.nav:not(.is-scrolled)) .navwrap__utils .segment{
  background:rgba(250,249,247,.16);border-color:rgba(255,255,255,.25)}
body:not(.u-entreprise):has(main .photohero:first-child) .navwrap:has(.nav:not(.is-scrolled)) .navwrap__utils .segment__btn{color:rgba(255,255,255,.8)}
body:not(.u-entreprise):has(main .photohero:first-child) .navwrap:has(.nav:not(.is-scrolled)) .navwrap__utils .segment__btn.is-active{color:var(--text)}

/* ---- Défilement : la ligne du haut se replie, la pilule reste ---- */
.navwrap:has(.nav.is-scrolled) .navwrap__top{max-height:0;opacity:0;margin-bottom:0;overflow:hidden;pointer-events:none}
.navwrap:has(.nav.is-scrolled) .nav{margin-left:0}
@media (prefers-reduced-motion:reduce){.navwrap__top,.navwrap .nav{transition:none}}

/* ---- Segment compact : icônes univers ---- */
.seg__ico{display:none;width:17px;height:17px;flex:none;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.segment a.segment__btn{gap:.42rem}

/* ---- Sélecteur de langue ---- */
.nav__lang{position:relative;display:flex;align-items:center}
.nav__lang-btn{position:relative;display:inline-flex;align-items:center;gap:.35rem;background:none;border:none;cursor:pointer;
  font-family:var(--font-body);font-weight:600;font-size:.85rem;color:var(--text-muted);padding:.3rem .1rem;transition:color .2s ease}
.nav__lang-btn:hover{color:var(--text)}
.nav__lang-btn .nav__lang-globe{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;flex:none}
.nav__lang-btn .nav__lang-chev{width:11px;height:11px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s ease}
.nav__lang.is-open .nav__lang-chev{transform:rotate(180deg)}
.nav__lang-menu{position:absolute;top:calc(100% + 16px);right:0;width:min(430px,calc(100vw - 2.4rem));max-height:min(430px,62vh);overflow:auto;
  background:var(--surface);border:1px solid var(--border);border-radius:16px;box-shadow:0 24px 60px rgba(18,20,26,.28);
  padding:.55rem;display:grid;grid-template-columns:repeat(2,1fr);gap:2px;z-index:90}
.nav__lang-menu[hidden]{display:none}
.nav__lang-menu button{display:flex;align-items:center;justify-content:space-between;gap:.55rem;padding:.48rem .68rem;border:none;background:none;
  border-radius:9px;cursor:pointer;font-family:var(--font-body);font-size:.9rem;font-weight:500;color:var(--text);text-align:left;transition:background .15s ease}
.nav__lang-menu button:hover{background:var(--tint)}
.nav__lang-menu button .code{font-size:.68rem;font-weight:700;letter-spacing:.08em;color:var(--text-muted)}
.nav__lang-menu button[aria-checked="true"]{color:var(--coral);font-weight:700}
.nav__lang-menu button[aria-checked="true"] .code{color:var(--coral)}
body.u-entreprise .nav__lang-btn{color:rgba(255,255,255,.72)}
body.u-entreprise .nav__lang-btn:hover{color:#fff}
body.u-entreprise .nav__lang-menu{background:var(--ink-2);border-color:rgba(255,255,255,.12);box-shadow:0 24px 60px rgba(0,0,0,.5)}
body.u-entreprise .nav__lang-menu button{color:rgba(255,255,255,.85)}
body.u-entreprise .nav__lang-menu button:hover{background:rgba(255,255,255,.07)}
body.u-entreprise .nav__lang-menu button .code{color:rgba(255,255,255,.5)}
body:not(.u-entreprise):has(main .photohero:first-child) .nav:not(.is-scrolled) .nav__lang-btn{color:rgba(255,255,255,.85)}
body:not(.u-entreprise):has(main .photohero:first-child) .nav:not(.is-scrolled) .nav__lang-btn:hover{color:#fff}
@media (max-width:560px){.nav__lang-menu{grid-template-columns:1fr}}

/* ---- Mobile : la ligne du haut persiste au défilement (verre) ---- */
@media (max-width:699px){
  .navwrap:has(.nav.is-scrolled) .navwrap__top{max-height:60px;opacity:1;margin-bottom:0;pointer-events:auto;overflow:visible;
    background:rgba(250,249,247,.6);backdrop-filter:blur(28px) saturate(1.9);-webkit-backdrop-filter:blur(28px) saturate(1.9);
    border:1px solid rgba(255,255,255,.5);border-radius:16px;padding:.3rem .75rem;box-shadow:0 14px 40px rgba(18,20,26,.2)}
  body.u-entreprise .navwrap:has(.nav.is-scrolled) .navwrap__top{background:rgba(18,20,26,.55);border-color:rgba(255,255,255,.16)}
}

/* ---- Chip profil dans la pilule ---- */
.nav__right .profile-chip{width:34px;height:34px}

