/* ===== Vyral Agency — Thème bleu, inspiré House of Shafaq ===== */
:root {
  /* Bleu (remplace rouge/orange) */
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #38bdf8;
  --accent: #06b6d4;
  --accent-dark: #0891b2;
  /* Neutres */
  --bg: #0a0a0f;
  --bg-card: #111118;
  --bg-elevated: #16161f;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  /* Typo */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Curseur personnalisé : uniquement si souris (pointer: fine), sinon curseur natif */
@media (pointer: fine) {
  body.has-custom-cursor {
    cursor: none;
  }

  .cursor-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    will-change: transform;
  }

  body.has-custom-cursor .cursor-wrap {
    opacity: 1;
  }

  .cursor-outer {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: transparent;
    transition: transform 0.25s var(--ease-out), background 0.25s ease, border-color 0.25s ease;
  }

  .cursor-inner {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    transition: transform 0.25s var(--ease-out), opacity 0.25s ease;
  }

  .cursor-wrap.cursor-hover .cursor-outer {
    transform: scale(2.5);
    background: rgba(14, 165, 233, 0.2);
    border-color: var(--primary);
  }

  .cursor-wrap.cursor-hover .cursor-inner {
    opacity: 0.6;
  }
}

/* Arrière-plan global — mesh cinématographique */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    /* Vignette légère */
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.25) 100%),
    /* Orbes lumineuses douces */
    radial-gradient(ellipse 120% 80% at 20% 10%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 85% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse 80% 100% at 70% 85%, rgba(14, 165, 233, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse 60% 80% at 5% 70%, rgba(6, 182, 212, 0.05) 0%, transparent 40%),
    /* Base dégradée */
    linear-gradient(180deg, #0a0a0f 0%, #0c0e14 40%, #0a0a0f 100%);
  pointer-events: none;
}

/* Texture légère type grain / pellicule */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 48px 48px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ----- Animations globales ----- */
@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes lineReveal {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(14, 165, 233, 0.2); }
  50% { box-shadow: 0 0 40px rgba(14, 165, 233, 0.35); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33% { transform: translate(30px, -20px) scale(1.05); opacity: 0.8; }
  66% { transform: translate(-20px, 15px) scale(0.95); opacity: 0.5; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(14, 165, 233, 0.3), 0 0 40px rgba(6, 182, 212, 0.1); }
  50% { box-shadow: 0 0 35px rgba(14, 165, 233, 0.5), 0 0 60px rgba(6, 182, 212, 0.2); }
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.header .logo {
  opacity: 0;
  animation: fadeInDown 0.8s var(--ease-out) 0.2s forwards;
}

.header .nav a {
  position: relative;
  opacity: 0;
  animation: fadeInDown 0.6s var(--ease-out) forwards;
}

.header .nav a:nth-child(1) { animation-delay: 0.3s; }
.header .nav a:nth-child(2) { animation-delay: 0.35s; }
.header .nav a:nth-child(3) { animation-delay: 0.4s; }
.header .nav a:nth-child(4) { animation-delay: 0.45s; }
.header .nav a:nth-child(5) { animation-delay: 0.5s; }

.header .nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--primary-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.header .nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  transition: transform 0.3s var(--ease-out), text-shadow 0.3s var(--ease-out);
}

.logo:hover {
  transform: scale(1.03);
  text-shadow: 0 0 24px rgba(14, 165, 233, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s, color 0.2s;
}

.nav a:hover {
  opacity: 1;
  color: var(--primary-light);
}

.menu-toggle {
  opacity: 0;
  animation: fadeInDown 0.6s var(--ease-out) 0.5s forwards;
}

.nav-cta {
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary);
  border-radius: 6px;
  color: var(--primary-light) !important;
}

.nav-cta:hover {
  background: rgba(14, 165, 233, 0.15);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease-out);
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-mobile a {
  font-size: 1.1rem;
  padding: 0.5rem 0;
}

.nav-mobile-cta {
  display: block;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem !important;
  text-align: center;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff !important;
  border-radius: 8px;
  border: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.nav-mobile-cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-mobile {
    display: flex;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.3s var(--ease-out), color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.45), 0 0 0 1px rgba(14, 165, 233, 0.2);
  animation: pulseGlow 2s ease-in-out infinite;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
}

.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border: 1px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}

.btn-outline:hover {
  background: rgba(14, 165, 233, 0.12);
}

