/* =========================================================
   MEETYN — Premium one-page site
   ========================================================= */

:root {
  --primary: #4F46E5;
  --secondary: #3B82F6;
  --accent: #8B5CF6;
  --success: #10B981;
  --bg: #FAFAFC;
  --dark: #0F172A;
  --text: #111827;
  --text-muted: #5B6472;
  --border: rgba(17, 24, 39, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 60px -20px rgba(79, 70, 229, 0.25);
  --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.06);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; }
img { max-width: 100%; }

::selection {
  background: var(--primary);
  color: #fff;
}

.container { max-width: 1200px; }

/* ---------- Focus states (accessibility) ---------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 1100;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.1s linear;
}

/* ---------- Page loader ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  animation: pulse-loader 1s ease-in-out infinite;
}
@keyframes pulse-loader {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.85); opacity: 0.7; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-top: 14px;
  transition: padding 0.3s var(--ease);
}
.custom-navbar {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  margin: 0 16px;
  padding: 8px 8px 8px 22px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  transition: all 0.35s var(--ease);
}
.site-header.scrolled { padding-top: 10px; }
.site-header.scrolled .custom-navbar {
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.88);
}

.navbar-brand {
  display: flex;
  align-items: center;
}
.brand-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.custom-navbar .nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  transition: all 0.2s var(--ease);
}
.custom-navbar .nav-link:hover { background: rgba(79, 70, 229, 0.08); color: var(--primary); }
.custom-navbar .nav-link.active { color: var(--primary); background: rgba(79, 70, 229, 0.08); }

.btn-nav-cta {
  background: var(--text);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
}
.btn-nav-cta:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.navbar-toggler { border: none; padding: 4px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Section basics ---------- */
section { position: relative; }
.section-title {
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}
.section-title.light { color: #fff; }
.section-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.eyebrow-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.eyebrow-tag.light { color: #A5B4FC; }

.text-gradient {
  background: linear-gradient(120deg, var(--primary), var(--accent) 60%, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Reveal animations ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.1s; }
.reveal-delay-2.in-view { transition-delay: 0.2s; }
.reveal-delay-3.in-view { transition-delay: 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  padding: 168px 0 110px;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.hero-glow-1 {
  width: 480px; height: 480px;
  background: var(--primary);
  top: -160px; right: -120px;
}
.hero-glow-2 {
  width: 380px; height: 380px;
  background: var(--accent);
  bottom: -160px; left: -100px;
  opacity: 0.22;
}
.hero-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.dial-path {
  fill: none;
  stroke: url(#none);
  stroke: rgba(79, 70, 229, 0.15);
  stroke-width: 2;
  stroke-dasharray: 6 10;
}

.hero-section .container { position: relative; z-index: 1; }

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  margin-bottom: 28px;
}
.eyebrow-line-1 {
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
}
.eyebrow-divider { color: var(--text-muted); }
.eyebrow-line-2 {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.hero-title {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}

.btn-primary-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 600;
  padding: 1rem 1.8rem;
  border-radius: 100px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -16px rgba(79, 70, 229, 0.45);
  color: #fff;
}
.btn-primary-cta i { transition: transform 0.3s var(--ease); }
.btn-primary-cta:hover i { transform: translate(3px, -3px); }

.hero-cta-note {
  margin: 18px 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-cta-note i { color: var(--success); }

/* Hero visual: call card */
.hero-visual {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.call-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -24px rgba(15, 23, 42, 0.28);
  padding: 28px;
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.call-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.call-status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: dot-pulse 1.6s ease-out infinite;
}
@keyframes dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.call-status-text {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}
.call-timer {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.call-waveform {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 56px;
  margin-bottom: 24px;
  padding: 0 4px;
}
.call-waveform span {
  flex: 1;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  border-radius: 3px;
  animation: wave 1.2s ease-in-out infinite;
}
.call-waveform span:nth-child(odd) { animation-duration: 0.9s; }
.call-waveform span:nth-child(3n) { animation-duration: 1.4s; }
.call-waveform span:nth-child(1) { height: 30%; animation-delay: 0s; }
.call-waveform span:nth-child(2) { height: 60%; animation-delay: 0.05s; }
.call-waveform span:nth-child(3) { height: 90%; animation-delay: 0.1s; }
.call-waveform span:nth-child(4) { height: 45%; animation-delay: 0.15s; }
.call-waveform span:nth-child(5) { height: 75%; animation-delay: 0.2s; }
.call-waveform span:nth-child(6) { height: 55%; animation-delay: 0.25s; }
.call-waveform span:nth-child(7) { height: 95%; animation-delay: 0.3s; }
.call-waveform span:nth-child(8) { height: 40%; animation-delay: 0.35s; }
.call-waveform span:nth-child(9) { height: 70%; animation-delay: 0.4s; }
.call-waveform span:nth-child(10) { height: 50%; animation-delay: 0.45s; }
.call-waveform span:nth-child(11) { height: 85%; animation-delay: 0.5s; }
.call-waveform span:nth-child(12) { height: 35%; animation-delay: 0.55s; }
.call-waveform span:nth-child(13) { height: 65%; animation-delay: 0.6s; }
.call-waveform span:nth-child(14) { height: 48%; animation-delay: 0.65s; }
.call-waveform span:nth-child(15) { height: 80%; animation-delay: 0.7s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.4); opacity: 0.7; }
  50% { transform: scaleY(1); opacity: 1; }
}

.call-card-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.call-avatar {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.call-contact-name { font-weight: 700; font-size: 0.92rem; }
.call-contact-role { font-size: 0.78rem; color: var(--text-muted); }

.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-card);
  animation: float-chip 5s ease-in-out infinite;
}
.float-chip i { color: var(--success); }
.float-chip-top { top: -6%; right: -8%; animation-delay: 0.4s; }
.float-chip-bottom { bottom: 6%; left: -10%; animation-delay: 1s; }
@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   TRUST / SOCIAL PROOF
   ============================================================ */
.trust-section {
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(79, 70, 229, 0.18), transparent 55%);
  pointer-events: none;
}
.trust-section .container { position: relative; z-index: 1; }
.trust-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
}
.trust-label {
  font-weight: 700;
  color: #94A3B8;
  margin: 0;
  font-size: 0.95rem;
}
.trust-count {
  margin: 0;
  font-weight: 700;
  color: #A5B4FC;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-count i { color: var(--success); }
.logo-word {
  font-weight: 700;
  font-size: 1.05rem;
  color: #CBD5E1;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.logo-sep { color: rgba(255,255,255,0.15); }

/* ---------- Auto-scrolling logo marquee ---------- */
.logo-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee-left 32s linear infinite;
}
.logo-track.reverse {
  animation-name: marquee-right;
  animation-duration: 36s;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.logo-img {
  max-height: 48px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.25s, transform 0.25s;
}
.logo-marquee:hover .logo-img {
  opacity: 1;
}
.logo-item:hover .logo-img {
  transform: scale(1.06);
}

/* ============================================================
   PROBLEME
   ============================================================ */
.problem-section { padding: 120px 0; }

.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -14px rgba(15, 23, 42, 0.15);
}
.problem-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.problem-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
}

.constat-box {
  margin-top: 52px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
  color: #E5E7EB;
}
.constat-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(139, 92, 246, 0.25), transparent 55%);
}
.constat-box i.bi-quote {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
}
.constat-box p {
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}
.constat-box strong { color: #fff; }

/* ============================================================
   NOTRE FORCE (dark)
   ============================================================ */
.force-section {
  background: var(--dark);
  padding: 130px 0;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.force-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(79, 70, 229, 0.28), transparent 60%);
  pointer-events: none;
}
.force-section .container { position: relative; z-index: 1; }

