/* ============================================================
   BÉNI CAVANO — CSS OFFICIEL v3.0
   Palette : #FAF9F6 · #FFFFFF · #111111 · #F47B20
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
  --bg:          #FAF9F6;
  --bg-alt:      #FFFFFF;
  --dark:        #111111;
  --darker:      #080808;
  --text:        #111111;
  --muted:       #6B6B6B;
  --white:       #FFFFFF;
  --accent:      #F47B20;
  --accent-h:    #D96512;
  --accent-glow: rgba(244,123,32,0.22);
  --accent-light:#FFF1E6;
  --border:      #E8E6E1;
  --border-dark: rgba(255,255,255,0.09);
  --card:        #FFFFFF;

  --font-display:'Cormorant Garamond','Playfair Display',Georgia,serif;
  --font-body:   'Inter',system-ui,-apple-system,sans-serif;

  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4.5rem;

  --ease: 0.28s ease;

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-full: 9999px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: var(--ease); }
ul   { list-style: none; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── CONTAINER ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 var(--space-md); }

/* ── SECTIONS ── */
.section        { padding: var(--space-xl) 0; background: var(--bg); }
.section--alt   { background: var(--bg-alt); }
.section--dark  { background: var(--dark); }
.section--darker{ background: var(--darker); }
.section--grey  { background: #F2F1EF; }

.section__header { text-align: center; max-width: 760px; margin: 0 auto var(--space-lg); }
.section__eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--space-sm);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -.01em; color: var(--text);
}
.section__title--light { color: var(--white); }
.section__desc  { font-size: 1rem; color: var(--muted); line-height: 1.8; }
.section__desc--light { color: rgba(255,255,255,.72); }
.section__cta   { text-align: center; margin-top: var(--space-lg); }

/* ── ANIMATIONS ── */
.animate-fade-up { opacity:0; transform:translateY(30px); animation: fadeUp .8s ease forwards; }
.delay-1 { animation-delay:.2s; } .delay-2 { animation-delay:.4s; }
.delay-3 { animation-delay:.6s; } .delay-4 { animation-delay:.8s; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

.reveal { opacity:0; transform:translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity:1; transform:translateY(0); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; font-family: var(--font-body);
  font-size: .875rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; border-radius: var(--r-sm);
  cursor: pointer; border: 2px solid transparent; transition: var(--ease);
  white-space: nowrap; text-decoration: none;
}
.btn--accent  { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-h); border-color: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn--outline:hover { background: var(--text); color: var(--white); border-color: var(--text); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--large { padding: 1.125rem 2.5rem; }
.btn--sm    { padding: .55rem 1.25rem; font-size: .78rem; }

/* Hero outline blanc */
.hero .btn--outline { color: var(--white); border-color: var(--white); }
.hero .btn--outline:hover { background: var(--white); color: var(--text); }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: .5rem 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease), background var(--ease);
}
.header.scrolled { background: rgba(255,255,255,.99); box-shadow: 0 2px 16px rgba(0,0,0,.07); }

.header__container {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1240px; margin: 0 auto; padding: 0 var(--space-md); gap: 1rem;
}
.header__logo { display: flex; align-items: center; flex-shrink: 0; line-height: 0; text-decoration: none; }
.header__logo-img { height: 42px; width: auto; max-width: 180px; object-fit: contain; filter: none; }
.header__logo:hover .header__logo-img { opacity: .88; }

.header__nav-list { display: flex; align-items: center; gap: .15rem; }
.header__nav-link {
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: #444;
  padding: .45rem .6rem; border-radius: var(--r-sm);
  transition: var(--ease); white-space: nowrap;
}
.header__nav-link:hover, .header__nav-link.active { color: var(--accent); background: var(--accent-light); }
.header__nav-link--ext { color: var(--accent); font-weight: 700; }
.header__nav-link--ext:hover { color: var(--accent-h); background: var(--accent-light); }
.header__nav-separator { width: 1px; height: 16px; background: var(--border); margin: 0 .25rem; align-self: center; }

.header__actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.header__cta { padding: .4rem .85rem; font-size: .68rem; }

/* Hamburger */
.header__hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 44px; height: 44px; padding: 12px 10px;
  background: none; border: none; cursor: pointer;
  border-radius: var(--r-sm); transition: background var(--ease);
}
.header__hamburger:hover { background: rgba(0,0,0,.05); }
.header__hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.header__hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 998; opacity: 0; transition: opacity .3s;
}
.mobile-overlay.active { display: block; opacity: 1; }

/* Mobile nav */
@media (max-width: 1024px) {
  .header__nav {
    position: fixed; top: 0; right: -100%;
    width: min(320px, 85vw); height: 100vh;
    background: var(--white); z-index: 999;
    padding: 4.5rem 1.5rem 2rem;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; border-left: 1px solid var(--border);
  }
  .header__nav.open { right: 0; }
  .header__nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
  .header__nav-link { display: block; width: 100%; padding: .9rem .5rem; font-size: .9rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .header__nav-separator { display: none; }
  .header__hamburger { display: flex; }
  /* Bouton Collaborer dans le menu mobile — masqué sur desktop */
  .header__nav-collab { display: inline-flex; margin: 1.25rem 0.5rem 0; width: calc(100% - 1rem); justify-content: center; }

  /* Logo gauche | Collaborer + Hamburger droite */
  .header__container { padding: 0 1rem; }
  .header__logo { position: static; transform: none; }
  .header__actions { margin-left: auto; }
  .header__cta { display: inline-flex; }
}

/* Masquer header__nav-collab sur desktop */
.header__nav-collab { display: none; }
@media (max-width: 1280px) {
  .header__nav-link { font-size: .68rem; padding: .4rem .5rem; }
}

/* Bouton fermer menu mobile */
.header__nav-close {
  display: none; position: absolute; top: 1rem; right: 1rem;
  width: 38px; height: 38px; background: none; border: 1.5px solid var(--border);
  border-radius: 50%; font-size: 1.2rem; color: var(--text); cursor: pointer;
  align-items: center; justify-content: center; transition: var(--ease);
}
.header__nav-close:hover { background: var(--accent-light); color: var(--accent); border-color: var(--accent); }
@media (max-width: 1024px) { .header__nav-close { display: flex; } }

/* ── HERO ── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.3) 0%, rgba(10,10,10,.5) 40%, rgba(10,10,10,.88) 80%, rgba(10,10,10,.97) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  padding: 8rem var(--space-md) var(--space-xl);
  max-width: 1240px; margin: 0 auto; width: 100%;
}
.hero__tag   { font-size: .75rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 900; line-height: .95; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero__title span { color: var(--accent); }
.hero__phrase { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.85); max-width: 560px; line-height: 1.7; margin-bottom: 2.5rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__socials { display: flex; gap: 1rem; align-items: center; }
.hero__social { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); border-radius: var(--r-sm); transition: var(--ease); }
.hero__social svg { width: 18px; height: 18px; }
.hero__social:hover { color: var(--white); background: rgba(255,255,255,.12); transform: translateY(-2px); }
.hero__scroll { position: absolute; bottom: 2rem; right: 2rem; display: flex; flex-direction: column; align-items: center; gap: .5rem; z-index: 1; }
.hero__scroll span { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); writing-mode: vertical-rl; }
.hero__scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(.5);opacity:.3} }

/* ── PAGE HERO (pages internes) ── */
.page-hero {
  padding: 8rem 0 4rem; background: var(--dark); text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%;
  background: radial-gradient(ellipse at center, rgba(244,123,32,.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__eyebrow { display:inline-block; font-size:.75rem; font-weight:700; letter-spacing:.25em; text-transform:uppercase; color:var(--accent); margin-bottom:1rem; }
.page-hero__title { font-family:var(--font-display); font-size:clamp(2.5rem,7vw,5rem); font-weight:900; color:var(--white); line-height:1.05; letter-spacing:-.02em; margin-bottom:1.25rem; }
.page-hero__desc { font-size:1.05rem; color:rgba(255,255,255,.65); max-width:600px; margin:0 auto; line-height:1.8; }

/* ── INTRO ── */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.intro__image { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4; }
.intro__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.intro__image:hover img { transform: scale(1.03); }
.intro__image-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(10,10,10,.88); backdrop-filter: blur(8px);
  padding: .75rem 1.25rem; border-radius: var(--r-md); border-left: 3px solid var(--accent);
}
.intro__image-badge span { display: block; font-size: .8rem; color: rgba(255,255,255,.85); font-weight: 500; }
.intro__image-badge span:first-child { color: var(--white); font-weight: 700; }
.intro__content { padding-left: var(--space-md); }
.intro__text { color: var(--muted); margin-bottom: 1.25rem; line-height: 1.8; }
.intro__text strong { color: var(--text); }
.intro__btns { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; align-items: center; }
@media (max-width: 768px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__content { padding-left: 0; text-align: center; }
  .intro__btns { justify-content: center; }
}

/* ── FILTER BAR ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: var(--space-lg); }
.filter-btn {
  padding: .5rem 1.25rem; font-size: .78rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; background: transparent;
  border: 1px solid var(--border); color: var(--muted);
  border-radius: var(--r-full); cursor: pointer; transition: var(--ease);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* Filter sur fond sombre */
.section--dark .filter-btn, .section--darker .filter-btn {
  color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.2);
}
.section--dark .filter-btn:hover, .section--darker .filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.section--dark .filter-btn.active, .section--darker .filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* ── VIDEO GRID ── */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.video-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.video-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.1); border-color: var(--accent); }