.btn-outline:hover::before {
  transform: translateX(100%);
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* Bouton hero : bien visible, plein, coloré */
.btn-hero-cta {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.35), 0 0 0 1px rgba(14, 165, 233, 0.2);
}

.btn-hero-cta:hover {
  box-shadow: 0 20px 48px rgba(14, 165, 233, 0.5), 0 0 0 1px rgba(14, 165, 233, 0.3);
}

/* ----- Hero ----- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Orbes flottants — vie et profondeur */
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrb 12s ease-in-out infinite;
  pointer-events: none;
}

.hero-bg::before {
  width: 400px;
  height: 400px;
  background: rgba(14, 165, 233, 0.15);
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.hero-bg::after {
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.12);
  bottom: 20%;
  right: 15%;
  animation-delay: -4s;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(14, 165, 233, 0.2) 0%, transparent 55%),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 45%);
  animation: gradientShift 8s ease-in-out infinite;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 36px 36px;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: min(100%, 900px);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--text);
  text-shadow: 0 0 60px rgba(14, 165, 233, 0.12), 0 2px 24px rgba(0, 0, 0, 0.2);
}

.hero-title-fixed {
  display: block;
}

.hero-rotating-wrap {
  display: inline-block;
  min-height: 1.15em;
  vertical-align: top;
  text-align: left;
}

.hero-rotating-word {
  display: inline-block;
  color: var(--primary-light);
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@supports (not (-webkit-background-clip: text)) {
  .hero-rotating-word {
    color: var(--primary-light);
    -webkit-text-fill-color: inherit;
  }
}

/* Curseur typewriter qui clignote */
.hero-typewriter-cursor {
  display: inline-block;
  color: var(--primary-light);
  font-weight: 400;
  animation: heroCursorBlink 0.7s step-end infinite;
  margin-left: 1px;
}

@keyframes heroCursorBlink {
  50% { opacity: 0; }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

.scroll-indicator {
  width: 3px;
  height: 56px;
  background: linear-gradient(to bottom, var(--primary), var(--accent), transparent);
  border-radius: 3px;
  animation: scrollBounce 2s ease-in-out infinite;
  box-shadow: 0 0 16px rgba(14, 165, 233, 0.6), 0 0 32px rgba(6, 182, 212, 0.2);
  position: relative;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  border-radius: 1px;
  animation: scrollBounce 2s ease-in-out infinite;
  animation-delay: 0.15s;
}

@keyframes revealLine {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ----- Reveal on scroll ----- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-scale {
  transform: translateY(30px) scale(0.96);
}

.reveal.reveal-scale.visible {
  transform: translateY(0) scale(1);
}

.reveal.reveal-left {
  transform: translateX(-50px);
}

.reveal.reveal-left.visible {
  transform: translateX(0);
}

.reveal.reveal-right {
  transform: translateX(50px);
}

.reveal.reveal-right.visible {
  transform: translateX(0);
}

.reveal.delay-1 { transition-delay: 0.05s; }
.reveal.delay-2 { transition-delay: 0.1s; }
.reveal.delay-3 { transition-delay: 0.15s; }
.reveal.delay-4 { transition-delay: 0.2s; }
.reveal.delay-5 { transition-delay: 0.25s; }
.reveal.delay-6 { transition-delay: 0.3s; }
.reveal.delay-7 { transition-delay: 0.35s; }
.reveal.delay-8 { transition-delay: 0.4s; }

/* ----- Section titles ----- */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: transform 0.8s var(--ease-out);
}

.section-title.visible::after {
  transform: translateX(-50%) scaleX(1);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ----- Showreel ----- */
.showreel {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.showreel-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 12vw, 7rem);
  margin-bottom: 2.5rem;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--text);
  line-height: 1;
}

.showreel-video-wrap {
  aspect-ratio: 9/16;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.showreel-video-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(14, 165, 233, 0.2), 0 0 80px rgba(14, 165, 233, 0.1);
}

/* Effet cinéma : scanlines légères */
.showreel-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 2;
}

.showreel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(6, 182, 212, 0.08));
  color: var(--text-muted);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.5s var(--ease-out), background 0.5s var(--ease-out);
}

.showreel-placeholder::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(14, 165, 233, 0.15), transparent 30%);
  animation: rotateBg 8s linear infinite;
}

@keyframes rotateBg {
  to { transform: rotate(360deg); }
}