.force-visual {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.force-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.35);
  animation: ring-pulse 3s ease-out infinite;
}
.force-ring-1 { width: 100%; height: 100%; animation-delay: 0s; }
.force-ring-2 { width: 100%; height: 100%; animation-delay: 1s; }
.force-ring-3 { width: 100%; height: 100%; animation-delay: 2s; }
@keyframes ring-pulse {
  0% { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(1.15); opacity: 0; }
}
.force-phone {
  position: relative;
  z-index: 2;
  width: 108px; height: 108px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #fff;
  box-shadow: 0 30px 60px -14px rgba(79, 70, 229, 0.6);
}

.force-paragraph {
  font-size: 1.12rem;
  line-height: 1.75;
  color: #CBD5E1;
  margin-bottom: 20px;
}

/* ============================================================
   PROCESSUS
   ============================================================ */
.process-section { padding: 130px 0; background: var(--bg); }

.process-track { position: relative; margin-top: 60px; }
.process-line {
  display: none;
}
@media (min-width: 768px) {
  .process-line {
    display: block;
    position: absolute;
    top: 26px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(79,70,229,0.25) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
}

.process-step { position: relative; z-index: 1; padding: 0 8px; }
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}
.process-step h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============================================================
   POURQUOI MEETYN
   ============================================================ */
