/* =========================================================
   BLUME — Design System
   Couleurs : #007CC1 / #125490 / #2F2F30 / #F6F6F6
   Type : Montserrat (titres) + Roboto (texte)
   ========================================================= */

:root {
  --blue:        #007CC1;
  --blue-deep:   #125490;
  --ink:         #2F2F30;
  --ink-soft:    #3a3a3c;
  --paper:       #F6F6F6;
  --white:       #ffffff;
  --grey:        #8a8a90;
  --line:        rgba(255,255,255,.12);

  --ff-display: "Montserrat", system-ui, sans-serif;
  --ff-body:    "Roboto", system-ui, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ----------------------------- reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ----------------------------- layout helpers ----------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 12vh, 160px); position: relative; }

.eyebrow {
  font-family: var(--ff-display);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: .9rem;
}
.eyebrow::before {
  content: "";
  width: 42px; height: 2px;
  background: var(--blue);
  display: inline-block;
}

h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.08; font-weight: 800; }

/* ----------------------------- buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 2rem;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .95rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s;
  will-change: transform;
}
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 30px -8px rgba(0,124,193,.6); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -10px rgba(0,124,193,.75); }
.btn--ghost { border: 1.5px solid rgba(255,255,255,.25); color: #fff; }
.btn--ghost:hover { border-color: var(--blue); background: rgba(0,124,193,.12); transform: translateY(-3px); }
.btn--dark { border: 1.5px solid rgba(47,47,48,.25); color: var(--ink); }
.btn--dark:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center;
  transition: background .4s var(--ease), backdrop-filter .4s, padding .4s var(--ease);
  padding-block: 1.4rem;
}
.site-header.scrolled {
  background: rgba(20,20,21,.82);
  backdrop-filter: blur(14px);
  padding-block: .7rem;
  border-bottom: 1px solid var(--line);
}
/* Header toujours foncé (pages à fond clair : légales, etc.) */
.site-header--solid {
  background: rgba(20,20,21,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
}
.site-header--solid.scrolled { padding-block: 1rem; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand img { height: 42px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .brand img { height: 34px; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  font-family: var(--ff-display);
  font-size: .92rem; font-weight: 500;
  color: rgba(255,255,255,.82);
  position: relative; padding-block: .3rem;
  transition: color .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.lang { display: flex; gap: .4rem; align-items: center; font-family: var(--ff-display); font-size: .82rem; }
.lang button { color: rgba(255,255,255,.5); font-weight: 600; padding: .2rem .35rem; transition: color .3s; }
.lang button.active { color: #fff; }
.lang span { color: rgba(255,255,255,.25); }

.burger { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 6px 0; z-index: 210; }
.burger span { height: 2px; width: 100%; background: #fff; transition: transform .35s var(--ease), opacity .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(120% 90% at 50% 0%, #232325 0%, #161617 55%, #0e0e0f 100%);
  overflow: hidden;
}
.hero__waves {
  position: absolute; inset: 0; z-index: 1;
  background: url("../img/wave-hero.png") center/cover no-repeat;
  opacity: .55;
  will-change: transform;
}
.hero__glow {
  position: absolute; z-index: 2;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  left: 50%; top: 58%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(0,124,193,.28) 0%, transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.hero__inner { position: relative; z-index: 3; max-width: 920px; padding-inline: var(--gutter); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--blue) 10%, #4db6ec 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-top: 1.6rem; max-width: 560px; margin-inline: auto;
}
.hero__cta { margin-top: 2.6rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.5);
  font-family: var(--ff-display); font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.hero__scroll .mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.4); border-radius: 12px;
  position: relative;
}
.hero__scroll .mouse::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px;
  background: var(--blue); border-radius: 2px; transform: translateX(-50%);
  animation: scrollwheel 1.6s var(--ease) infinite;
}
@keyframes scrollwheel { 0%{opacity:0;transform:translate(-50%,0)} 35%{opacity:1} 70%{opacity:0;transform:translate(-50%,10px)} 100%{opacity:0} }

/* =========================================================
   INTRO — Deux univers
   ========================================================= */
.intro { background: var(--ink); color: #fff; }
.intro__head { max-width: 760px; margin-bottom: 3.5rem; }
.intro__head h2 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); margin-top: 1.2rem; color: #fff; }

.intro__grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(12, 1fr); }
.intro__media { border-radius: 18px; overflow: hidden; position: relative; }
.intro__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.intro__media:hover img { transform: scale(1.05); }
.intro__media--wide { grid-column: span 12; aspect-ratio: 21 / 9; }
.intro__media--half { grid-column: span 6; aspect-ratio: 4 / 3; }

.intro__text {
  margin-top: 2.5rem; max-width: 720px;
  font-size: 1.08rem; color: rgba(255,255,255,.72);
}
.intro__text strong { color: #fff; font-weight: 700; }

/* =========================================================
   SERVICES — scroll horizontal (desktop)
   ========================================================= */
.services { background: var(--paper); color: var(--ink); position: relative; overflow: hidden; }
.services__head { max-width: 820px; margin-bottom: 3rem; position: relative; z-index: 2; }
.services__head h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-top: 1.2rem; }
.services__head h2 .accent { color: var(--blue); }
.services__head p { margin-top: 1.4rem; font-size: 1.1rem; color: #55555b; max-width: 640px; }

/* horizontal track */
.h-scroll { position: relative; z-index: 2; }
.h-scroll__track { display: flex; gap: 1.5rem; }
.s-card {
  flex: 0 0 clamp(280px, 80vw, 380px);
  background: #fff;
  border: 1px solid #e7e7ea;
  border-radius: 20px;
  padding: 2.2rem;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  min-height: 340px;
}
.s-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(18,84,144,.35); border-color: var(--blue); }
.s-card__num { font-family: var(--ff-display); font-weight: 800; font-size: .9rem; color: var(--blue); letter-spacing: .1em; }
.s-card h3 { font-size: 1.4rem; margin-top: 1.4rem; }
.s-card p { margin-top: .9rem; color: #5b5b61; font-size: .98rem; }
.s-card__tag { margin-top: auto; padding-top: 1.5rem; font-family: var(--ff-display); font-size: .82rem; font-weight: 600; color: var(--blue); }

.h-scroll__hint {
  display: flex; align-items: center; gap: .6rem; margin-top: 2rem;
  font-family: var(--ff-display); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--grey);
}
.h-scroll__hint .bar { width: 60px; height: 3px; background: #d8d8dd; border-radius: 2px; overflow: hidden; position: relative; }
.h-scroll__hint .bar i { position: absolute; inset: 0; width: 30%; background: var(--blue); border-radius: 2px; }

/* =========================================================
   SPLIT — Blume / Blue Core
   ========================================================= */
.duo { background: var(--ink); color: #fff; padding: 0; }
.duo__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
.duo__col { padding: clamp(3rem, 6vw, 6rem) var(--gutter); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.duo__col--blume { background: linear-gradient(160deg, #1b1b1d, #0f0f10); }
.duo__col--core { background: linear-gradient(160deg, var(--blue-deep), #0b3a64); }
.duo__col h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.duo__col p { margin-top: 1.2rem; color: rgba(255,255,255,.75); max-width: 420px; }
.duo__col .eyebrow { color: #fff; }
.duo__col .eyebrow::before { background: #fff; }
.duo__col ul { margin-top: 1.8rem; display: flex; flex-direction: column; gap: .7rem; }
.duo__col li { display: flex; gap: .7rem; align-items: center; color: rgba(255,255,255,.85); font-size: .98rem; }
.duo__col li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex: 0 0 auto; }
.duo__col--core li::before { background: #fff; }
.duo__col .btn { margin-top: 2.2rem; align-self: flex-start; }

/* =========================================================
   CLIENTS
   ========================================================= */
.clients { background: var(--paper); text-align: center; }
.clients h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); color: var(--ink); }
.clients__row { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: clamp(2rem,6vw,5rem); align-items: center; justify-content: center; }
.clients__row span { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.1rem,2vw,1.6rem); color: #b7b7bd; transition: color .4s; }
.clients__row span:hover { color: var(--blue); }

/* =========================================================
   CONTACT CTA
   ========================================================= */
.cta { background: linear-gradient(160deg, #0f70b0, var(--blue-deep)); color: #fff; text-align: center; }
.cta h2 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); max-width: 800px; margin-inline: auto; }
.cta p { margin-top: 1.4rem; color: rgba(255,255,255,.85); max-width: 640px; margin-inline: auto; font-size: 1.1rem; }
.cta .btn { margin-top: 2.4rem; background: #fff; color: var(--blue-deep); }
.cta .btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -10px rgba(0,0,0,.4); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative;
  background: linear-gradient(180deg, #0c0c0d 0%, #0a1a2a 100%);
  color: rgba(255,255,255,.7);
  padding-block: clamp(3.5rem,7vw,6rem) 2rem;
  overflow: hidden;
}
/* Vagues en filigrane (signature Blume) */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(110deg, rgba(0,124,193,.05) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(70deg, rgba(255,255,255,.03) 0 1px, transparent 1px 40px);
  pointer-events: none;
  opacity: .7;
}
/* Ligne d'accent lumineuse en haut du footer */
.footer::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), #78bceb, var(--blue), transparent);
  opacity: .8;
}
.footer .container { position: relative; z-index: 2; }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand img { height: 44px; margin-bottom: 1.3rem; }
.footer__brand p { max-width: 360px; font-size: .95rem; line-height: 1.7; }
.footer h4 {
  font-family: var(--ff-display);
  color: #fff;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: .6rem;
}
.footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: var(--blue);
}
.footer ul { display: flex; flex-direction: column; gap: .8rem; }
.footer ul a { font-size: .95rem; transition: color .3s, transform .3s; display: inline-block; }
.footer ul a:hover { color: var(--blue); transform: translateX(4px); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer__bottom a { transition: color .3s; }
.footer__bottom a:hover { color: var(--blue); }

/* =========================================================
   REVEAL animations base state (JS adds .in)
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .nav, .lang.desktop-only { display: none; }
  .burger { display: flex; }
  .nav.mobile-open {
    display: flex; flex-direction: column; gap: 1.6rem;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    background: #0e0e0f;
    align-items: center; justify-content: center; z-index: 200;
    margin: 0; padding: 2rem;
  }
  .nav.mobile-open a { font-size: 1.4rem; }
  .duo__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .intro__media--half { grid-column: span 12; }
}
@media (max-width: 560px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .clients__row { gap: 2rem; }
}

/* =========================================================
   ACCESSIBILITÉ — reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
   DRAPEAUX CSS (compatibles Windows, contrairement aux emoji)
   ========================================================= */
.flag{display:inline-block;width:22px;height:15px;border-radius:2px;vertical-align:middle;box-shadow:0 0 0 1px rgba(0,0,0,.1);position:relative;overflow:hidden;flex:0 0 auto}
.flag--ch{background:#d52b1e}
.flag--ch::before,.flag--ch::after{content:"";position:absolute;background:#fff}
.flag--ch::before{width:3px;height:9px;left:50%;top:50%;transform:translate(-50%,-50%)}
.flag--ch::after{width:9px;height:3px;left:50%;top:50%;transform:translate(-50%,-50%)}
.flag--fr{background:linear-gradient(90deg,#0055a4 0 33.3%,#fff 33.3% 66.6%,#ef4135 66.6% 100%)}
.flag--be{background:linear-gradient(90deg,#000 0 33.3%,#fae042 33.3% 66.6%,#ed2939 66.6% 100%)}
.flag--lu{background:linear-gradient(180deg,#ed2939 0 33.3%,#fff 33.3% 66.6%,#00a1de 66.6% 100%)}
.flag--de{background:linear-gradient(180deg,#000 0 33.3%,#dd0000 33.3% 66.6%,#ffce00 66.6% 100%)}
.flag--it{background:linear-gradient(90deg,#009246 0 33.3%,#fff 33.3% 66.6%,#ce2b37 66.6% 100%)}
.flag--es{background:linear-gradient(180deg,#aa151b 0 25%,#f1bf00 25% 75%,#aa151b 75% 100%)}
.flag--uk{background:#012169;position:relative}
.flag--us{background:repeating-linear-gradient(180deg,#b22234 0 1.5px,#fff 1.5px 3px)}
.flag--none{background:#888}

/* Footer : bloc agences en mini-cartes */
.footer__agences h4 { margin-bottom: 1.3rem; }
.footer-agence{display:flex;align-items:flex-start;gap:.7rem;padding:.6rem 0;border-bottom:1px solid rgba(255,255,255,.06)}
.footer-agence:first-of-type{border-top:1px solid rgba(255,255,255,.06)}
.footer-agence .flag{margin-top:.2rem}
.footer-agence div{display:flex;flex-direction:column;gap:.1rem}
.footer-agence strong{font-family:var(--ff-display);color:#fff;font-size:.9rem}
.footer-agence span{font-size:.82rem;color:rgba(255,255,255,.6);line-height:1.4}
.footer__contact-lines{display:flex;flex-direction:column;gap:.4rem;margin-top:1rem}
.footer__contact-lines a{font-size:.9rem;color:rgba(255,255,255,.75);transition:color .3s}
.footer__contact-lines a:hover{color:var(--blue)}

/* Sélecteur de langue (liens) */
.lang a { color: rgba(255,255,255,.55); font-family: var(--ff-display); font-size: .85rem; font-weight: 600; cursor: pointer; transition: color .3s; }
.lang a.active { color: #fff; }
.lang a:hover { color: var(--blue); }

/* =========================================================
   BANDEAU LOGOS DÉFILANT (marquee)
   ========================================================= */
.marquee{
  position:relative;
  width:100%;
  overflow:hidden;
  padding:1.5rem 0;
  margin-top:1rem;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.marquee__track{
  display:flex;
  flex-wrap:nowrap;
  width:max-content;
  animation:marquee-scroll 35s linear infinite;
}
.marquee:hover .marquee__track{animation-play-state:paused}
.marquee__item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 2.6rem;
  flex:0 0 auto;
  white-space:nowrap;
}
.marquee__item img{max-height:56px;width:auto;object-fit:contain;filter:grayscale(1);opacity:.65;transition:filter .3s,opacity .3s}
.marquee__item img:hover{filter:grayscale(0);opacity:1}
.marquee__item span{
  font-family:var(--ff-display);
  font-weight:600;
  font-size:1.1rem;
  color:var(--grey);
  white-space:nowrap;
}
@keyframes marquee-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
/* Si l'utilisateur réduit les animations : on stoppe le défilement
   mais on GARDE l'affichage horizontal (pas d'empilement vertical) */
@media (prefers-reduced-motion: reduce){
  .marquee{overflow-x:auto}
  .marquee__track{animation:none}
}

/* Drapeau européen (pour l'euro) */
.flag--eu{
  background:#003399 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Cg fill='%23ffcc00'%3E%3Ctext x='30' y='11' font-size='7' text-anchor='middle'%3E%E2%98%85%3C/text%3E%3Ctext x='39.5' y='13.5' font-size='7' text-anchor='middle'%3E%E2%98%85%3C/text%3E%3Ctext x='46' y='20' font-size='7' text-anchor='middle'%3E%E2%98%85%3C/text%3E%3Ctext x='48.5' y='29' font-size='7' text-anchor='middle'%3E%E2%98%85%3C/text%3E%3Ctext x='46' y='38' font-size='7' text-anchor='middle'%3E%E2%98%85%3C/text%3E%3Ctext x='39.5' y='44' font-size='7' text-anchor='middle'%3E%E2%98%85%3C/text%3E%3Ctext x='30' y='47' font-size='7' text-anchor='middle'%3E%E2%98%85%3C/text%3E%3Ctext x='20.5' y='44' font-size='7' text-anchor='middle'%3E%E2%98%85%3C/text%3E%3Ctext x='14' y='38' font-size='7' text-anchor='middle'%3E%E2%98%85%3C/text%3E%3Ctext x='11.5' y='29' font-size='7' text-anchor='middle'%3E%E2%98%85%3C/text%3E%3Ctext x='14' y='20' font-size='7' text-anchor='middle'%3E%E2%98%85%3C/text%3E%3Ctext x='20.5' y='13.5' font-size='7' text-anchor='middle'%3E%E2%98%85%3C/text%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
}

/* =========================================================
   AVIS CLIENTS (regroupés Google)
   ========================================================= */
.reviews{background:var(--paper)}
.reviews__head{text-align:center;max-width:640px;margin:0 auto 3rem}
.reviews__head h2{color:var(--ink);font-size:clamp(1.8rem,4vw,2.6rem);margin-top:.6rem}
.reviews__score{display:inline-flex;align-items:center;gap:.6rem;margin-top:1.2rem;flex-wrap:wrap;justify-content:center}
.reviews__stars{color:#f5a623;font-size:1.3rem;letter-spacing:.1em}
.reviews__score strong{font-family:var(--ff-display);font-size:1.3rem;color:var(--ink)}
.reviews__count{color:var(--grey);font-size:.95rem}
.reviews__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.review-card{position:relative;background:#fff;border:1px solid #e7e7ea;border-radius:18px;padding:2rem 1.8rem;display:flex;flex-direction:column;gap:1rem;transition:transform .5s var(--ease),box-shadow .5s}
.review-card:hover{transform:translateY(-6px);box-shadow:0 30px 60px -34px rgba(18,84,144,.35)}
.review-card__stars{color:#f5a623;font-size:1.15rem;letter-spacing:.08em}
.review-card__stars-off{color:#e0e0e3}
.review-card__text{color:#42424a;line-height:1.65;font-size:.98rem;flex:1}
.review-card__foot{display:flex;flex-direction:column;gap:.15rem;border-top:1px solid #eee;padding-top:1rem}
.review-card__author{font-family:var(--ff-display);font-weight:700;color:var(--ink)}
.review-card__meta{font-size:.85rem;color:var(--grey)}
.review-card__google{position:absolute;top:1.6rem;right:1.6rem;opacity:.9}
@media (max-width:900px){.reviews__grid{grid-template-columns:1fr 1fr}}
@media (max-width:600px){.reviews__grid{grid-template-columns:1fr}}

/* Cartes services Blue Core (distinction visuelle) */
.s-card--core{position:relative}
.s-card--core .s-card__tag{padding-top:1.2rem}
.s-card--core .s-card__tag span{display:inline-block;background:rgba(0,124,193,.1);color:#125490;padding:.4rem .9rem;border-radius:99px;font-size:.76rem;letter-spacing:.02em}

/* Vidéo de fond du hero */
.hero{position:relative;overflow:hidden}
.hero__video{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:0;
  pointer-events:none;
}
.hero__video-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(15,15,16,.72) 0%,rgba(15,15,16,.55) 45%,rgba(15,15,16,.8) 100%);
}
.hero__waves,.hero__glow{z-index:2}
.hero__inner{position:relative;z-index:3}
.hero__scroll{z-index:3}

/* Placeholder image élégant (en attendant les visuels définitifs) */
.img-placeholder{
  position:relative;width:100%;aspect-ratio:4/3;border-radius:18px;overflow:hidden;
  background:linear-gradient(135deg,#0e0e0f 0%,#125490 60%,#007CC1 100%);
  display:flex;align-items:center;justify-content:center;
}
.img-placeholder::before{
  content:"";position:absolute;inset:0;
  background-image:repeating-linear-gradient(115deg,rgba(255,255,255,.06) 0 1px,transparent 1px 22px),repeating-linear-gradient(65deg,rgba(255,255,255,.04) 0 1px,transparent 1px 34px);
  opacity:.6;
}
.img-placeholder::after{
  content:attr(data-label);position:absolute;top:1rem;left:1.2rem;
  font-family:var(--ff-display);font-weight:700;color:rgba(255,255,255,.9);font-size:.9rem;letter-spacing:.05em;z-index:2;
}
.img-placeholder span{position:relative;z-index:2;color:rgba(255,255,255,.55);font-size:.85rem;font-style:italic}

/* Bouton "Découvrez tous nos avis" */
.reviews__more{text-align:center;margin-top:2.5rem}

/* Popup tous les avis */
.reviews-modal{position:fixed;inset:0;z-index:1000;display:flex;align-items:center;justify-content:center;padding:1.5rem}
.reviews-modal[hidden]{display:none}
.reviews-modal__overlay{position:absolute;inset:0;background:rgba(10,10,15,.75);backdrop-filter:blur(3px)}
.reviews-modal__box{position:relative;background:#fff;border-radius:20px;max-width:820px;width:100%;max-height:85vh;
  overflow-y:auto;padding:2.5rem clamp(1.2rem,3vw,2.5rem);box-shadow:0 40px 90px -30px rgba(0,0,0,.5)}
.reviews-modal__close{position:absolute;top:1rem;right:1.2rem;background:none;border:none;font-size:2rem;line-height:1;
  color:var(--grey);cursor:pointer;transition:color .2s;z-index:2}
.reviews-modal__close:hover{color:var(--ink)}
.reviews-modal__title{font-family:var(--ff-display);font-size:1.6rem;color:var(--ink);text-align:center;margin-bottom:.6rem}
.reviews-modal__score{display:flex;align-items:center;justify-content:center;gap:.6rem;margin-bottom:1.8rem;flex-wrap:wrap}
.reviews-modal__score strong{font-family:var(--ff-display);color:var(--ink)}
.reviews-modal__list{display:flex;flex-direction:column;gap:1rem}
.review-card--modal{border:1px solid #eee;border-radius:14px;padding:1.4rem}
body.modal-open{overflow:hidden}

.services__waves {
  position: absolute; right: -10%; top: 0; width: 70%; height: 100%;
  background: url("../img/wave-3.png") center/contain no-repeat;
  opacity: .12; filter: invert(34%) sepia(89%) saturate(1200%) hue-rotate(178deg);
  pointer-events: none;
}