.showreel-placeholder > span {
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.showreel-video-wrap:hover .showreel-placeholder {
  box-shadow: inset 0 0 80px rgba(14, 165, 233, 0.12);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(6, 182, 212, 0.1));
}

/* ----- Du concept à la création — style House of Shafaq (cartes) ----- */
.workflow {
  padding: 6rem 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.workflow-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
  text-align: center;
}

.workflow-title-simple {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

/* Grille en mode paysage : 2 colonnes desktop, cartes horizontales (icône + texte) */
/* Étapes les unes à la suite des autres (une colonne) */
.workflow-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .workflow-steps-grid {
    gap: 1.5rem;
  }
}

.workflow-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  transition: border-color 0.3s, box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  min-height: 0;
}

@media (min-width: 600px) {
  .workflow-step {
    padding: 1.75rem 2rem;
    gap: 1.5rem;
  }
}

.workflow-step:hover {
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 20px rgba(14, 165, 233, 0.08);
  transform: translateY(-4px);
}

.workflow-step-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.1);
}

.workflow-step-icon svg {
  width: 32px;
  height: 32px;
}

@media (min-width: 600px) {
  .workflow-step-icon {
    width: 64px;
    height: 64px;
  }
  .workflow-step-icon svg {
    width: 40px;
    height: 40px;
  }
}

.workflow-step-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.workflow-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.workflow-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
  line-height: 1.3;
}

@media (min-width: 600px) {
  .workflow-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

.workflow-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (min-width: 600px) {
  .workflow-step p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

.workflow-video-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.workflow-video-cta .btn {
  display: inline-block;
}

/* ----- Process / Méthode : colonne gauche titre + trait, colonne droite étapes ----- */
.process-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .process-inner {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
  }
}

.process-col--title {
  position: sticky;
  top: 6rem;
}

@media (max-width: 899px) {
  .process-col--title {
    position: static;
  }
}

.process-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}

.process-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.process-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.process-col--steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.process-step {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.process-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.process-step-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ----- Ce qu'on crée pour vous — style "Experienced in Various Video Types" (House of Shafaq) ----- */
.creates-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.creates-title {
  text-align: center;
  margin-bottom: 3rem;
}

.creates-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .creates-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .creates-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.creates-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s ease;
  position: relative;
}

.creates-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(14, 165, 233, 0.4);
}

.creates-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.creates-card-inner {
  position: relative;
}

.creates-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.creates-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.creates-card-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.25s var(--ease-out), color 0.2s ease;
}

.creates-card-link:hover {
  color: var(--primary);
  gap: 0.6rem;
}

.creates-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.creates-cta .btn {
  display: inline-block;
}

/* ----- Services : bento grid (grid-template-areas), overlay, hover description ----- */
.services-main {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 0;
}

.services-section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.title-highlight {
  position: relative;
  display: inline-block;
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.9), 0 0 40px rgba(14, 165, 233, 0.6);
}

/* ----- Services : Wipe Reveal vertical (scroll pinné, full viewport) ----- */
.services-wipe-section {
  padding: 6rem 2rem 0;
  max-width: 100%;
  margin: 0;
}

.services-wipe-section .services-section-title {
  margin-bottom: 4.5rem;
}

.services-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
}

@media (min-width: 1024px) {
  .services-wrapper {
    /* 500vh = 4 panels (400vh) + 100vh de marge pour voir le dernier panel en entier */
    height: 500vh;
    min-height: 500vh;
  }

  .services-viewport {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
  }
}

.service-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-panel--first {
  clip-path: inset(0 0 0 0);
  position: relative;
}

.panel-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  padding: 0 10%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 15, 0.92) 15%, transparent 70%);
  z-index: 1;
}

.panel-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.panel-label {
  font-family: var(--font-body);
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}

.panel-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--text);
  margin: 0 0 1rem;
}

.panel-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 420px;
}

.panel-cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--primary-light);
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
  opacity: 0.8;
}

.panel-content:hover .panel-cta-btn {
  color: var(--primary);
  opacity: 1;
  transform: translateX(4px);
}

.panel-content--reels {
  background-image: url('../images/contenu-social.png');
}

.panel-content--ugc {
  background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=1600&q=80');
}

.panel-content--ads {
  background-image: url('../images/publicite-bts.png');
}

.panel-content--corporate {
  background-image: url('../images/film-corporate.png');
}

