/* ══════════════════════════════════════════════════════
   RUN SHORT — style.css
   ══════════════════════════════════════════════════════ */

:root {
  /* Couleurs Réunion — bleu lagon de l'océan Indien */
  --blue:     #0077B6;
  --blue-lt:  #0096D6;
  --red:      #EF1C25;
  --red-dk:   #D41520;
  --yellow:   #FFD100;
  --yellow-dk:#E6BC00;

  /* Neutres — fond blanc-bleu dégradé */
  --ivory:    transparent;
  --ivory-dk: rgba(100,100,180,0.07);
  --white:    #FFFFFF;
  --ink:      #FFD100;
  --ink-2:    #E6BC00;
  --muted:    #6B7E99;
  --border:   #C8C6E8;

  /* Typography */
  --display: 'Bricolage Grotesque', sans-serif;
  --body:    'DM Sans', sans-serif;

  --max: 1160px;
  --pad: 48px;
  --r:   14px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body);
  background: #ffffff;
  color: #1e3a5f;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img, video { display:block; max-width:100%; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ══ BUTTONS ══ */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: #1a1500;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--body);
  font-size: .9rem;
  font-weight: 600;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(255,209,0,.3);
}
.btn-dark:hover {
  background: var(--yellow-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,209,0,.4);
}
.btn-dark svg { transition:transform .2s; }
.btn-dark:hover svg { transform:translateX(4px); }

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: #1a1500;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(255,209,0,.35);
}
.btn-yellow:hover {
  background: var(--yellow-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,209,0,.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  color: #1e3a5f;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  transition: border-color .2s, background .2s, color .2s;
}
.btn-outline:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #1a1500;
}

/* ══ SECTION LABELS & H2 ══ */
.sec-label {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}
.sec-label-light { color: rgba(255,255,255,.45); }

.sec-head { margin-bottom: 64px; }

h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--blue);
}
h2 em  { font-style:italic; color: var(--blue); opacity: .65; }
.h2-light { color: var(--white); }
.h2-light em { color: var(--yellow); }

/* ══ REVEAL ══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity:1; transform:none; }

/* ══════════════════════════════════════════════════════
   NAVBAR — pill flottante, fond ivoire
   ══════════════════════════════════════════════════════ */