/* Miniature cliquable */
a.video-card__thumb {
  display: block; position: relative; aspect-ratio: 9/16; overflow: hidden; cursor: pointer;
}
a.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.video-card:hover a.video-card__thumb img { transform: scale(1.05); }
.video-card__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.video-card:hover .video-card__overlay { opacity: 1; }
.video-card__play {
  width: 56px; height: 56px; background: var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transform: scale(.85); transition: transform .3s;
}
.video-card:hover .video-card__play { transform: scale(1); }
.video-card__play svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
.video-card__duration {
  position: absolute; bottom: .75rem; right: .75rem;
  background: rgba(0,0,0,.8); color: var(--white);
  font-size: .72rem; font-weight: 600; padding: .2rem .5rem; border-radius: 3px;
}

.video-card__info { padding: 1.25rem; }
.video-card__category { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: .5rem; }
.video-card__title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: .75rem; }
.video-card__author { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.video-card__author-logo { height: 20px; width: auto; filter: none; }
.video-card__author span { font-size: .75rem; font-weight: 600; color: var(--muted); }
.video-card__actions { display: flex; gap: .5rem; }
a.video-card__btn { display: flex; align-items: center; justify-content: center; text-decoration: none; }
.video-card__btn {
  flex: 1; padding: .5rem; font-size: .72rem; font-weight: 600;
  letter-spacing: .05em; text-align: center; border-radius: var(--r-sm);
  cursor: pointer; transition: var(--ease); border: 1px solid var(--border);
  background: transparent; color: var(--muted);
}
.video-card__btn:hover { background: var(--accent-light); color: var(--accent); border-color: var(--accent); }
.video-card__btn--play { background: var(--accent); border-color: var(--accent); color: var(--white); }
.video-card__btn--play:hover { background: var(--accent-h); border-color: var(--accent-h); color: var(--white); }
.grid-empty { color: rgba(255,255,255,.45); text-align: center; grid-column: 1/-1; padding: 3rem 0; font-size: 1rem; }

/* ── OFFERS GRID ── */
.offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
@media (max-width: 1024px) { .offers-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .offers-grid { grid-template-columns: 1fr; } }
.offer-card {
  padding: 2.5rem 2rem; border: 1px solid var(--border);
  border-radius: var(--r-lg); text-align: center; background: var(--card);
  transition: var(--ease);
}
.offer-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(244,123,32,.1); transform: translateY(-4px); }
.offer-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.offer-card__title { font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--text); margin-bottom: .75rem; }
.offer-card__desc { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ── COLLAB GRID ── */
.collab-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: rgba(255,255,255,.04); border-radius: var(--r-lg); overflow: hidden; }
@media (max-width: 640px) { .collab-grid { grid-template-columns: 1fr; } }
.collab-card { padding: 2.5rem 2rem; background: var(--dark); transition: background .3s; }
.collab-card:hover { background: #1a1a1a; }
.collab-card__num { font-size: .72rem; font-weight: 700; letter-spacing: .15em; color: var(--accent); display: block; margin-bottom: 1rem; }
.collab-card__title { font-size: .88rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: .75rem; }
.collab-card__desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .why-grid { grid-template-columns: 1fr; } }
.why-card { text-align: center; padding: 2rem 1rem; }
.why-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: .75rem; }
.why-card__desc  { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ── PORTFOLIO ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
#portfolioGrid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
@media (max-width: 900px) { #portfolioGrid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { #portfolioGrid { grid-template-columns: 1fr; } }

.portfolio-card { border-radius: var(--r-lg); overflow: hidden; background: var(--card); box-shadow: 0 2px 12px rgba(0,0,0,.06); border: 1px solid var(--border); transition: transform .3s, box-shadow .3s, border-color .3s; }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.1); border-color: var(--accent); }
.portfolio-card__thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.portfolio-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.portfolio-card:hover .portfolio-card__thumb img { transform: scale(1.05); }
.portfolio-card__badge { position: absolute; top: .75rem; left: .75rem; font-size: .68rem; font-weight: 700; letter-spacing: .06em; padding: .3rem .65rem; border-radius: var(--r-full); }
.portfolio-card__badge--confirmed { background: #22c55e; color: #fff; }
.portfolio-card__badge--pending   { background: rgba(0,0,0,.65); color: rgba(255,255,255,.85); }
.portfolio-card__info   { padding: 1.5rem; }
.portfolio-card__category { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: .4rem; }
.portfolio-card__title  { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.portfolio-card__brand  { font-size: .8rem; color: var(--muted); }
.portfolio-card__location { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: .25rem; margin-top: .3rem; }
.portfolio-card__desc   { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-top: .5rem; }

.collab-stats { display: flex; justify-content: center; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; }
.collab-stat { text-align: center; }
.collab-stat__num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; display: block; }
.collab-stat__label { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; margin-top: .35rem; }

/* ── SOCIAL CARDS ── */
.socials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1rem; }
.social-card { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--card); transition: transform .3s, box-shadow .3s, border-color .3s; }
.social-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(244,123,32,.1); border-color: var(--accent); }
.social-card__icon { width: 48px; height: 48px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.social-card__icon svg { width: 22px; height: 22px; }
.social-card__icon--tiktok    { background: #000; color: #fff; }
.social-card__icon--instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.social-card__icon--facebook  { background: #1877f2; color: #fff; }
.social-card__icon--youtube   { background: #ff0000; color: #fff; }
.social-card__icon--linkedin  { background: #0077b5; color: #fff; }
.social-card__info { flex: 1; min-width: 0; }
.social-card__platform { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.social-card__handle { display: block; font-size: .9rem; font-weight: 600; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.social-card__arrow { color: #ccc; font-size: 1.2rem; transition: transform .3s, color .3s; }
.social-card:hover .social-card__arrow { transform: translateX(4px); color: var(--accent); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 2rem; }
.blog-card { border-radius: var(--r-lg); overflow: hidden; background: var(--card); border: 1px solid var(--border); transition: transform .3s, box-shadow .3s, border-color .3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.1); border-color: var(--accent); }
.blog-card__thumb { aspect-ratio: 16/9; overflow: hidden; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.blog-card__cat  { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.blog-card__read { font-size: .75rem; color: var(--muted); }
.blog-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: .75rem; }
.blog-card__title a:hover { color: var(--accent); }
.blog-card__excerpt { font-size: .875rem; color: var(--muted); line-height: 1.7; flex: 1; }
.blog-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.blog-card__author, .blog-card__date { font-size: .78rem; color: var(--muted); }

/* ── BÉNI TECH ── */
.beni-tech__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--space-lg); align-items: center; }
.beni-tech__text { color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 2rem; }
.beni-tech__text strong { color: var(--accent); }
.beni-tech__visual { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; }
.beni-tech__visual img { width: 100%; height: 100%; object-fit: cover; }
.beni-tech__btns { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (max-width: 768px) { .beni-tech__inner { grid-template-columns: 1fr; } .beni-tech__visual { display: none; } }

/* ── CTA FINAL ── */
.cta-final { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; }
.cta-final__bg { position: absolute; inset: 0; z-index: 0; }
.cta-final__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.78) 100%); }
.cta-final__content { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; padding: var(--space-xl) var(--space-md); }
.cta-final__title { font-family: var(--font-display); font-size: clamp(1.8rem, 4.5vw, 3.2rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; }
.cta-final__desc  { font-size: 1rem; color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 2.5rem; }
.cta-final__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content:''; position:absolute; left:0; top:.5rem; bottom:.5rem; width:2px; background:linear-gradient(to bottom,var(--accent),transparent); }
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item::before { content:''; position:absolute; left:-2.4rem; top:.4rem; width:10px; height:10px; background:var(--accent); border-radius:50%; }
.timeline-item__year  { font-size:.72rem; font-weight:700; letter-spacing:.15em; color:var(--accent); text-transform:uppercase; margin-bottom:.4rem; }
.timeline-item__title { font-family:var(--font-display); font-size:1.2rem; font-weight:700; color:var(--text); margin-bottom:.5rem; }
.timeline-item__desc  { font-size:.9rem; color:var(--muted); line-height:1.7; }

/* ── FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--space-lg); align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.contact-info p  { color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.form { background: var(--card); padding: 2.5rem; border-radius: var(--r-lg); box-shadow: 0 4px 32px rgba(0,0,0,.07); border: 1px solid var(--border); }
@media (max-width: 600px) { .form { padding: 1.5rem; } }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__group { margin-bottom: 1.25rem; }
.form__label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text); margin-bottom: .4rem; }
.form__input, .form__select, .form__textarea {
  width: 100%; padding: .875rem 1rem; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r-md);
  font-family: var(--font-body); font-size: .9rem; color: var(--text);
  transition: border-color .2s, box-shadow .2s; appearance: none;
}
.form__input::placeholder, .form__textarea::placeholder { color: #aaa; }
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244,123,32,.15); background: var(--white);
}
.form__textarea { min-height: 140px; resize: vertical; }
.form__select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form__error { color: var(--accent); font-size: .78rem; display: block; margin-top: .3rem; }

/* ── AI SECTION ── */
.ai-creation { background: var(--darker); position: relative; overflow: hidden; }
.ai-creation::before { content:''; position:absolute; top:-200px; right:-200px; width:600px; height:600px; background:radial-gradient(circle,rgba(244,123,32,.07) 0%,transparent 65%); pointer-events:none; }
.ai-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .ai-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .ai-grid { grid-template-columns: 1fr; } }
.ai-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; transition: border-color .3s, transform .3s; }
.ai-card:hover { border-color: rgba(244,123,32,.4); transform: translateY(-4px); }
.ai-card__icon-wrap { width: 56px; height: 56px; background: rgba(244,123,32,.12); border: 1px solid rgba(244,123,32,.22); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; }
.ai-card__icon { font-size: 1.6rem; }
.ai-card__tag   { display: inline-block; font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.ai-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.ai-card__desc  { font-size: .88rem; color: rgba(255,255,255,.62); line-height: 1.75; }
.ai-card__tools { display: flex; flex-wrap: wrap; gap: .4rem; }
.ai-tool-badge  { font-size: .7rem; font-weight: 600; padding: .3rem .75rem; background: rgba(244,123,32,.1); color: var(--accent); border: 1px solid rgba(244,123,32,.22); border-radius: var(--r-full); }
.ai-player { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: .875rem 1rem; }
.ai-player__btn { width: 38px; height: 38px; background: var(--accent); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background .2s, transform .2s; }
.ai-player__btn:hover { background: var(--accent-h); transform: scale(1.08); }
.ai-player__btn svg { width: 16px; height: 16px; fill: white; margin-left: 2px; }
.ai-player__info { flex: 1; min-width: 0; }
.ai-player__title { font-size: .72rem; color: rgba(255,255,255,.65); display: block; margin-bottom: .4rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ai-player__bar  { height: 4px; background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; }
.ai-player__progress { height: 100%; width: 0%; background: var(--accent); border-radius: 4px; transition: width .1s linear; }
.ai-player__badge { font-size: .6rem; font-weight: 800; letter-spacing: .1em; background: var(--accent); color: white; padding: .2rem .5rem; border-radius: 3px; }
.ai-photos-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .5rem; border-radius: var(--r-md); overflow: hidden; }
.ai-photos-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .4s; }
.ai-photos-grid img:hover { transform: scale(1.05); }

/* ── FOOTER ── */
.footer { background: var(--darker); padding: var(--space-xl) 0 var(--space-md); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: var(--space-lg); padding-bottom: var(--space-lg); border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: span 2; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } .footer__brand { grid-column: span 1; } .footer__bottom { flex-direction: column; text-align: center; } }
.footer__logo { display: inline-flex; align-items: center; margin-bottom: .75rem; line-height: 0; }
.footer__logo-img { height: 40px; width: auto; max-width: 160px; filter: none; }
.footer__tagline { font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 1.5rem; }
.footer__socials { display: flex; gap: .75rem; flex-wrap: wrap; }
.footer__socials a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-sm); transition: var(--ease); }
.footer__socials a svg { width: 16px; height: 16px; }
.footer__socials a:hover { color: var(--white); border-color: var(--accent); background: rgba(244,123,32,.1); }
.footer__nav h4, .footer__contact h4 { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer__nav ul li { margin-bottom: .75rem; }
.footer__nav ul li a { font-size: .875rem; color: rgba(255,255,255,.5); transition: var(--ease); }
.footer__nav ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer__contact p { font-size: .875rem; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }
.footer__benitech { margin-top: 1.5rem; }
.footer__benitech a { font-size: .8rem; color: var(--accent); }
.footer__benitech a:hover { opacity: .8; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer__bottom a { color: rgba(255,255,255,.45); }
.footer__bottom a:hover { color: var(--accent); }

/* ── VIDEO MODAL ── */
.video-modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.92); align-items: center; justify-content: center; padding: 2rem; }
.video-modal.open { display: flex; }
.video-modal__inner { position: relative; width: 100%; max-width: 900px; aspect-ratio: 16/9; }
.video-modal__inner iframe { width: 100%; height: 100%; border: none; border-radius: var(--r-md); }
.video-modal__close { position: absolute; top: -3rem; right: 0; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: var(--r-sm); transition: background .2s; }
.video-modal__close:hover { background: rgba(255,255,255,.1); }