.why-section { padding: 130px 0; background: #fff; }

.why-card {
  height: 100%;
  padding: 36px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
  position: relative;
}
.why-card:hover {
  border-color: transparent;
  box-shadow: 0 24px 50px -20px rgba(79, 70, 229, 0.25);
  transform: translateY(-6px);
}
.why-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
}
.why-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta-section { padding: 40px 0 130px; }
.final-cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--accent) 65%, var(--secondary));
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  color: #fff;
}
.final-cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(80px);
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
}
.final-cta-box h2 {
  position: relative;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.final-cta-box p {
  position: relative;
  font-size: 1.08rem;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 34px;
  line-height: 1.6;
}
.btn-light-cta {
  position: relative;
  background: #fff;
  color: var(--primary) !important;
  font-weight: 700;
  padding: 1rem 1.9rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--ease);
}
.btn-light-cta:hover { transform: translateY(-3px) scale(1.02); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: #94A3B8;
  padding: 60px 0 30px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-brand-icon {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.footer-brand-word {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}
.footer-tagline { font-size: 0.9rem; margin: 0 0 22px; }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #94A3B8;
}
.footer-contact-list i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-list a { color: #CBD5E1; }
.footer-contact-list a:hover { color: #fff; }

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-size: 1.05rem;
  transition: all 0.25s var(--ease);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.btn-footer-cta {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
}
.btn-footer-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.site-footer hr { border-color: rgba(255,255,255,0.1); margin: 40px 0 24px; }
.footer-copy { font-size: 0.82rem; margin: 0; color: #64748B; }

/* ---------- Legal modals ---------- */
.legal-modal .modal-content {
  border-radius: var(--radius-md);
  border: none;
  overflow: hidden;
}
.legal-modal .modal-header {
  background: var(--dark);
  border-bottom: none;
  padding: 24px 30px;
}
.legal-modal .modal-title {
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
}
.legal-modal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
}
.legal-modal .modal-body {
  padding: 30px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}
.legal-modal .modal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 26px 0 10px;
}
.legal-modal .modal-body h3:first-child { margin-top: 0; }
.legal-modal .modal-body em {
  color: var(--accent);
  font-style: normal;
  background: rgba(139, 92, 246, 0.1);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: 0.9em;
}
.legal-modal .modal-body a { color: var(--primary); }
.legal-updated {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: #9CA3AF;
}
.legal-modal .modal-footer {
  border-top: none;
  padding: 0 30px 26px;
}
.legal-modal .modal-footer .btn-primary-cta {
  padding: 0.7rem 1.6rem;
  box-shadow: none;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 900;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.25);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary); }

/* ============================================================
   INNER PAGE HERO (legal pages, cas clients)
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: 160px 0 70px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(79, 70, 229, 0.3), transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 18px;
}
.page-breadcrumb a { color: #CBD5E1; }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb i { font-size: 0.7rem; }
.page-hero-title {
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  max-width: 760px;
}
.page-hero-lead {
  color: #A1A9B8;
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page-section { padding: 70px 0 120px; background: var(--bg); }
.legal-page-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 50px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-page-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 30px 0 10px;
}
.legal-page-card h3:first-child { margin-top: 0; }
.legal-page-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 4px;
}
.legal-page-card em {
  color: var(--accent);
  font-style: normal;
  background: rgba(139, 92, 246, 0.1);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: 0.92em;
}
.legal-page-card a { color: var(--primary); }
.legal-updated {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: #9CA3AF;
}

/* ============================================================
   CAS CLIENTS
   ============================================================ */