.nav-wrap {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1080px;
  z-index: 900;
  transition: top .3s;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
  box-shadow: none;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

/* Apparaît après scroll */
.nav-wrap.scrolled .nav {
  background: rgba(247,244,238,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226,222,206,.7);
  box-shadow: 0 8px 40px rgba(0,0,0,.09);
}

.nav-logo { display:flex; align-items:center; flex-shrink:0; }
.logo-img  { height:40px; width:auto; max-width:110px; object-fit:contain; }
.logo-text {
  display: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.03em;
  color: var(--blue);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--body);
  font-size: .86rem;
  font-weight: 500;
  color: #1a1500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(0,0,0,.06); color: var(--blue); }
.nav-links a.active { color: var(--blue); font-weight: 600; }

/* After scroll: same dark text on cream pill */
.nav-wrap.scrolled .nav-links a { color: #1a1500; }
.nav-wrap.scrolled .nav-links a:hover { background: rgba(0,0,0,.05); color: var(--blue); }
.nav-wrap.scrolled .nav-links a.active { color: var(--blue); }

.nav-cta {
  background: var(--yellow);
  color: #1a1500;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .86rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s, color .2s;
  box-shadow: 0 4px 16px rgba(255,209,0,.3);
}
.nav-cta:hover { background: var(--yellow-dk); transform: scale(1.02); }

/* After scroll: switch to dark pill */
.nav-wrap.scrolled .nav-cta {
  background: var(--yellow);
  color: #1a1500;
  box-shadow: 0 4px 16px rgba(255,209,0,.3);
}
.nav-wrap.scrolled .nav-cta:hover { background: var(--yellow-dk); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border:none;
  cursor:pointer; padding:6px; margin-left:4px;
}
.burger span { display:block; width:22px; height:1.5px; background:var(--yellow); border-radius:2px; transition:.3s; }
.nav-wrap.scrolled .burger span { background: #1e3a5f; }

/* Mobile menu */
.mob {
  display: none; position:fixed; inset:0;
  background: var(--ivory);
  z-index:800; flex-direction:column;
  align-items:center; justify-content:center; gap:4px;
  opacity:0; transition:opacity .3s;
}
.mob.open { opacity:1; }
.mob-close { position:absolute; top:24px; right:32px; background:none; border:none; font-size:1.5rem; color:var(--muted); cursor:pointer; }
.mob-link {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 800;
  font-style: italic;
  color: var(--blue);
  padding: 8px 0;
  letter-spacing: -.02em;
  transition: color .2s;
}
.mob-link:hover { color: var(--blue); }
.mob-cta-link {
  margin-top: 20px;
  font-family: var(--body);
  font-style: normal;
  font-size: 1rem;
  background: var(--yellow);
  color: #1a1500;
  padding: 14px 40px;
  border-radius: 100px;
  font-weight: 600;
}
.mob-cta-link:hover { color:#1a1500; background:var(--yellow-dk); }

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero-vsl-bg {
  background: #ffffff;
}

.hero {
  padding-top: 110px;
  background: transparent;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle background decoration — drapeau Réunion colors blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,63,135,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,209,0,.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Hero layout: text left, phones right */
.hero-content {
  position: relative; z-index:2;
  flex: 0 0 auto;
  width: 480px;
  padding: 60px 48px 80px 0;
  text-align: left;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: .78rem;
  font-weight: 500;
  color: #1e3a5f;   /* lisible sur fond blanc */
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.hb-flag { font-size: 1rem; }

/* Hero title */
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.06;
  letter-spacing: -.025em;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  gap: 0;
}
.ht-normal { color: var(--blue); }
.ht-italic { color: var(--blue); opacity: .55; font-style: italic; }
.ht-accent { color: var(--blue); opacity: .55; font-style: italic; }

/* Sub */
.hero-sub {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
}

/* CTA row */
.hero-cta-row { margin-bottom: 24px; }
.hero-btn { font-size: .95rem; padding: 15px 32px; }

/* Chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .84rem;
  font-weight: 500;
  color: #1e3a5f;   /* lisible sur fond ivoire */
}

/* ── Phone mockups ── */
.hero-phones {
  position: relative;
  flex: 0 0 auto;
  width: 480px;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.hp-wrap {
  position: relative;
  width: 480px;
  height: 560px;
}

.hp {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  pointer-events: all;
}
.hp-screen {
  width: 100%; height: 100%;
  background: #1e3a5f;
  position: relative;
  overflow: hidden;
}
.hp-screen video {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset:0;
  z-index: 1;
}
.hp-placeholder {
  position: absolute; inset:0;
  z-index: 0;
}

/* Side phones */
.hp-left {
  width: 155px; height: 300px;
  left: 0; top: 60px;
  transform: rotate(-4deg);
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
  opacity: .82;
  z-index: 1;
}
.hp-right {
  width: 155px; height: 280px;
  right: 0; top: 100px;
  transform: rotate(4deg);
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
  opacity: .82;
  z-index: 1;
}

/* Main phone */
.hp-main {
  width: 200px; height: 420px;
  left: 50%; transform: translateX(-50%);
  bottom: 0;
  z-index: 2;
  box-shadow: 0 40px 90px rgba(0,0,0,.2), 0 10px 28px rgba(0,0,0,.1);
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-12px); }
}

.hp-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 20px;
  background: #3A3730;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

/* Phone side buttons */
.hp-side {
  position: absolute;
  right: -4px; top: 100px;
  display: flex; flex-direction:column; gap:14px;
}
.hp-side div {
  width: 4px; height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
}

/* Phone UI overlay */
.hp-ui {
  position: absolute; inset:0; z-index:3;
  display: flex; flex-direction:column;
  justify-content: space-between;
  padding: 14px 12px;
  background: linear-gradient(to bottom, rgba(0,60,100,.45) 0%, transparent 30%, transparent 55%, rgba(0,40,80,.75) 100%);
  pointer-events: none;
}
.hpui-top { text-align:center; }
.hpui-tag {
  background: rgba(0,50,100,.4);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: .64rem; font-weight:600;
  color: rgba(255,255,255,.8);
}
.hpui-account { display:flex; align-items:center; gap:8px; margin-bottom:8px; }
.hpui-av {
  width: 28px; height:28px; border-radius:50%;
  background: var(--yellow);
  border: 1.5px solid white;
  display: flex; align-items:center; justify-content:center;
  font-family: var(--display); font-weight:800; font-size:.58rem; color:var(--ink);
  flex-shrink: 0;
}
.hpui-account strong { display:block; font-size:.68rem; color:white; font-weight:600; }
.hpui-account span   { font-size:.56rem; color:rgba(255,255,255,.55); }
.hpui-stats { display:flex; gap:10px; }
.hpui-stats span { font-size:.62rem; color:rgba(255,255,255,.7); font-weight:600; }

/* Floating badges */
.hp-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.hp-badge strong {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -.02em;
}
.hp-badge span { font-size: .62rem; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; margin-top:2px; }

.hpb-1 { bottom: 80px; left: -16px; animation: floatBadge 5s ease-in-out infinite; }
.hpb-2 { top: 80px; right: -8px; animation: floatBadge 5s ease-in-out infinite; animation-delay: -2s; }
@keyframes floatBadge {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-8px); }
}

/* Gradient phone backgrounds */
.g1 { background: linear-gradient(160deg,#1a1a2e,#16213e,#0f3460); }
.g2 { background: linear-gradient(160deg,#1a0a0a,#6b1a1a,#c0392b); }
.g3 { background: linear-gradient(160deg,#1a1a0a,#3d5a0a,#6a9f2a); }
.g-p1 { background:linear-gradient(160deg,#0a1628,#0d2d5e,#1a4d9a); }
.g-p2 { background:linear-gradient(160deg,#280a0a,#7a1010,#c0302a); }
.g-p3 { background:linear-gradient(160deg,#0a1a0a,#1a5a1a,#2a8a2a); }
.g-p4 { background:linear-gradient(160deg,#1a0a1a,#5a1a5a,#8a3a8a); }
.g-p5 { background:linear-gradient(160deg,#0a1a1a,#1a4a5a,#2a7a8a); }

/* ══════════════════════════════════════════════════════
   VSL
   ══════════════════════════════════════════════════════ */
.vsl-section { padding: 80px 0 100px; background: transparent; }
.vsl-wrap { display:flex; flex-direction:column; align-items:center; gap:32px; }

.vsl-chips { display:flex; align-items:center; justify-content:center; gap:40px; width:100%; max-width:820px; }
.vsl-chip  { display:flex; align-items:center; gap:10px; font-size:.95rem; font-weight:600; color:#1e3a5f; }

/* ── Player ── */
.vsl-player {
  position: relative; width:100%; max-width:820px;
  aspect-ratio: 16/9;
  border-radius: 20px; overflow:hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.2);
  background: #000;
}

/* Aperçu cliquable avant chargement */
.vsl-preview {
  position: absolute; inset: 0; z-index: 3;
  cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  overflow: hidden;
}
.vsl-preview-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.vsl-preview-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.4);
}
.vsl-preview-btn {
  position: relative; z-index: 2;
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--blue);
  border: 3px solid rgba(255,255,255,.9);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 36px rgba(0,0,0,.4);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .25s;
}
.vsl-preview:hover .vsl-preview-btn { transform: scale(1.12); background: var(--blue-lt); }
.vsl-preview-btn svg { margin-left: 5px; }
.vsl-preview-text {
  position: relative; z-index: 2;
  color: #fff; font-size: 1rem; font-weight: 600;
  text-align: center; line-height: 1.55;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

/* Overlay son */
.vsl-overlay {
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:20px; background:rgba(0,0,0,.35); transition:opacity .35s;
}
.vsl-overlay.hidden { opacity:0; pointer-events:none; }

.vsl-play-btn {
  width:88px; height:88px; border-radius:50%;
  background:var(--blue); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 36px rgba(0,119,182,.5);
  transition:transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}
.vsl-play-btn:hover { transform:scale(1.1); box-shadow:0 14px 44px rgba(0,119,182,.65); }
.vsl-play-btn svg { margin-left:5px; }

.vsl-overlay-text {
  color:white; font-size:1rem; font-weight:600;
  text-align:center; line-height:1.55;
  text-shadow:0 2px 10px rgba(0,0,0,.5);
}

/* Contrôles custom */
.vsl-controls {
  position:absolute; bottom:0; left:0; right:0;
  display:flex; align-items:center; gap:10px;
  padding:14px 18px;
  background:linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  opacity:0; transition:opacity .25s;
}
.vsl-player:hover .vsl-controls,
.vsl-player.active .vsl-controls { opacity:1; }

.vsl-ctrl-btn {
  background:none; border:none; cursor:pointer; padding:4px;
  display:flex; align-items:center; opacity:.85; transition:opacity .2s; flex-shrink:0;
}
.vsl-ctrl-btn:hover { opacity:1; }

.vsl-progress-wrap {
  flex:1; height:4px; background:rgba(255,255,255,.3);
  border-radius:100px; cursor:pointer; position:relative;
}
.vsl-progress-bar {
  height:100%; background:var(--yellow);
  border-radius:100px; width:0%; transition:width .1s linear;
}
.vsl-time { color:rgba(255,255,255,.8); font-size:.75rem; font-weight:500; flex-shrink:0; }

@media(max-width:768px) {
  .vsl-section { padding:60px 0 70px; }
  .vsl-play-btn { width:68px; height:68px; }
  .vsl-overlay-text { font-size:.86rem; }
  .vsl-chips { gap:20px; flex-wrap:wrap; }
}

/* ══════════════════════════════════════════════════════
   MARQUES MARQUEE
   ══════════════════════════════════════════════════════ */
.marques-band {
  background: var(--ivory-dk);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  overflow: hidden;
}
.marques-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 22px;
  display: block;
}
.marques-track-wrap {
  overflow: hidden;
}
.marques-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: mqAnim 60s linear infinite;
  padding: 8px 0;
}
.marques-track.mq-reverse {
  animation: mqAnimReverse 36s linear infinite;
}
@keyframes mqAnim {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes mqAnimReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
/* Pause on hover */
.marques-track-wrap:hover .marques-track { animation-play-state: paused; }

/* Logo badge container — fond transparent, effet flottant */
.logo-badge {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: default;
  padding: 8px;
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Legacy span styles (no longer used but keep for safety) */
.marques-track span { display: none; }
.marques-track em   { display: none; }

/* ══════════════════════════════════════════════════════
   PORTFOLIO
   ══════════════════════════════════════════════════════ */
.portfolio {
  padding: 120px 0 80px;
  background: var(--ivory);
}

.sec-head h2 { margin-bottom: 0; }

.platforms {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.platforms span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 500;
  color: #1e3a5f;
}

/* Phones in a row — staggered heights */
.port-phones {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 60px;
}

.port-phone {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .3s;
}
.port-phone:hover { transform: translateY(-8px); }
.port-phone.pp-offset { margin-bottom: 40px; }

.pp-vid {
  width: 100%;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
}
.pp-vid video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.port-phone:hover .pp-vid video { transform: scale(1.04); }

.pp-hover {
  position: absolute; inset:0;
  background: linear-gradient(to top, rgba(0,63,135,.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex; flex-direction:column;
  justify-content: flex-end;
  padding: 16px;
}
.port-phone:hover .pp-hover { opacity:1; }
.pp-tag {
  font-size: .66rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--yellow); display:block; margin-bottom:4px;
}
.pp-hover p { font-size:.75rem; color:rgba(255,255,255,.8); font-weight:500; }

/* Stats below portfolio */
.port-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.ps-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.ps-block:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.07); }
.psb-inner { display:flex; flex-direction:column; align-items:center; gap:10px; }
.psb-icon { font-size: 2rem; }
.psb-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -.03em;
}
.ps-block span {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

.port-more { text-align:center; }

/* ══════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--ivory-dk);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right:0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
.svc-card:hover::after { transform:scaleX(1); }

.svc-card-blue {
  background: var(--blue);
  border-color: transparent;
}
.svc-card-blue h3 { color:var(--white); }
.svc-card-blue p  { color:rgba(255,255,255,.6); }
.svc-card-blue .svc-num { color:rgba(255,255,255,.3); }
.svc-card-blue::after { background:var(--yellow); }

.svc-num {
  font-size: .68rem; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--muted); margin-bottom:24px; display:block;
}
.svc-icon { font-size:2rem; margin-bottom:16px; }
.svc-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.svc-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 20px;
}
.svc-tags { display:flex; flex-wrap:wrap; gap:6px; }
.svc-tags span {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .7rem; font-weight:500;
  color: #1e3a5f;
}
.svc-tags.light span {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
}

/* ══════════════════════════════════════════════════════
   PROCESSUS — version moderne cards
   ══════════════════════════════════════════════════════ */
.processus {
  padding: 120px 0;
  background: var(--ivory-dk);
}

/* Grille 4 colonnes de cards */
.proc-rows {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

/* Ligne de connexion entre les cards */
.proc-rows::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--red), var(--yellow), var(--blue));
  z-index: 0;
  opacity: .35;
}

.proc-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor: default;
}
.proc-row:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,.1);
  border-color: transparent;
}
/* Accent coloré en haut de chaque card */
.proc-row:nth-child(1) { border-top: 3px solid var(--blue); }
.proc-row:nth-child(2) { border-top: 3px solid var(--red); }
.proc-row:nth-child(3) { border-top: 3px solid var(--yellow); }
.proc-row:nth-child(4) { border-top: 3px solid var(--blue); }

/* Numéro en cercle */
.pr-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ivory-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue);
  letter-spacing: -.01em;
  flex-shrink: 0;
  transition: background .3s, color .3s;
}
.proc-row:nth-child(1) .pr-num { background: rgba(0,119,182,.1); color: var(--blue); }
.proc-row:nth-child(2) .pr-num { background: rgba(239,28,37,.1); color: var(--red); }
.proc-row:nth-child(3) .pr-num { background: rgba(255,209,0,.2); color: #B8950A; }
.proc-row:nth-child(4) .pr-num { background: rgba(0,119,182,.1); color: var(--blue); }

.proc-row:hover .pr-num { transform: scale(1.1); }

.pr-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.pr-body p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.65;
}
.pr-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: .68rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color: var(--muted);
  background: var(--ivory-dk);
  border: 1px solid var(--border);
  padding: 5px 13px; border-radius:100px;
  margin-top: auto;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════
   AVIS
   ══════════════════════════════════════════════════════ */
.avis {
  padding: 120px 0;
  background: var(--ivory);
}

.avis-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}

.avis-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  transition: transform .25s, box-shadow .25s;
}
.avis-card:hover { transform:translateY(-3px); box-shadow:0 16px 40px rgba(0,0,0,.07); }

.avis-featured {
  grid-row: span 2;
  background: var(--blue);
  border-color: transparent;
}
.avis-featured .av-text  { color:rgba(255,255,255,.75); font-size:1rem; }
.avis-featured .av-author strong { color:white; }
.avis-featured .av-author span   { color:rgba(255,255,255,.45); }
.avis-featured .av-avatar { background:var(--yellow); color:var(--ink); }
.avis-featured .av-stars  { color:var(--yellow); }

.av-stars { color:#f59e0b; font-size:.95rem; letter-spacing:2px; margin-bottom:16px; }
.av-text {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 24px;
}
.av-author { display:flex; align-items:center; gap:12px; }
.av-avatar {
  width: 42px; height:42px; border-radius:50%;
  background: var(--red); color:white;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--display); font-weight:800; font-size:.8rem;
  flex-shrink:0;
}
.av-author strong { display:block; font-size:.9rem; font-weight:600; color:#1e3a5f; }
.av-author span   { font-size:.76rem; color:var(--muted); }

/* ══════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════ */
.faq {
  padding: 120px 0;
  background: var(--ivory-dk);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display:flex; flex-direction:column; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q {
  width:100%; background:none; border:none;
  padding:22px 0;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  cursor:pointer; text-align:left;
  font-family:var(--body); font-size:.95rem; font-weight:500;
  color:#1e3a5f; transition:color .2s;
}
.faq-q:hover { color:var(--blue); }
.faq-q i {
  font-style:normal; font-size:1.4rem; font-weight:300;
  color:var(--muted); flex-shrink:0; line-height:1;
  transition:transform .3s, color .2s;
}
.faq-item.open .faq-q i { transform:rotate(45deg); color:var(--blue); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s cubic-bezier(.25,.46,.45,.94); }
.faq-item.open .faq-a { max-height:420px; }
.faq-a p { padding-bottom:22px; font-size:.9rem; color:var(--muted); line-height:1.7; }

/* ══════════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════════ */
.cta-section {
  background: var(--blue);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Liserés drapeau Réunion */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom:0;
  width: 8px;
  background: var(--red);
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; right: 8px; bottom:0;
  width: 8px;
  background: var(--yellow);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-h2 { font-size: clamp(2.2rem,4.5vw,4rem); }

.cta-box {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 48px 40px;
}
.cta-box p {
  font-size: .96rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.cta-chips span {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

/* ══ MODAL RENDEZ-VOUS ══ */
.book-modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,10,30,.82);
  backdrop-filter: blur(14px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 32px 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  overflow-y: auto;
}
.book-modal.open { opacity: 1; pointer-events: all; }

.book-card {
  background: #fff;
  border-radius: 22px;
  width: 100%; max-width: 640px;
  margin: auto;
  position: relative;
  overflow: hidden;
  transform: translateY(26px) scale(.97);
  transition: transform .38s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
}
.book-modal.open .book-card { transform: none; }

.book-close {
  position: fixed; top: 20px; right: 24px; z-index: 2010;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: none; cursor: pointer;
  font-size: 1.1rem; color: #1e3a5f;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: background .2s, transform .2s;
}
.book-close:hover { background: var(--blue); color: #fff; transform: scale(1.08); }

.book-head {
  padding: 32px 32px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.book-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,119,182,.08);
  border: 1px solid rgba(0,119,182,.2);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.book-head h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 1.6rem; color: var(--blue);
  letter-spacing: -.02em; margin-bottom: 6px;
}
.book-head p { font-size: .86rem; color: var(--muted); }

.book-cal { background: #fff; }
.book-cal iframe { width: 100%; min-height: 680px; display: block; }

@media(max-width:600px) {
  .book-head { padding: 24px 20px 16px; }
  .book-head h3 { font-size: 1.3rem; }
}

/* ══════════════════════════════════════════════════════
   RÉSEAUX SOCIAUX — footer social links avec logos
   ══════════════════════════════════════════════════════ */
.ft-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.ft-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: #1e3a5f;
  opacity: .65;
  transition: opacity .2s, color .2s;
  text-decoration: none;
}
.ft-social-link:hover {
  opacity: 1;
  color: var(--blue);
}
.ft-social-link svg {
  flex-shrink: 0;
  transition: transform .2s;
}
.ft-social-link:hover svg { transform: scale(1.1); }

/* ══════════════════════════════════════════════════════
   FOOTER — fond ivoire clair
   ══════════════════════════════════════════════════════ */
.footer {
  background: var(--ivory-dk);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.ft-wrap {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.ft-brand { display:flex; flex-direction:column; gap:14px; }
.ft-logo  { height:48px; width:auto; max-width:120px; object-fit:contain; }
.ft-logo-text {
  display: none;
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--blue);
}
.ft-brand p { font-size:.86rem; color:var(--muted); line-height:1.6; }

.ft-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}
.ft-cols > div { display:flex; flex-direction:column; gap:10px; }
.ft-cols strong {
  font-size:.68rem; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase;
  color: var(--blue); margin-bottom:6px;
}
.ft-cols a, .ft-cols span {
  font-size:.86rem; color:#1e3a5f;
  opacity: .65;
  transition:opacity .2s, color .2s;
}
.ft-cols a:hover { opacity:1; color:var(--blue); }

.ft-bottom { border-top:1px solid var(--border); }
.ft-bottom-inner {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font-size: .76rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { flex-direction:column; }
  .hero-content { width:100%; max-width:600px; padding:60px var(--pad) 40px; text-align:center; }
  .hero-chips { justify-content:center; }
  .hero-cta-row { display:flex; justify-content:center; }
  .hero-phones { position:relative; width:100%; height:420px; }
  .hp-wrap { width:360px; height:380px; }
  .hp-main { width:160px; height:340px; }
  .hp-left  { width:120px; height:240px; }
  .hp-right { width:120px; height:220px; }
  .svc-grid { grid-template-columns:repeat(2,1fr); }
  .port-phones { flex-wrap:wrap; }
  .port-phone { min-width:calc(33% - 10px); }
  .port-phone.pp-offset { margin-bottom:0; }
  .avis-grid { grid-template-columns:1fr; }
  .avis-featured { grid-row:span 1; }
  .cta-inner { grid-template-columns:1fr; gap:40px; }
  .faq-inner { grid-template-columns:1fr; gap:40px; }
  .ft-wrap   { grid-template-columns:1fr; gap:40px; }
  .proc-rows { grid-template-columns: repeat(2, 1fr); }
  .proc-rows::before { display: none; }
}

@media (max-width: 768px) {
  :root { --pad:24px; }
  .nav-wrap { top:12px; width:calc(100% - 32px); }
  .nav-links, .nav-cta { display:none; }
  .burger { display:flex; }
  h2 { font-size:2rem; }
  .hero-content { padding:40px var(--pad) 32px; }
  .hero-phones { height:340px; }
  .hero-phones { height:340px; }
  .hp-wrap { width:280px; height:300px; }
  .hp-main { width:130px; height:270px; }
  .hp-left, .hp-right { width:100px; height:190px; }
  .svc-grid { grid-template-columns:1fr; }
  .port-phones { overflow-x:auto; flex-wrap:nowrap; padding-bottom:16px; }
  .port-phone { min-width:160px; flex-shrink:0; }
  .port-stats { grid-template-columns:1fr; }
  .proc-rows { grid-template-columns: repeat(2, 1fr); }
  .proc-rows::before { display: none; }
  .pr-tag { display: flex; }
  .cta-chips { flex-direction:column; gap:8px; }
  .ft-cols { grid-template-columns:1fr 1fr; gap:24px; }
  .ft-bottom-inner { flex-direction:column; gap:6px; text-align:center; }
  .marques-band { padding: 24px 0; }
  .marques-track.mq-reverse { display: none; }
}

@media (max-width:480px) {
  .hero-title { font-size:2.2rem; }
  .ft-cols { grid-template-columns:1fr; }
}