/* ── WHATSAPP FLOTTANT ── */
.whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 1500;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.15);
  transition: transform .25s, box-shadow .25s; text-decoration: none;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.whatsapp-float::before { content:''; position:absolute; inset:-4px; border-radius:50%; background:rgba(37,211,102,.22); animation: waPulse 2.5s ease-in-out infinite; }
@keyframes waPulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.18);opacity:0} }
@media (max-width: 480px) { .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; } .whatsapp-float svg { width: 24px; height: 24px; } }

/* ── GALERIE ── */
.gallery-grid { columns: 4 220px; column-gap: 1rem; }
.gallery-item { break-inside: avoid; position: relative; margin-bottom: 1rem; border-radius: var(--r-md); overflow: hidden; cursor: pointer; background: var(--bg); }
.gallery-item img { width: 100%; height: auto; display: block; transition: transform .4s; }
.gallery-item__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%); display: flex; align-items: flex-end; justify-content: space-between; padding: .875rem; opacity: 0; transition: opacity .3s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__caption { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.92); }
.gallery-item__zoom { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: white; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; cursor: pointer; transition: background .2s; }
.gallery-item__zoom:hover { background: var(--accent); border-color: var(--accent); }
@media (max-width: 768px) { .gallery-grid { columns: 2 150px; } }
@media (max-width: 480px) { .gallery-grid { columns: 2 120px; column-gap: .5rem; } .gallery-item { margin-bottom: .5rem; } }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,.95); align-items: center; justify-content: center; padding: 1.5rem; }
.lightbox.open { display: flex; }
.lightbox__inner { max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.lightbox__inner img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: var(--r-md); box-shadow: 0 8px 48px rgba(0,0,0,.6); }
.lightbox__caption { font-size: .85rem; color: rgba(255,255,255,.65); text-align: center; }
.lightbox__close, .lightbox__prev, .lightbox__next { position: fixed; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: white; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s; z-index: 3001; }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--accent); border-color: var(--accent); }
.lightbox__close { top: 1.25rem; right: 1.25rem; width: 44px; height: 44px; font-size: 1.25rem; }
.lightbox__prev  { left: 1.25rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.8rem; }
.lightbox__next  { right: 1.25rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.8rem; }

/* ── HIDE MOBILE ── */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline; } }

/* ── MOBILE GLOBAL ── */
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  .hero__content { padding: 6rem 1rem 3rem; text-align: center; }
  .hero__phrase { max-width: 100%; }
  .hero__actions, .cta-final__actions { justify-content: center; }
  .hero__socials { justify-content: center; }
  .hero__scroll  { display: none; }
  .page-hero     { padding: 6rem 1rem 3rem; }
  .section__header { text-align: center; }
  .collab-stats  { gap: 2rem; }
  .footer__brand, .contact-info { text-align: center; }
  .footer__socials { justify-content: center; }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(3rem, 14vw, 5rem); }
  .section__title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .cta-final__actions { flex-direction: column; align-items: center; }
  .cta-final__actions .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* ── Portfolio carte complète ── */
.portfolio-card__num {
  position: absolute; bottom: .75rem; right: .75rem;
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: rgba(255,255,255,.25); line-height: 1; pointer-events: none;
}
.portfolio-card__tagline {
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .6rem; margin-top: .15rem;
}
.portfolio-card--full .portfolio-card__desc {
  font-size: .88rem; color: var(--muted); line-height: 1.7; margin-top: .4rem;
}
.portfolio-card--full .portfolio-card__info { padding: 1.5rem; }
.portfolio-card--full:hover { border-color: var(--accent); }