.panel-content--drone {
  background-image: url('https://images.unsplash.com/photo-1473968512647-3e447244af8f?auto=format&fit=crop&w=1600&q=80');
}

/* Mobile : pas d'effet wipe, panels empilés, bords arrondis, bulles plus compactes */
@media (max-width: 1023px) {
  .services-wrapper {
    min-height: 0;
    height: auto;
  }

  .services-viewport {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 0;
    gap: 1rem;
  }

  .service-panel {
    position: relative;
    height: auto;
    min-height: 0;
    clip-path: none;
    padding: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
    border: none;
    box-shadow: none;
  }

  .service-panel--first {
    position: relative;
  }

  .panel-content {
    padding: 1.75rem 1.25rem;
    min-height: 52vh;
    justify-content: flex-end;
    border-radius: 1.5rem;
    border: none;
    box-shadow: none;
  }

  .panel-overlay {
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.6) 40%, transparent 100%);
  }

  .panel-inner {
    max-width: none;
  }

  .panel-label {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .panel-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
  }

  .panel-desc {
    font-size: 1rem;
    line-height: 1.65;
    max-width: none;
  }
}

.services-blocks {
  margin-top: 2.5rem;
}

/* Grille asymétrique style croquis : 1 Reels (gauche grand), 2 Films, 3 Pub, 4 UGC, 5 Drone — prennent toute la place */
.services-blocks-bento {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas:
    "reels films"
    "reels pub"
    "ugc drone";
  min-height: 560px;
  height: 70vh;
  max-height: 720px;
}

@media (max-width: 799px) {
  .services-blocks-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "reels"
      "films"
      "pub"
      "ugc"
      "drone";
    min-height: 0;
    height: auto;
    max-height: none;
    gap: 1rem;
  }
  .service-block--reels { grid-area: reels; }
  .service-block--films { grid-area: films; }
  .service-block--ads { grid-area: pub; }
  .service-block--drone { grid-area: drone; }
  .service-block--ugc { grid-area: ugc; }
  .service-block--reels {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .service-block--reels .service-block-phone {
    width: auto;
    height: auto;
    max-height: 70vh;
    aspect-ratio: 9 / 16;
    max-width: 100%;
  }
  .services-blocks-bento .service-block--films,
  .services-blocks-bento .service-block--ads,
  .services-blocks-bento .service-block--drone,
  .services-blocks-bento .service-block--ugc {
    min-height: 220px;
  }
}

.service-block--reels { grid-area: reels; }
.service-block--films { grid-area: films; }
.service-block--ads { grid-area: pub; }
.service-block--drone { grid-area: drone; }
.service-block--ugc { grid-area: ugc; }

.service-block {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 120px;
  border-radius: 12px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  margin: 0;
}

.services-blocks-bento .service-block {
  border-radius: 24px;
  min-height: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.service-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* Carte Reels : remplit sa cellule, effet écran smartphone (bordure + arrondi) */
.service-block--reels {
  min-height: 0;
  padding: 0;
}

.service-block-phone {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
}

.service-block--reels::after {
  display: none;
}

.service-block-phone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
  pointer-events: none;
}

.service-block--reels .service-block-bg,
.service-block--reels .service-block-content {
  position: absolute;
  inset: 0;
}

.service-block--reels .service-block-content {
  padding: 1rem 1.25rem;
}

.service-block-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease-out;
}

.service-block:hover .service-block-bg {
  transform: scale(1.05);
}

/* Overlay sombre en bas pour toutes les cartes */
.service-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
  pointer-events: none;
}

.service-block-content {
  position: relative;
  z-index: 2;
  padding: 1.25rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-block-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin: 0 0 0.35rem;
}

.service-block-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), opacity 0.35s var(--ease-out);
}

.service-block:hover .service-block-desc {
  max-height: 120px;
  opacity: 1;
}

/* Image Reels : contenu fourni (contenu-social.png) */
.service-block--reels .service-block-bg {
  background-image: url('../images/contenu-social.png');
}

.service-block--films .service-block-bg {
  background-image: url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=800&q=80');
}

.service-block--ads .service-block-bg {
  background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=800&q=80');
}

.service-block--drone .service-block-bg {
  background-image: url('https://images.unsplash.com/photo-1473968512647-3e447244af8f?auto=format&fit=crop&w=800&q=80');
}

.service-block--ugc .service-block-bg {
  background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=600&q=80');
}