/* Placeholder / editorial notice banner */
.cc-notice {
  background: rgba(139, 92, 246, 0.08);
  border: 1px dashed rgba(139, 92, 246, 0.4);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 8px;
}
.cc-notice i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 2px;
}
.cc-notice p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.cc-notice strong { color: var(--text); }

/* Chip navigator */
.cc-chip-nav-wrap { padding: 36px 0; background: var(--bg); border-bottom: 1px solid var(--border); }
.cc-chip-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.cc-chip-track::-webkit-scrollbar { height: 6px; }
.cc-chip-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.cc-chip {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  min-width: 180px;
  transition: all 0.25s var(--ease);
}
.cc-chip:hover { border-color: var(--primary); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.cc-chip-sector { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); }
.cc-chip-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.cc-chip-roles { font-size: 0.76rem; color: var(--text-muted); }

/* Sector intro block */
.cc-sector-section { padding: 100px 0; background: #fff; }
.cc-approach-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cc-approach-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.cc-approach-list i { color: var(--success); font-size: 1.1rem; }

/* Case study card */
.case-section { padding: 90px 0; }
.case-section:nth-of-type(even) { background: #fff; }
.case-section:nth-of-type(odd) { background: var(--bg); }
.case-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.case-logo-badge {
  height: 44px;
  display: flex;
  align-items: center;
}
.case-logo-badge img { max-height: 44px; max-width: 160px; object-fit: contain; }
.case-client-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.case-eyebrow { color: var(--primary); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.case-title { font-size: clamp(1.35rem, 2.4vw, 1.9rem); font-weight: 800; letter-spacing: -0.015em; max-width: 780px; margin-bottom: 22px; }
.case-profile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.case-profile strong { color: var(--text); }

.case-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}
.case-info-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.case-info-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 6px; }
.case-info-value { font-weight: 700; font-size: 0.92rem; color: var(--text); margin-bottom: 4px; }
.case-info-detail { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.case-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}
.case-sub-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.case-sub-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.case-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
.case-stat {
  text-align: center;
  padding: 18px 10px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(79,70,229,0.06), rgba(139,92,246,0.06));
  border: 1px solid var(--border);
}
.case-stat-num { display: block; font-weight: 800; font-size: 1.3rem; color: var(--primary); letter-spacing: -0.02em; }
.case-stat-label { font-size: 0.76rem; color: var(--text-muted); }

.case-impact {
  font-size: 0.92rem;
  color: var(--text-muted);
  border-top: 1px dashed var(--border);
  padding-top: 18px;
}
.case-impact strong { color: var(--text); }

/* Repères / stats section */
.cc-metrics-section { padding: 100px 0; background: var(--dark); color: #fff; }
.cc-metric-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  height: 100%;
}
.cc-metric-number { font-weight: 800; color: #A5B4FC; font-size: 0.85rem; margin-bottom: 14px; display: block; }
.cc-metric-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.cc-metric-card p { font-size: 0.88rem; color: #94A3B8; line-height: 1.6; margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .custom-navbar { border-radius: 20px; padding: 14px 18px; }
  .navbar-collapse { margin-top: 16px; }
  .btn-nav-cta { display: inline-flex; margin-top: 10px; }
  .hero-section { padding: 140px 0 80px; }
  .force-section, .process-section, .why-section, .problem-section { padding: 90px 0; }
}

@media (max-width: 575px) {
  .constat-box, .final-cta-box { padding: 34px 24px; }
  .call-card { padding: 22px; }
  .trust-logos { gap: 14px; }
  .logo-word { font-size: 0.92rem; }
}

@media (max-width: 991px) {
  .case-info-grid { grid-template-columns: repeat(2, 1fr); }
  .case-sub-grid { grid-template-columns: 1fr; }
  .case-stats-row { grid-template-columns: repeat(2, 1fr); }
  .legal-page-card { padding: 34px 26px; }
  .page-hero { padding: 140px 0 60px; }
}

@media (max-width: 575px) {
  .case-info-grid { grid-template-columns: 1fr; }
  .case-stats-row { grid-template-columns: repeat(2, 1fr); }
  .case-card-top { flex-direction: column; align-items: flex-start; }
}