/* ── Nouvelles icônes réseaux sociaux ── */
.social-card__icon--x        { background: #000000; color: #fff; }
.social-card__icon--snapchat { background: #FFFC00; color: #000; }

/* ── Contact page : boutons réseaux + liens directs ── */
.contact-direct-links { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.contact-direct-links a { display: flex; align-items: center; gap: .75rem; padding: .875rem 1.25rem; border-radius: var(--r-md); font-weight: 600; font-size: .9rem; text-decoration: none; transition: opacity .2s; }
.contact-direct-links a:hover { opacity: .88; }

/* ============================================================
   CORRECTIFS MOBILE GLOBAUX
   ============================================================ */

/* 1. Empêche le débordement horizontal */
html, body { overflow-x: hidden; width: 100%; }

/* 2. Espace pour la navbar fixe — adapté à la hauteur réelle du header */
body { padding-top: 0; } /* le hero gère son propre padding-top */
.page-hero { padding-top: 7rem; } /* compense le header fixe sur les pages internes */

/* 3. Centrage global sur mobile */
@media (max-width: 767px) {
  .section-container {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    width: 100%; padding-left: 1.25rem; padding-right: 1.25rem;
  }
  h1, h2, h3 { text-align: center; }

  /* Empêche images/vidéos de dépasser */
  img, video { max-width: 100%; height: auto; }

  /* Grilles en une colonne */
  .grid-cards {
    grid-template-columns: 1fr !important;
    justify-items: center;
    gap: 1.5rem;
  }

  /* Boutons pleine largeur centrés */
  .btn-cta {
    width: 100%; max-width: 320px;
    margin-left: auto; margin-right: auto;
  }

  /* Sections */
  .offers-grid, .why-grid, .collab-grid,
  .portfolio-grid, .blog-grid, .socials-grid,
  #portfolioGrid {
    grid-template-columns: 1fr !important;
  }

  /* Intro grid */
  .intro__grid { grid-template-columns: 1fr; }
  .intro__content { padding-left: 0; text-align: center; }
  .intro__btns { justify-content: center; }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { text-align: center; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { text-align: center; }
  .footer__socials { justify-content: center; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Hero */
  .hero__content { text-align: center; padding: 6rem 1.25rem 3rem; }
  .hero__actions, .cta-final__actions { justify-content: center; flex-wrap: wrap; }
  .hero__socials { justify-content: center; }
  .hero__scroll { display: none; }

  /* CTA final */
  .cta-final__content { text-align: center; padding: 3rem 1.25rem; }

  /* Béni tech */
  .beni-tech__inner { grid-template-columns: 1fr; text-align: center; }
  .beni-tech__visual { display: none; }
  .beni-tech__btns { justify-content: center; }

  /* IA grid */
  .ai-grid { grid-template-columns: 1fr; }
  .ai-card__tools { justify-content: center; }

  /* Vidéo grid */
  .video-grid { grid-template-columns: 1fr; }

  /* Collab stats */
  .collab-stats { gap: 1.5rem; }

  /* Section header */
  .section__header { text-align: center; }

  /* Form */
  .form__row { grid-template-columns: 1fr; }
  .form { padding: 1.5rem; }
}

/* 4. Support des encoches iPhone (notch) */
header { padding-top: env(safe-area-inset-top); }

/* 5. Empêche le zoom automatique sur les inputs iOS */
input, select, textarea { font-size: 16px; }

/* 6. Galerie mobile */
@media (max-width: 480px) {
  .gallery-grid { columns: 2 120px; column-gap: .5rem; }
  .gallery-item { margin-bottom: .5rem; }
}

/* ── Cartes vidéo : 2 colonnes sur mobile ── */
@media (max-width: 767px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .video-card__info { padding: 0.75rem; }
  .video-card__title { font-size: 0.78rem; margin-bottom: 0.4rem; }
  .video-card__category { font-size: 0.6rem; }
  .video-card__author { margin-bottom: 0.4rem; gap: 0.3rem; }
  .video-card__author-logo { height: 14px; }
  .video-card__author span { font-size: 0.65rem; }
  .video-card__actions { gap: 0.3rem; }
  .video-card__btn { font-size: 0.65rem; padding: 0.35rem 0.25rem; }
}

@media (max-width: 400px) {
  .video-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; }
}

/* ── Section intro : photo gauche + texte droite (desktop) ── */
.intro__grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 3rem !important;
  align-items: center !important;
}
.intro__image {
  grid-column: 1 !important;
  grid-row: 1 !important;
}
.intro__content {
  grid-column: 2 !important;
  grid-row: 1 !important;
  padding-left: 0 !important;
  text-align: left !important;
}
.intro__content h2,
.intro__content .section__eyebrow,
.intro__content .intro__text { text-align: left !important; }
.intro__btns { justify-content: flex-start !important; }

/* Sur mobile : empiler photo puis texte */
@media (max-width: 768px) {
  .intro__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .intro__image  { grid-column: 1 !important; grid-row: 1 !important; }
  .intro__content {
    grid-column: 1 !important; grid-row: 2 !important;
    text-align: center !important;
  }
  .intro__content h2,
  .intro__content .section__eyebrow,
  .intro__content .intro__text { text-align: center !important; }
  .intro__btns { justify-content: center !important; }
}

/* ── Cartes vidéo : petits carrés en grille sur mobile ── */
@media (max-width: 767px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
  }

  /* Miniature carrée au lieu de portrait 9/16 */
  a.video-card__thumb {
    aspect-ratio: 1 / 1 !important;
  }

  /* Infos compactes */
  .video-card {
    border-radius: 10px !important;
  }
  .video-card__info {
    padding: 0.6rem 0.65rem !important;
  }
  .video-card__category {
    font-size: 0.58rem !important;
    margin-bottom: 0.2rem !important;
  }
  .video-card__title {
    font-size: 0.72rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.3rem !important;
    /* Limiter à 2 lignes */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .video-card__author {
    display: none !important; /* masqué pour gagner de l'espace */
  }
  .video-card__actions {
    gap: 0.25rem !important;
  }
  .video-card__btn {
    font-size: 0.62rem !important;
    padding: 0.3rem 0.2rem !important;
    letter-spacing: 0 !important;
  }
  /* Badge durée plus petit */
  .video-card__duration {
    font-size: 0.6rem !important;
    padding: 0.15rem 0.35rem !important;
  }
}

/* ============================================================
   MOBILE COMPACT — Réduction et centrage global toutes pages
   ============================================================ */
@media (max-width: 767px) {

  /* ── Typographie réduite ── */
  .hero__title        { font-size: clamp(2.5rem, 11vw, 4rem) !important; }
  .hero__phrase       { font-size: 0.9rem !important; }
  .page-hero__title   { font-size: clamp(1.8rem, 8vw, 2.8rem) !important; }
  .section__title     { font-size: clamp(1.4rem, 6vw, 2rem) !important; }
  .section__desc      { font-size: 0.88rem !important; }
  .section__eyebrow   { font-size: 0.65rem !important; }
  .cta-final__title   { font-size: clamp(1.4rem, 6vw, 2rem) !important; }

  /* ── Centrage global ── */
  .section__header,
  .page-hero,
  .cta-final__content,
  .contact-info       { text-align: center !important; }

  h1, h2, h3, h4,
  .section__title,
  .section__eyebrow,
  .section__desc,
  .page-hero__title,
  .page-hero__eyebrow,
  .page-hero__desc    { text-align: center !important; }

  /* ── Sections padding réduit ── */
  .section            { padding: 2.5rem 0 !important; }
  .page-hero          { padding: 5.5rem 1rem 2.5rem !important; }
  .container          { padding: 0 1rem !important; }

  /* ── Grilles → 1 colonne ── */
  .offers-grid,
  .why-grid,
  .collab-grid,
  .portfolio-grid,
  .blog-grid,
  .socials-grid,
  #portfolioGrid,
  .beni-tech__inner,
  .contact-grid,
  .footer__grid       { grid-template-columns: 1fr !important; }

  .ai-grid            { grid-template-columns: 1fr 1fr !important; gap: 0.6rem !important; }

  /* ── Cards réduites ── */
  .offer-card         { padding: 1.5rem 1rem !important; }
  .offer-card__icon   { font-size: 1.8rem !important; }
  .offer-card__title  { font-size: 0.75rem !important; }
  .offer-card__desc   { font-size: 0.82rem !important; }

  .why-card           { padding: 1rem 0.5rem !important; }
  .why-card__icon     { font-size: 1.6rem !important; }
  .why-card__title    { font-size: 0.95rem !important; }
  .why-card__desc     { font-size: 0.82rem !important; }

  .collab-card        { padding: 1.5rem 1rem !important; }
  .collab-card__title { font-size: 0.8rem !important; }
  .collab-card__desc  { font-size: 0.82rem !important; }

  .blog-card__title   { font-size: 0.95rem !important; }
  .blog-card__excerpt { font-size: 0.8rem !important; }

  .portfolio-card__title { font-size: 0.95rem !important; }

  /* ── IA cards ── */
  .ai-card            { padding: 1rem !important; gap: 0.75rem !important; }
  .ai-card__title     { font-size: 0.9rem !important; }
  .ai-card__desc      { font-size: 0.78rem !important; }
  .ai-card__icon-wrap { width: 44px !important; height: 44px !important; }

  /* ── Social cards ── */
  .socials-grid       { grid-template-columns: 1fr 1fr !important; gap: 0.6rem !important; }
  .social-card        { padding: 0.875rem 0.75rem !important; gap: 0.5rem !important; }
  .social-card__icon  { width: 36px !important; height: 36px !important; }
  .social-card__handle{ font-size: 0.75rem !important; }
  .social-card__platform { font-size: 0.6rem !important; }
  .social-card__arrow { display: none !important; }

  /* ── Boutons ── */
  .hero__actions,
  .cta-final__actions { flex-direction: column !important; align-items: center !important; }
  .hero__actions .btn,
  .cta-final__actions .btn { width: 100% !important; max-width: 280px !important; justify-content: center !important; font-size: 0.78rem !important; padding: 0.75rem 1rem !important; }

  /* ── Intro section ── */
  .intro__image       { aspect-ratio: 4/3 !important; max-height: 260px !important; }
  .intro__text        { font-size: 0.88rem !important; text-align: center !important; }

  /* ── Stats collaborations ── */
  .collab-stats       { gap: 1rem !important; }
  .collab-stat__num   { font-size: 1.8rem !important; }
  .collab-stat__label { font-size: 0.65rem !important; }

  /* ── Timeline ── */
  .timeline           { padding-left: 1.25rem !important; }
  .timeline-item__title { font-size: 1rem !important; }
  .timeline-item__desc  { font-size: 0.82rem !important; }

  /* ── Formulaire ── */
  .form               { padding: 1.25rem !important; }
  .form__row          { grid-template-columns: 1fr !important; }
  .form__label        { font-size: 0.72rem !important; }

  /* ── Footer ── */
  .footer             { padding: 2.5rem 0 1.5rem !important; }
  .footer__brand,
  .footer__nav,
  .footer__contact    { text-align: center !important; }
  .footer__socials    { justify-content: center !important; }
  .footer__nav ul li a:hover { padding-left: 0 !important; }
  .footer__bottom     { flex-direction: column !important; text-align: center !important; gap: 0.3rem !important; }
  .footer__bottom p   { font-size: 0.7rem !important; }

  /* ── CTA final ── */
  .cta-final          { min-height: 50vh !important; }
  .cta-final__desc    { font-size: 0.88rem !important; }

  /* ── Filter bar ── */
  .filter-bar         { gap: 0.35rem !important; }
  .filter-btn         { font-size: 0.65rem !important; padding: 0.35rem 0.75rem !important; }

  /* ── Béni tech ── */
  .beni-tech__visual  { display: none !important; }
  .beni-tech__text    { font-size: 0.88rem !important; text-align: center !important; }
  .beni-tech__btns    { justify-content: center !important; }

  /* ── Galerie ── */
  .gallery-grid       { columns: 2 100px !important; column-gap: 0.5rem !important; }
  .gallery-item       { margin-bottom: 0.5rem !important; }
}

/* ── Portfolio : grille 2 colonnes carrées sur mobile ── */
@media (max-width: 767px) {
  .portfolio-grid,
  #portfolioGrid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
  }

  /* Miniature carrée */
  .portfolio-card__thumb {
    aspect-ratio: 1 / 1 !important;
  }

  /* Infos compactes */
  .portfolio-card__info {
    padding: 0.6rem 0.65rem !important;
  }
  .portfolio-card__category {
    font-size: 0.58rem !important;
    margin-bottom: 0.15rem !important;
  }
  .portfolio-card__title {
    font-size: 0.78rem !important;
    margin-bottom: 0.2rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .portfolio-card__tagline {
    display: none !important;
  }
  .portfolio-card__desc {
    display: none !important;
  }
  .portfolio-card__location {
    font-size: 0.65rem !important;
  }
  .portfolio-card__num {
    font-size: 1.2rem !important;
  }
  .portfolio-card__badge {
    font-size: 0.55rem !important;
    padding: 0.2rem 0.45rem !important;
  }
}

/* ── Section Béni Tech : centrage mobile ── */
@media (max-width: 767px) {
  .beni-tech__content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .beni-tech__content .section__eyebrow,
  .beni-tech__content .section__title--light,
  .beni-tech__content .beni-tech__text {
    text-align: center !important;
  }
  .beni-tech__btns,
  /* Si les boutons sont dans un div sans classe spécifique */
  .beni-tech__content > div[style] {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }
  .beni-tech__content .btn {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
  }
}

/* ── Footer : cacher la navigation sur mobile ── */
@media (max-width: 767px) {
  .footer__nav { display: none !important; }
  .footer__grid { grid-template-columns: 1fr !important; }
}

/* ── Section IA : 1 colonne centrée sur mobile ── */
@media (max-width: 767px) {
  .ai-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .ai-card {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.25rem !important;
    text-align: center !important;
  }
  .ai-card__icon-wrap { margin: 0 auto !important; }
  .ai-card__tag,
  .ai-card__title,
  .ai-card__desc  { text-align: center !important; }
  .ai-card__tools { justify-content: center !important; }
  .ai-photos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 280px !important;
    margin: 0.5rem auto 0 !important;
  }
  .ai-player { max-width: 100% !important; }
}

/* ── Section intro : photo centrée sur mobile ── */
@media (max-width: 767px) {
  .intro__grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .intro__image {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
  }
  .intro__content {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ── Hero mobile : réduire l'espace vide en haut ── */
@media (max-width: 767px) {
  .hero {
    min-height: 100svh !important;
    align-items: center !important;
  }
  .hero__content {
    padding: 5rem 1.25rem 2rem !important;
    text-align: center !important;
  }
  .hero__tag    { margin-bottom: 0.5rem !important; }
  .hero__title  {
    font-size: clamp(2.8rem, 13vw, 4.5rem) !important;
    margin-bottom: 0.75rem !important;
    line-height: 0.95 !important;
  }
  .hero__phrase {
    font-size: 0.88rem !important;
    margin-bottom: 1.5rem !important;
    max-width: 100% !important;
  }
  .hero__actions {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.6rem !important;
    margin-bottom: 1.5rem !important;
  }
  .hero__actions .btn {
    width: 100% !important;
    max-width: 300px !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.78rem !important;
  }
  .hero__socials {
    justify-content: center !important;
    gap: 0.75rem !important;
  }
  .hero__social {
    width: 36px !important;
    height: 36px !important;
  }
  .hero__social svg { width: 16px !important; height: 16px !important; }
}

/* ── Hero : hauteur réduite sur mobile ── */
@media (max-width: 767px) {
  .hero { min-height: 70svh !important; }
}

/* ── Hero : hauteur réduite sur desktop aussi ── */
@media (min-width: 768px) {
  .hero { min-height: 80vh !important; }
}

/* ── Hero mobile : rendu final ── */
@media (max-width: 767px) {
  .hero {
    min-height: 100svh !important;
    align-items: flex-end !important;
  }
  .hero__img {
    object-position: center 10% !important;
  }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.05) 0%,
      rgba(10,10,10,0.30) 30%,
      rgba(10,10,10,0.75) 58%,
      rgba(10,10,10,0.98) 78%,
      rgba(10,10,10,1.00) 100%
    ) !important;
  }
  .hero__content {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    text-align: center !important;
  }

  /* Tag sur une seule ligne — taille réduite */
  .hero__tag {
    font-size: 0.62rem !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 1rem !important;
    white-space: normal !important;
    line-height: 1.5 !important;
  }

  /* Titre compact */
  .hero__title {
    font-size: clamp(2.6rem, 14vw, 4rem) !important;
    line-height: 0.92 !important;
    margin-bottom: 1.5rem !important;
  }

  /* Phrase lisible */
  .hero__phrase {
    font-size: 0.9rem !important;
    line-height: 1.75 !important;
    margin-bottom: 2rem !important;
  }

  /* Boutons compacts côte à côte */
  .hero__actions {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    margin-bottom: 2rem !important;
  }
  .hero__actions .btn {
    width: auto !important;
    max-width: none !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.72rem !important;
    flex: 1 1 140px !important;
    justify-content: center !important;
  }

  /* Icônes socials serrées */
  .hero__socials {
    justify-content: center !important;
    gap: 1rem !important;
    flex-wrap: nowrap !important;
  }
  .hero__social {
    width: 38px !important;
    height: 38px !important;
  }
  .hero__social svg { width: 17px !important; height: 17px !important; }
}