.link-arrow {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.25s var(--ease-out), color 0.2s, transform 0.25s var(--ease-out);
}

.link-arrow:hover {
  gap: 0.6rem;
  color: var(--primary);
  transform: translateX(4px);
}

/* ----- Video types grid ----- */
.video-types {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-types .btn {
  display: block;
  margin: 3rem auto 0;
}

.video-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.video-type-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.06), transparent);
  transition: left 0.5s var(--ease-out);
}

.video-type-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-type-card:hover::after {
  left: 100%;
}

.video-type-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.video-type-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ----- About ----- */
.about {
  padding: 6rem 2rem;
  position: relative;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.about-content {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.about-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1.75rem;
  color: var(--text);
}

.about-title-line {
  display: block;
}

.about-title-line:last-child {
  color: var(--primary-light);
  font-weight: 600;
}

.about-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.about-punchlines {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.about-punchline {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

.about-punchline-q {
  color: var(--primary-light);
  font-weight: 600;
  display: inline;
}

.about .btn {
  margin-top: 0.5rem;
}

/* ----- Testimonials ----- */
.testimonials {
  padding: 6rem 2rem;
  position: relative;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  opacity: 0.5;
  pointer-events: none;
}

.testimonials .section-title {
  margin-bottom: 2.5rem;
  position: relative;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonials-track-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.testimonials-slider .testimonials-track {
  flex: 1;
  min-width: 0;
}

.slider-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease-out);
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

.slider-btn:active {
  transform: scale(0.98);
}

.testimonials-track {
  flex: 1;
  overflow: visible;
  min-width: 0;
}

.testimonial-card {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(14, 165, 233, 0.1);
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-style: normal;
}

.testimonial-card cite {
  font-size: 0.9rem;
  color: var(--primary-light);
  font-style: normal;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.testimonials-dots .dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ----- Témoignages Social Proof — fond #080808, grille 3 colonnes, cartes verre ----- */
.testimonials-socialproof {
  background: #080808;
  padding: 6rem 2rem;
  position: relative;
}

.testimonials-socialproof-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-socialproof-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}

.testimonials-socialproof-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 3rem;
}

.testimonials-socialproof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .testimonials-socialproof-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.testimonial-glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 2.5rem;
  padding: 2.5rem;
  overflow: hidden;
}

.testimonial-glass-quote {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  width: 80px;
  height: 80px;
  opacity: 0.2;
  color: var(--primary-light);
  pointer-events: none;
}

.testimonial-glass-quote svg {
  width: 100%;
  height: 100%;
}

.testimonial-glass-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin: 0 0 1.75rem;
  position: relative;
  z-index: 1;
}

.testimonial-glass-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-glass-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.testimonial-glass-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-glass-name {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}