/* ── Hero tag : blanc lisible avec ombre portée ── */
.hero__tag {
  color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7) !important;
  line-height: 1.8 !important;
  opacity: 0.92 !important;
}

@media (max-width: 767px) {
  .hero__tag {
    font-size: 0.65rem !important;
    letter-spacing: 0.1em !important;
  }
}

/* ── Section Streaming ── */
.streaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.streaming-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1rem;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--card); text-decoration: none;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.streaming-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(244,123,32,.10);
  border-color: var(--accent);
}
.streaming-card__icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.streaming-card__icon svg { width: 22px; height: 22px; fill: white; }
.streaming-card__info { flex: 1; min-width: 0; }
.streaming-card__name {
  display: block; font-size: .82rem; font-weight: 700; color: var(--text);
}
.streaming-card__handle {
  display: block; font-size: .72rem; color: var(--muted); margin-top: .1rem;
}
.streaming-card__arrow { color: #ccc; font-size: 1.1rem; transition: transform .3s, color .3s; }
.streaming-card:hover .streaming-card__arrow { transform: translateX(4px); color: var(--accent); }

@media (max-width: 767px) {
  .streaming-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .streaming-card { padding: .875rem .75rem; gap: .5rem; }
  .streaming-card__icon { width: 36px; height: 36px; }
  .streaming-card__name { font-size: .75rem; }
  .streaming-card__handle { font-size: .65rem; }
  .streaming-card__arrow { display: none; }
}

/* ── Footer contacts directs ── */
.footer__contacts {
  display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: .75rem;
}
.footer__contact-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,.55);
  text-decoration: none; transition: color .2s;
}
.footer__contact-item:hover { color: var(--accent); }
.footer__contact-item--wa:hover { color: #25D366; }
.footer__contact-item svg { opacity: .7; }

/* ── Footer streaming ── */
.footer__streaming { margin-top: 1.25rem; }
.footer__streaming-title {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: .6rem;
}
.footer__streaming-icons {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.footer__stream-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .2s, opacity .2s;
  opacity: .88;
}
.footer__stream-icon:hover { transform: scale(1.12); opacity: 1; }
.footer__stream-icon svg { width: 22px; height: 22px; fill: white; }

@media (max-width: 767px) {
  .footer__contacts { align-items: center; }
  .footer__streaming { text-align: center; }
  .footer__streaming-icons { justify-content: center; }
  .footer__stream-icon { width: 40px; height: 40px; }
  .footer__stream-icon svg { width: 20px; height: 20px; }
}

/* ── Hero tag — présentation premium ── */
.hero__tag {
  display: flex !important;
  flex-direction: column !important;
  gap: .35rem !important;
  align-items: center !important;
  margin-bottom: 1.25rem !important;
}

.hero__tag-line {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
  line-height: 1.6;
}

/* Séparateurs en orange */
.hero__tag-sep {
  font-style: normal;
  color: var(--accent);
  font-size: .8em;
  margin: 0 .15em;
}

/* Ligne IA — mise en valeur */
.hero__tag-line--accent {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: .82rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .12em;
  text-transform: none;
  color: var(--accent);
  background: rgba(244,123,32,.10);
  border: 1px solid rgba(244,123,32,.30);
  border-radius: 100px;
  padding: .25rem 1rem;
  margin-top: .2rem;
  text-shadow: none;
}
.hero__tag-star {
  font-style: normal;
  font-size: .9rem;
  animation: starPulse 2s ease-in-out infinite;
}
@keyframes starPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

/* Mobile */
@media (max-width: 767px) {
  .hero__tag { align-items: center !important; gap: .3rem !important; }
  .hero__tag-line { font-size: .6rem !important; letter-spacing: .12em !important; }
  .hero__tag-line--accent { font-size: .72rem !important; padding: .2rem .75rem !important; }
}

/* ── Page À propos — présentation texte améliorée ── */

/* Titre principal */
.intro__content .section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

/* Textes intro */
.intro__text {
  font-size: .98rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1rem;
}
.intro__text:last-of-type { margin-bottom: 0; }
.intro__text strong { color: var(--text); font-weight: 700; }

/* Séparation visuelle entre paragraphes */
.intro__content > p + p { padding-top: .25rem; }

/* Boutons intro espacés */
.intro__btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
  align-items: center;
}

/* ── Section Béni Tech — layout et typo ── */
.beni-tech__content .section__eyebrow {
  font-size: .68rem;
  letter-spacing: .22em;
  margin-bottom: .75rem;
}
.beni-tech__content .section__title--light {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.beni-tech__text {
  font-size: .96rem;
  line-height: 1.85;
  color: rgba(255,255,255,.68);
  max-width: 480px;
  margin-bottom: 2rem;
}
.beni-tech__text strong { color: var(--accent); }

/* Boutons Béni Tech */
.beni-tech__content > div[style*="flex"] {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: .75rem !important;
  margin-top: 0 !important;
}

/* ── Section page-hero — sous-titre propre ── */
.page-hero__title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  letter-spacing: -.025em;
  margin-bottom: 1rem;
}
.page-hero__desc {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
  color: rgba(255,255,255,.6);
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .intro__content .section__title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .intro__text { font-size: .9rem; line-height: 1.75; text-align: center; }
  .beni-tech__content .section__title--light { font-size: clamp(1.5rem, 7vw, 2rem); text-align: center; }
  .beni-tech__text { font-size: .9rem; text-align: center; max-width: 100%; margin: 0 auto 1.5rem; }
  .page-hero__title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .page-hero__desc { font-size: .9rem; }
}

/* ── Icône Wikipedia ── */
.social-card__icon--wikipedia { background: #000; color: #fff; }

/* ── Social cards — taille réduite sur mobile ── */
@media (max-width: 767px) {
  .socials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .5rem !important;
  }
  .social-card {
    padding: .75rem .65rem !important;
    gap: .5rem !important;
    border-radius: var(--r-md) !important;
  }
  .social-card__icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }
  .social-card__icon svg { width: 17px !important; height: 17px !important; }
  .social-card__platform { font-size: .58rem !important; }
  .social-card__handle   { font-size: .72rem !important; }
  .social-card__arrow    { display: none !important; }
}

/* ── Hero layout 2 colonnes : titre gauche | description droite ── */
.hero__layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: flex-start;
  width: 100%;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Colonne droite — poussée à droite, centrée, grande */
.hero__right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 1rem;
  padding-left: 2rem;
}

.hero__right .hero__tag {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1.1rem !important;
  margin-bottom: 0 !important;
  text-align: center !important;
  background: rgba(10,10,10,.35);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 2rem 1.75rem !important;
}

.hero__right .hero__tag-line {
  font-size: 1.15rem !important;
  letter-spacing: .12em !important;
  line-height: 1.8 !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  text-align: center !important;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}

.hero__right .hero__tag-sep {
  color: var(--accent) !important;
  font-size: .9em !important;
}

.hero__right .hero__tag-line--accent {
  font-size: 1.1rem !important;
  padding: .6rem 1.5rem !important;
  margin-top: .3rem !important;
  text-align: center !important;
}

/* Sur mobile : colonne unique */
@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    align-items: center !important;
  }
  .hero__right {
    align-items: center !important;
    justify-content: center !important;
    padding-left: 0 !important;
    width: 100% !important;
  }
  .hero__right .hero__tag {
    padding: 1.25rem 1rem !important;
    width: 100% !important;
  }
  .hero__right .hero__tag-line {
    font-size: .75rem !important;
  }
  .hero__right .hero__tag-line--accent {
    font-size: .82rem !important;
  }
}

/* ── HERO MOBILE — Vue compacte et professionnelle ── */
@media (max-width: 767px) {

  /* Phrase réduite */
  .hero__phrase {
    font-size: .85rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
  }

  /* Boutons côte à côte, pas pleine largeur */
  .hero__actions {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: .5rem !important;
    margin-bottom: 1.25rem !important;
  }
  .hero__actions .btn {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    padding: .55rem 1.1rem !important;
    font-size: .68rem !important;
  }

  /* Socials plus petits */
  .hero__socials { gap: .6rem !important; justify-content: center !important; }
  .hero__social  { width: 30px !important; height: 30px !important; }
  .hero__social svg { width: 14px !important; height: 14px !important; }

  /* Description droite — compacte sur mobile */
  .hero__right {
    width: 100% !important;
    padding-left: 0 !important;
  }
  .hero__right .hero__tag {
    padding: .875rem 1rem !important;
    gap: .5rem !important;
    border-radius: 12px !important;
  }
  .hero__right .hero__tag-line {
    font-size: .62rem !important;
    letter-spacing: .1em !important;
    line-height: 1.6 !important;
  }
  .hero__right .hero__tag-line--accent {
    font-size: .7rem !important;
    padding: .35rem .9rem !important;
  }
}

/* ── Sous-titre page hero et section ── */
.page-hero__title-sub,
.section__title-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: .75rem;
  margin-bottom: 0;
}
.section__title-sub {
  color: var(--muted);
  margin-top: .5rem;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════
   TITRES PROPRES — plus de coupure sur 2 lignes
   ══════════════════════════════════════════ */

/* Réduire la taille des titres de section pour qu'ils tiennent sur une ligne */
.section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem) !important;
  line-height: 1.15 !important;
  text-wrap: balance;
}

.page-hero__title {
  font-size: clamp(2rem, 5.5vw, 4rem) !important;
  line-height: 1.1 !important;
  text-wrap: balance;
}

/* Titres dans les sections sombres */
.section__title--light {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem) !important;
}

/* Titres spécifiques trop longs — réduction ciblée */
/* "Votre marque a une histoire à raconter." */
.collab .section__title--light,
/* "Une collaboration pensée pour créer de l'impact." */
.why .section__title,
/* "Quelques histoires. Quelques collaborations." */
.portfolio-preview .section__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
}