.testimonial-glass-role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ----- FAQ (accordéon) ----- */
.faq-section {
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-section .section-title {
  margin-bottom: 2.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.faq-question:hover {
  background: rgba(14, 165, 233, 0.06);
  color: var(--primary-light);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.35s var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer p {
  margin: 0;
  padding: 0 1.5rem 1.25rem 1.5rem;
  padding-top: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq-item.is-open .faq-answer {
  max-height: 800px;
}

/* ----- Footer CTA ----- */
.footer-cta {
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.04) 0%, transparent 50%, rgba(6, 182, 212, 0.06) 100%);
  background-size: 400% 400%;
  animation: gradientShift 12s ease-in-out infinite;
}

.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.footer-tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}

.footer-cta h2,
.footer-cta .footer-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.footer-cta-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.footer-cta-email {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-cta-email a {
  color: var(--primary-light);
  font-weight: 500;
}

.footer-cta-email a:hover {
  text-decoration: underline;
}

.footer-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-services-list span {
  transition: color 0.3s, transform 0.3s var(--ease-out);
}

.footer-services-list span:hover {
  color: var(--primary-light);
  transform: translateY(-3px) scale(1.05);
  text-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.footer-services-list span:nth-child(odd) {
  animation: float 4s ease-in-out infinite;
}

.footer-services-list span:nth-child(even) {
  animation: float 4s ease-in-out 1s infinite;
}

/* ----- Footer ----- */
.footer {
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-links h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ----- Pages service (film-corporate, reels-shorts, ugc, etc.) ----- */
.service-page {
  min-height: calc(100vh - 200px);
  padding: 8rem 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-page-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.service-page-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.service-page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.service-page-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.service-page-body {
  text-align: left;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.service-page-body p {
  margin-bottom: 1rem;
}

.service-page-body p:last-child {
  margin-bottom: 0;
}

.service-page-section {
  text-align: left;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.service-page-section h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.service-page-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-page-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-page-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

.service-page-cta-wrap {
  margin-top: 2.5rem;
  text-align: center;
}

.service-page-back {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.service-page-back:hover {
  color: var(--primary-light);
}

/* Page liste des services */
.services-list-page {
  min-height: calc(100vh - 200px);
  padding: 8rem 2rem 4rem;
}

.services-list-inner {
  max-width: 960px;
  margin: 0 auto;
}

.services-list-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-list-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 3rem;
}

/* Liste verticale : un service à la suite de l'autre */
.services-list-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-list-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.35s var(--ease-out), border-color 0.3s, box-shadow 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.services-list-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}

.services-list-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(14, 165, 233, 0.12);
}

.services-list-card:hover::before {
  opacity: 1;
}

/* Lien en ligne : texte à gauche, image à droite au survol */
.service-card-link-row {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  min-height: 140px;
}

.service-card-content {
  flex: 1;
  min-width: 0;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-list-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.5rem 0 0.5rem;
}

.services-list-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.services-list-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary-light);
}

/* Panneau image qui sort au survol — vraies photos en arrière-plan */
.service-card-preview {
  position: relative;
  width: 0;
  min-width: 0;
  overflow: hidden;
  transition: width 0.45s var(--ease-out), min-width 0.45s var(--ease-out);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.15) 100%);
  pointer-events: none;
}

.services-list-card:hover .service-card-preview {
  width: min(320px, 38%);
  min-width: 200px;
}

/* Vraies images par service (Unsplash, libres d’usage) */
.service-card-preview--social {
  background-image: url('https://images.unsplash.com/photo-1611162617474-5b21e879e113?auto=format&fit=crop&w=800&q=80');
}

.service-card-preview--corporate {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=800&q=80');
}

.service-card-preview--ugc {
  background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=800&q=80');
}

.service-card-preview--reels {
  background-image: url('https://images.unsplash.com/photo-1611162616305-c69b3fa7fbe0?auto=format&fit=crop&w=800&q=80');
}

.service-card-preview--drone {
  background-image: url('https://images.unsplash.com/photo-1473968512647-3e447244af8f?auto=format&fit=crop&w=800&q=80');
}

@media (max-width: 600px) {
  .service-card-link-row {
    min-height: 120px;
  }
  .services-list-card:hover .service-card-preview {
    width: min(180px, 45%);
    min-width: 140px;
  }
}

.services-list-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.services-list-cta .service-page-back {
  margin-top: 0;
}

.service-card a.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.service-card a.service-card-link:hover {
  color: inherit;
}

.service-card-inner .link-arrow {
  margin-top: 0.75rem;
}

.service-card-link:hover .link-arrow {
  gap: 0.6rem;
  color: var(--primary);
  transform: translateX(4px);
}

/* ----- Bandeau cookies (RGPD / ePrivacy) ----- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99998;
  padding: 1rem 1.5rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner:not([hidden]) {
  display: block;
  animation: cookieBannerIn 0.35s var(--ease-out);
}

@keyframes cookieBannerIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-banner-text {
  flex: 1 1 280px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: var(--primary);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-cookie {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-cookie-outline {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-cookie-outline:hover {
  background: var(--bg-card);
  border-color: var(--primary);
  color: var(--primary-light);
}

.footer-cookie-prefs {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  text-align: left;
}

.footer-cookie-prefs:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* ===== Pages de services dédiées ===== */
.hero-service {
  min-height: 70vh;
  padding-top: 120px;
}

.service-detail-section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-detail-intro h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.service-detail-intro p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-detail-intro p strong {
  color: var(--primary-light);
  font-weight: 600;
}

.service-detail-benefits h3,
.service-detail-process h3,
.service-detail-usecases h3,
.service-detail-platforms h3,
.service-detail-faq h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.process-list,
.usecases-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-list li,
.usecases-list li {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  padding-left: 2rem;
  position: relative;
}

.process-list li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--primary);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.process-list {
  counter-reset: item;
}

.usecases-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.process-list li strong,
.usecases-list li strong {
  color: var(--text);
  font-weight: 600;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.platform-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-light);
}