/* Titre IA trop petit — le rendre visible */
.ai-creation .section__title--light {
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

/* CTA final */
.cta-final__title {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem) !important;
  text-wrap: balance;
}

/* Mobile — encore plus petit */
@media (max-width: 767px) {
  .section__title,
  .section__title--light {
    font-size: clamp(1.4rem, 6.5vw, 2rem) !important;
  }
  .page-hero__title {
    font-size: clamp(1.7rem, 8vw, 2.6rem) !important;
  }
  .cta-final__title {
    font-size: clamp(1.4rem, 6.5vw, 2rem) !important;
  }
}

/* ══════════════════════════════════════════
   TITRES MOBILE — une seule ligne, lisibles
   ══════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Tous les titres h1, h2, h3 */
  h1, h2, h3 {
    text-wrap: balance !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  /* Page hero */
  .page-hero__title {
    font-size: clamp(1.5rem, 7.5vw, 2.2rem) !important;
    line-height: 1.12 !important;
  }

  /* Titres section */
  .section__title,
  .section__title--light {
    font-size: clamp(1.25rem, 6vw, 1.8rem) !important;
    line-height: 1.2 !important;
  }

  /* CTA final */
  .cta-final__title {
    font-size: clamp(1.25rem, 6vw, 1.8rem) !important;
  }

  /* Titres longs spécifiques — encore plus réduits */
  .collab .section__title--light,
  .why .section__title,
  .portfolio-preview .section__title,
  .ai-creation .section__title--light {
    font-size: clamp(1.2rem, 5.5vw, 1.6rem) !important;
  }

  /* Section header — padding réduit pour laisser de la place */
  .section__header {
    padding: 0 .5rem !important;
  }

  /* Sous-titres */
  .section__desc,
  .page-hero__desc {
    font-size: .82rem !important;
    line-height: 1.7 !important;
  }

  /* Titres cards */
  .video-card__title,
  .blog-card__title,
  .portfolio-card__title {
    font-size: .78rem !important;
    line-height: 1.3 !important;
  }

  /* Timeline */
  .timeline-item__title {
    font-size: .95rem !important;
  }
}

/* ── Titre hero : BÉNI CAVANO sur une seule ligne ── */
.hero__title {
  white-space: nowrap !important;
  font-size: clamp(2.8rem, 10vw, 9rem) !important;
  letter-spacing: -.02em !important;
}

@media (max-width: 400px) {
  .hero__title {
    font-size: clamp(2.2rem, 12vw, 3.5rem) !important;
  }
}

/* ── Badge IA : une seule ligne, taille auto ── */
.hero__tag-line--accent {
  white-space: nowrap !important;
  font-size: clamp(.55rem, 1.2vw, 1rem) !important;
  padding: .45rem 1.25rem !important;
}
/* Supprimer l'étoile animée */
.hero__tag-star { display: none !important; }

/* ── Menu mobile : plus d'espace entre les liens ── */
@media (max-width: 1024px) {
  .header__nav-link {
    padding: 1.1rem .75rem !important;
    font-size: .85rem !important;
    letter-spacing: .08em !important;
  }
  .header__nav-list {
    gap: 0 !important;
  }
  /* Liens externes (Gbéchi Boniface, Béni Technologie) */
  .header__nav-link--ext {
    padding: 1.1rem .75rem !important;
    font-size: .85rem !important;
  }
}

/* ══ MENU MOBILE FINAL — espacement, bouton, pas d'espace vide ══ */
@media (max-width: 1024px) {

  /* Panel menu pleine hauteur, flex pour pousser le bouton en bas */
  .header__nav {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 4rem 1.5rem 2rem !important;
    overflow-y: auto !important;
  }

  /* Liste des liens — occupe tout l'espace disponible */
  .header__nav-list {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  /* Chaque lien — grand padding pour bien espacer */
  .header__nav-link {
    padding: 1.2rem .75rem !important;
    font-size: .9rem !important;
    font-weight: 600 !important;
    letter-spacing: .07em !important;
    border-bottom: 1px solid rgba(0,0,0,.07) !important;
    border-radius: 0 !important;
    display: block !important;
    width: 100% !important;
    color: var(--text) !important;
  }
  .header__nav-link:hover,
  .header__nav-link.active {
    color: var(--accent) !important;
    background: var(--accent-light) !important;
    padding-left: 1.25rem !important;
  }

  /* Liens externes orange */
  .header__nav-link--ext {
    color: var(--accent) !important;
    padding: 1.2rem .75rem !important;
    font-size: .9rem !important;
    border-bottom: 1px solid rgba(0,0,0,.07) !important;
  }

  /* Séparateur entre nav normale et liens externes */
  .header__nav-separator {
    display: block !important;
    width: 100% !important;
    height: 1px !important;
    background: rgba(0,0,0,.1) !important;
    margin: .5rem 0 !important;
  }

  /* Bouton Collaborer — en bas du menu */
  .header__nav-collab {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    margin: 1.5rem 0 0 !important;
    padding: .875rem !important;
    font-size: .85rem !important;
  }

  /* Bouton fermer (✕) — bien positionné en haut */
  .header__nav-close {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1.3rem !important;
    background: rgba(0,0,0,.06) !important;
    border: none !important;
    border-radius: 50% !important;
    color: var(--text) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
  }
  .header__nav-close:hover {
    background: var(--accent-light) !important;
    color: var(--accent) !important;
  }
}

/* ══════════════════════════════════════════
   MISE EN PAGE PLEINE LARGEUR — Style YouTube
   Grilles denses, container large, zéro espace mort
   ══════════════════════════════════════════ */

/* Container plus large */
.container {
  max-width: 1400px !important;
  padding: 0 1.5rem !important;
}

/* Sections moins espacées */
.section { padding: 3rem 0 !important; }
.section__header { margin-bottom: 1.75rem !important; }

/* ── Grille vidéos : 4 colonnes desktop, 3 tablette ── */
.video-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1rem !important;
}
@media (max-width: 1200px) {
  .video-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Miniature 16/9 comme YouTube au lieu de 9/16 portrait */
a.video-card__thumb {
  aspect-ratio: 16 / 9 !important;
}

/* ── Grille portfolio : 4 colonnes ── */
.portfolio-grid,
#portfolioGrid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1rem !important;
}
@media (max-width: 1100px) {
  .portfolio-grid, #portfolioGrid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 767px) {
  .portfolio-grid, #portfolioGrid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Grille blog : 3 colonnes ── */
.blog-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1rem !important;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr !important; }
}

/* ── Grille socials : 4 colonnes ── */
.socials-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: .75rem !important;
}
@media (max-width: 900px) {
  .socials-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 600px) {
  .socials-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Grille streaming : 6 colonnes ── */
.streaming-grid {
  grid-template-columns: repeat(6, 1fr) !important;
  gap: .75rem !important;
}
@media (max-width: 900px) {
  .streaming-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 600px) {
  .streaming-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Grille offers : 3 colonnes ── */
.offers-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 767px) {
  .offers-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Grille why : 4 colonnes ── */
.why-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── AI grid : 3 colonnes larges ── */
.ai-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
  .ai-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .ai-grid { grid-template-columns: 1fr !important; }
}

/* ── Galerie : 5 colonnes ── */
.gallery-grid {
  columns: 5 180px !important;
  column-gap: .75rem !important;
}
@media (max-width: 900px) {
  .gallery-grid { columns: 3 120px !important; }
}
@media (max-width: 600px) {
  .gallery-grid { columns: 2 100px !important; }
}

/* Cartes : bordures et coins réduits pour look dense */
.video-card, .portfolio-card, .blog-card, .social-card, .streaming-card {
  border-radius: 8px !important;
}

/* Textes des cartes plus compacts */
.video-card__info    { padding: .75rem !important; }
.portfolio-card__info { padding: .75rem !important; }
.blog-card__info     { padding: 1rem !important; }

/* Miniature portfolio en 16/9 */
.portfolio-card__thumb { aspect-ratio: 16/9 !important; }

/* Footer grid plus large */
.footer__grid {
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
}
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr !important; }
  .footer__brand { grid-column: span 2 !important; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr !important; }
  .footer__brand { grid-column: span 1 !important; }
}

/* ══════════════════════════════════════════
   HERO DESKTOP — Espacement professionnel
   ══════════════════════════════════════════ */