.platform-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.service-detail-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.service-detail-cta h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.service-detail-cta p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.service-detail-email {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.service-detail-email a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.2s;
}

.service-detail-email a:hover {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-service {
    min-height: 60vh;
    padding-top: 100px;
  }

  .service-detail-section {
    padding: 2rem 1rem;
  }

  .service-detail-inner {
    gap: 2.5rem;
  }

  .service-detail-intro h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .service-detail-intro p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .service-detail-benefits h3,
  .service-detail-process h3,
  .service-detail-usecases h3,
  .service-detail-platforms h3,
  .service-detail-faq h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-icon {
    font-size: 2rem;
  }

  .benefit-card h4 {
    font-size: 1.125rem;
  }

  .benefit-card p {
    font-size: 0.95rem;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .platform-card {
    padding: 1.25rem;
  }

  .platform-card h4 {
    font-size: 1.125rem;
  }

  .platform-card p {
    font-size: 0.9rem;
  }

  .process-list li,
  .usecases-list li {
    font-size: 1rem;
    padding-left: 1.75rem;
  }

  .service-detail-cta {
    padding: 2rem 1.5rem;
  }

  .service-detail-cta h2 {
    font-size: 1.5rem;
  }

  .service-detail-cta p {
    font-size: 1rem;
  }

  .service-detail-email {
    font-size: 0.9rem;
  }
}

/* ===== Articles de blog ===== */
.blog-article .service-detail-intro ul.usecases-list {
  margin-top: 1rem;
}

.article-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.blog-article h2 {
  margin-top: 2rem;
}

.blog-article h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-meta {
    font-size: 0.85rem;
  }
}

/* ===== Page merci (confirmation Cal.com, noindex) ===== */
.page-merci .merci-main {
  position: relative;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.page-merci .merci-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-merci .merci-bg-gradient {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(14, 165, 233, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 45%);
}

.page-merci .merci-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  text-align: center;
}

.page-merci .merci-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  line-height: 1;
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.35);
}

.page-merci .merci-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--text);
}

.page-merci .merci-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.page-merci .merci-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.page-merci .merci-text a {
  color: var(--primary-light);
  text-decoration: none;
}

.page-merci .merci-text a:hover {
  text-decoration: underline;
}

.page-merci .merci-text--small {
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

.page-merci .merci-cta {
  margin-top: 2rem;
}

.page-merci .merci-footer {
  margin-top: auto;
}

@media (max-width: 768px) {
  .page-merci .merci-main {
    min-height: auto;
    padding: 5rem 1rem 3rem;
  }
}

/* ===== Pages services (Reels, Corporate, Pub, Drone) — même présentation ===== */
.service-page-highlight {
  margin: 0 0 2.5rem;
}

.service-page-highlight-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(6, 182, 212, 0.06) 100%);
  border: 1px solid rgba(14, 165, 233, 0.35);
  border-radius: 16px;
}

.service-page-highlight-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  min-height: 5.5rem;
  padding: 0.5rem;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 2px solid var(--primary);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.2;
}

.service-page-highlight-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.service-page-highlight-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.service-page-pack {
  margin-bottom: 2.5rem;
}

.service-page-subtitle {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.service-page-pack-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 52rem;
}

.service-page-pack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-page-pack-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.75rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-page-pack-card:hover {
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.service-page-pack-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.service-page-pack-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.service-page-pack-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.benefits-grid--service-2col {
  grid-template-columns: repeat(2, 1fr);
}

.benefit-card--featured {
  border-color: rgba(14, 165, 233, 0.35);
  background: linear-gradient(180deg, rgba(17, 17, 24, 1) 0%, rgba(22, 22, 31, 1) 100%);
}

.service-page-benefits-block h3 {
  margin-bottom: 1.5rem;
}

.service-page-extra {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.service-page-extra-inner {
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.service-page-extra-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.service-page-extra-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.service-page-extra-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.service-page-extra-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.service-page-extra-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.service-page-extra-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.service-page-extra-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.service-page-extra-note {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .service-page-highlight-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-page-highlight-text {
    text-align: left;
  }

  .service-page-pack-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid--service-2col {
    grid-template-columns: 1fr;
  }

  .service-page-extra-inner {
    padding: 1.5rem 1.25rem;
  }

  .service-page-extra-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-page-extra-list {
    text-align: left;
  }
}