@media (min-width: 901px) {

  /* Hero plus haut */
  .hero { min-height: 92vh !important; }

  /* Contenu centré verticalement avec bon padding */
  .hero__content {
    padding: 6rem 2rem 4rem !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Layout 2 colonnes */
  .hero__layout {
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* Colonne gauche — bien espacée */
  .hero__left { gap: 0 !important; }

  .hero__title {
    font-size: clamp(4rem, 7vw, 7rem) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1 !important;
  }

  .hero__phrase {
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
    margin-bottom: 2rem !important;
    max-width: 480px !important;
  }

  .hero__actions {
    gap: 1rem !important;
    margin-bottom: 2.5rem !important;
    flex-wrap: nowrap !important;
  }
  .hero__actions .btn {
    padding: .875rem 1.75rem !important;
    font-size: .82rem !important;
  }

  .hero__socials {
    gap: .75rem !important;
  }
  .hero__social {
    width: 38px !important;
    height: 38px !important;
  }

  /* Colonne droite — bien alignée, centrée */
  .hero__right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding-left: 1rem !important;
    padding-top: 0 !important;
  }

  .hero__right .hero__tag {
    padding: 2.5rem 2rem !important;
    gap: 1.25rem !important;
    border-radius: 20px !important;
    max-width: 440px !important;
    width: 100% !important;
  }

  .hero__right .hero__tag-line {
    font-size: 1rem !important;
    letter-spacing: .15em !important;
    line-height: 1.8 !important;
  }

  .hero__right .hero__tag-line--accent {
    font-size: .88rem !important;
    padding: .55rem 1.5rem !important;
  }
}

/* ══════════════════════════════════════════
   HERO — CORRECTIONS FINALES WEB + MOBILE
   ══════════════════════════════════════════ */

/* ── DESKTOP ── */
@media (min-width: 901px) {
  .hero {
    min-height: 100vh !important;
    align-items: center !important;
  }
  .hero__content {
    padding: 5rem 2.5rem 3rem !important;
    align-items: stretch !important;
  }
  .hero__layout {
    grid-template-columns: 55% 45% !important;
    gap: 3rem !important;
    align-items: center !important;
    min-height: 70vh !important;
  }
  .hero__left {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 0 !important;
  }
  .hero__title {
    font-size: clamp(3.5rem, 6.5vw, 7rem) !important;
    margin-bottom: 1.25rem !important;
    white-space: nowrap !important;
  }
  .hero__phrase {
    font-size: .98rem !important;
    max-width: 440px !important;
    margin-bottom: 1.75rem !important;
    line-height: 1.75 !important;
  }
  .hero__actions {
    gap: .875rem !important;
    margin-bottom: 2rem !important;
    flex-wrap: nowrap !important;
  }
  .hero__actions .btn {
    padding: .75rem 1.5rem !important;
    font-size: .78rem !important;
    white-space: nowrap !important;
  }
  .hero__socials { gap: .6rem !important; }
  .hero__social  { width: 36px !important; height: 36px !important; }

  /* Colonne droite */
  .hero__right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 0 !important;
    height: 100% !important;
  }
  .hero__right .hero__tag {
    width: 100% !important;
    max-width: 420px !important;
    padding: 2rem 1.75rem !important;
    gap: 1rem !important;
    border-radius: 16px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero__right .hero__tag-line {
    font-size: .88rem !important;
    letter-spacing: .14em !important;
    line-height: 1.75 !important;
    white-space: normal !important;
  }
  .hero__right .hero__tag-line--accent {
    white-space: nowrap !important;
    font-size: .78rem !important;
    padding: .45rem 1.25rem !important;
  }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero {
    min-height: 100svh !important;
    align-items: flex-end !important;
  }
  .hero__content {
    padding: 2rem 1.25rem 2.5rem !important;
    text-align: center !important;
    overflow: hidden !important;
  }
  .hero__layout {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    align-items: center !important;
    width: 100% !important;
  }
  .hero__left {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }
  .hero__title {
    font-size: clamp(2.4rem, 11vw, 4rem) !important;
    white-space: nowrap !important;
    margin-bottom: .75rem !important;
  }
  .hero__phrase {
    font-size: .85rem !important;
    max-width: 100% !important;
    margin-bottom: 1.25rem !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .hero__actions {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: .5rem !important;
    margin-bottom: 1.25rem !important;
    width: 100% !important;
  }
  .hero__actions .btn {
    flex: 1 1 130px !important;
    max-width: 200px !important;
    padding: .6rem .75rem !important;
    font-size: .68rem !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }
  .hero__socials {
    justify-content: center !important;
    gap: .6rem !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
  }
  .hero__social { width: 30px !important; height: 30px !important; }
  .hero__social svg { width: 13px !important; height: 13px !important; }

  /* Description droite — compacte */
  .hero__right {
    width: 100% !important;
    justify-content: center !important;
    padding: 0 !important;
  }
  .hero__right .hero__tag {
    width: 100% !important;
    padding: 1rem .875rem !important;
    gap: .5rem !important;
    border-radius: 12px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero__right .hero__tag-line {
    font-size: .6rem !important;
    letter-spacing: .1em !important;
    line-height: 1.6 !important;
    white-space: normal !important;
    word-break: keep-all !important;
  }
  .hero__right .hero__tag-line--accent {
    font-size: .62rem !important;
    padding: .3rem .875rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
  }
}

/* ══════════════════════════════════════════
   HERO WEB — VERSION COMPACTE ET DENSE
   ══════════════════════════════════════════ */
@media (min-width: 901px) {

  /* Hero réduit à 75vh max pour éviter l'espace vide */
  .hero {
    min-height: 75vh !important;
    max-height: 85vh !important;
  }

  .hero__content {
    padding: 4rem 2.5rem 3rem !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
  }

  .hero__layout {
    grid-template-columns: 52% 48% !important;
    gap: 2.5rem !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* Titre bien proportionné */
  .hero__title {
    font-size: clamp(3.5rem, 6vw, 6.5rem) !important;
    margin-bottom: 1rem !important;
    line-height: .98 !important;
  }

  .hero__phrase {
    font-size: .9rem !important;
    max-width: 420px !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.7 !important;
    color: rgba(255,255,255,.82) !important;
  }

  .hero__actions {
    gap: .75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .hero__actions .btn {
    padding: .65rem 1.4rem !important;
    font-size: .75rem !important;
  }

  .hero__socials { gap: .5rem !important; margin-bottom: 0 !important; }
  .hero__social  { width: 34px !important; height: 34px !important; }
  .hero__social svg { width: 14px !important; height: 14px !important; }

  /* Description droite — remonte au centre */
  .hero__right {
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 0 !important;
  }
  .hero__right .hero__tag {
    max-width: 100% !important;
    padding: 1.75rem 1.5rem !important;
    gap: .875rem !important;
    background: rgba(10,10,10,.55) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
  }
  .hero__right .hero__tag-line {
    font-size: .82rem !important;
    line-height: 1.7 !important;
    letter-spacing: .13em !important;
  }
  .hero__right .hero__tag-line--accent {
    font-size: .75rem !important;
    padding: .4rem 1rem !important;
  }
}

/* ── Bande stats — compacte ── */
.stats-band {
  padding: 1.5rem 0 !important;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
@media (max-width: 767px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-num { font-size: 1.6rem; }
}

/* ── Tags intro ── */
.intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.25rem 0 1.5rem;
}
.intro__tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .35rem .875rem;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(244,123,32,.25);
  border-radius: var(--r-full);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .intro__tags { justify-content: center; }
}

/* ── Section intro compacte ── */
.intro.section { padding: 2.5rem 0 !important; }
.intro__grid { gap: 2.5rem !important; }

/* ── Description droite : pousser à droite sur desktop ── */
@media (min-width: 901px) {
  .hero__right {
    padding-left: 2rem !important;
  }
  .hero__right .hero__tag {
    margin-left: auto !important;
  }
}

/* ── Hero mobile : remonter le contenu + réduire la hauteur ── */
@media (max-width: 900px) {
  .hero {
    min-height: 78svh !important;
    max-height: 88svh !important;
    align-items: center !important;
  }
  .hero__content {
    padding-top: 4.5rem !important;   /* remonte de ~3cm */
    padding-bottom: 2rem !important;
  }
}


/* ============================================================
   BANDEAU CONSENTEMENT COOKIES
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  background: var(--darker);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 32px rgba(0,0,0,.35);
}
#cookie-banner.cookie-banner--visible {
  transform: translateY(0);
}
#cookie-banner.cookie-banner--hidden {
  transform: translateY(100%);
}
.cookie-banner__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.25rem var(--space-md);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 240px;
}
.cookie-banner__title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .35rem;
}
.cookie-banner__desc {
  font-size: .8rem;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  margin-bottom: .35rem;
}
.cookie-banner__link {
  font-size: .78rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__link:hover { color: var(--accent-h); }
.cookie-banner__actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  padding: .6rem 1.5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--ease);
  white-space: nowrap;
}
.cookie-banner__btn--accept {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.cookie-banner__btn--accept:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
  transform: translateY(-1px);
}
.cookie-banner__btn--refuse {
  background: transparent;
  color: rgba(255,255,255,.65);
  border-color: rgba(255,255,255,.2);
}
.cookie-banner__btn--refuse:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
@media (max-width: 600px) {
  .cookie-banner__inner { gap: 1rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}

/* ── Lien légal dans le footer ── */
.footer__legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__legal-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  transition: color var(--ease);
}
.footer__legal-links a:hover { color: var(--accent); }
