/* ════════════════════════════════════════════
   MEDIALAB PRO — Landing Page
   ════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #f2f2f2;
  font-family: 'Clash Display', 'Inter', sans-serif;
  color: #1d1d1d;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── TOKENS ── */
:root {
  --blue:    #00b9ff;
  --dark:    #232323;
  --bg:      #f2f2f2;
  --white:   #ffffff;
  --text:    #1d1d1d;
  --card-bg: #ffffff;
  --card-light-blue: #ccf1ff;
  --card-gray: #f9f9f9;
  --max-w:   1472px;
  --gutter:  20px;
  --r-xl:    20px;
  --r-lg:    16px;
  --r-md:    12px;
  --r-sm:    8px;
  --r-pill:  100px;
  --ease:    cubic-bezier(.25,.46,.45,.94);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Clash Display', sans-serif; font-weight: 500; line-height: 1.1; }

/* Highlighted italic chip */
.chip {
  display: inline-block;
  background: var(--blue);
  border-radius: 6px;
  padding: 2px 10px;
  line-height: inherit;
  vertical-align: baseline;
}
.chip em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: #fff;
  font-weight: 400;
}
.chip.large {
  padding: 4px 12px;
}

/* ── LAYOUT ── */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px var(--gutter);
}
.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 60px;
}
.section-header h2 { font-size: 64px; color: #1d1d1d; }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: #fff;
  font-family: 'Clash Display', sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.badge.sm { font-size: 16px; padding: 6px 13px; }

/* ── HOVER CARD EFFECT ── */
.hover-card {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.hover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #fff;
  font-family: 'Clash Display', sans-serif; font-weight: 500; font-size: 20px;
  padding: 14px 16px; border-radius: var(--r-sm);
  white-space: nowrap; transition: background .2s;
}
.btn-primary:hover { background: #00a3e0; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid var(--blue); color: var(--blue);
  font-family: 'Clash Display', sans-serif; font-weight: 500; font-size: 20px;
  padding: 13px 16px; border-radius: var(--r-sm);
  white-space: nowrap; transition: background .2s;
}
.btn-secondary:hover { background: #eef9ff; }

.btn-nav {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #fff;
  font-family: 'Clash Display', sans-serif; font-weight: 500; font-size: 20px;
  padding: 13px 15px; border-radius: var(--r-sm);
  white-space: nowrap; transition: background .2s;
}
.btn-nav:hover { background: #00a3e0; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(255,255,255,.6); color: #fff;
  font-family: 'Clash Display', sans-serif; font-weight: 500; font-size: 18px;
  padding: 12px 16px; border-radius: 10px;
  white-space: nowrap; transition: background .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); }

.btn-icon { width: 20px; height: 20px; object-fit: contain; }
.btn-icon-arrow { width: 20px; height: 20px; object-fit: contain; }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Glow auras */
.aura {
  position: absolute; pointer-events: none; z-index: 0;
  width: 526px; height: 209px; border-radius: 50%;
  background: rgba(0,185,255,.15);
  filter: blur(90px);
  top: 620px;
}
.aura-left   { left: -257px; }
.aura-center { left: 493px; }
.aura-right  { left: 1226px; }

/* Navbar */
.navbar {
  position: relative; z-index: 10;
  max-width: var(--max-w); margin: 0 auto;
  padding: 33px 30px;
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border-radius: var(--r-xl);
  margin-top: 20px;
}
.navbar .logo img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: 'Clash Display', sans-serif; font-weight: 400; font-size: 20px;
  color: #000; transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }

/* Hero content */
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px var(--gutter) 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; text-align: center;
}
.hero-content h1 { font-size: 64px; color: #000; }
.hero-content h1 .chip { font-size: 68px; }

.hero-subtitle {
  font-family: 'Clash Display', sans-serif; font-weight: 400;
  font-size: 20px; line-height: 1.3; color: #000; max-width: 644px;
}
.hero-ctas { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ── INFINITE CAROUSEL ── */
.hero-carousel-wrap {
  position: relative; z-index: 2;
  margin-top: 60px;
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hero-carousel-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: heroScroll 30s linear infinite;
}
.hero-carousel-wrap:hover .hero-carousel-track { animation-play-state: paused; }

@keyframes heroScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-card {
  flex-shrink: 0;
  width: 644px;
  aspect-ratio: 644 / 423;
  background: #fff;
  border-radius: 17px;
  overflow: hidden;
}
.hero-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ════════════════════════════════════════════
   LE CONSTAT
   ════════════════════════════════════════════ */
.constat-section { padding-top: 120px; }

.constat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.constat-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 16px;
  display: flex; flex-direction: column;
  gap: 14px; align-items: center; text-align: center;
  cursor: default;
}
.constat-card h3 { font-size: 22px; font-weight: 500; line-height: 1.15; color: #000; }
.constat-card p  { font-size: 15px; font-weight: 400; line-height: 1.35; color: #000; }

.card-illo {
  width: 100%; flex: 1;
  min-height: 160px;
  max-height: 200px;
  background: #f7f7f8;
  border-radius: 6px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-top: auto;
}
.card-illo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Top-image variant (illustration first) */
.constat-card--top .card-illo { order: -1; margin-top: 0; margin-bottom: 0; }

/* ════════════════════════════════════════════
   NOTRE SOLUTION
   ════════════════════════════════════════════ */
.solution-section { padding-top: 100px; }

.solution-layout {
  display: flex; gap: 32px; align-items: flex-start;
}
.solution-photo {
  flex-shrink: 0; width: 665px; height: 476px;
  border-radius: var(--r-xl); overflow: hidden; cursor: default;
}
.solution-photo img { width: 100%; height: 100%; object-fit: cover; }

.solution-grid {
  flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.solution-card {
  background: #fff; border-radius: 10px;
  padding: 38px 20px 24px; min-height: 226px;
  display: flex; flex-direction: column; gap: 14px;
  cursor: default;
}
.solution-card h4 { font-size: 22px; font-weight: 500; line-height: 1.2; color: #000; }
.solution-card p  { font-size: 15px; font-weight: 400; line-height: 1.3; color: #000; }
.t-blue { color: var(--blue); font-weight: 600; }

/* ════════════════════════════════════════════
   LE PROCESS — absolute positioned board
   ════════════════════════════════════════════ */
.process-section { padding-top: 100px; }

.process-board {
  position: relative;
  background: #fff;
  border-radius: 23px;
  /* 486 / 1472 ≈ 33.0% → maintain aspect ratio */
  padding-bottom: 33%;
  width: 100%;
  min-height: 360px;
}

/* Cards — placed via CSS custom properties */
.pcard {
  position: absolute;
  left: var(--pc-l);
  top: var(--pc-t);
  width: var(--pc-w);
  min-height: 40.3%; /* 196/486 */
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: row; align-items: stretch;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pcard:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

.pcard--blue { background: var(--card-light-blue); }
.pcard--dark { background: var(--card-gray); }

.pcard-bar {
  flex-shrink: 0; width: 38px;
  border-radius: 22px;
  margin: 13px 0 13px 13px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pcard-bar--blue { background: var(--blue); }
.pcard-bar--dark { background: #222; }

.pcard-time {
  font-family: 'Clash Display', sans-serif; font-weight: 400;
  font-size: 13px; color: #fff;
  writing-mode: vertical-rl; transform: rotate(180deg);
  white-space: nowrap; line-height: 1.3;
}

.pcard-body {
  flex: 1; padding: 16px 16px 16px 10px;
  display: flex; flex-direction: row; align-items: flex-start; gap: 12px;
}
.pcard-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: #fff; border-radius: 30px;
  display: flex; align-items: center; justify-content: center;
}
.pcard-icon img { width: 28px; height: 28px; object-fit: contain; }
.pcard-text h4 { font-size: 17px; font-weight: 500; line-height: 1.2; color: #000; margin-bottom: 8px; }
.pcard-text p  { font-size: 14px; font-weight: 400; line-height: 1.25; color: #000; }

/* Process arrows — absolutely positioned */
.parrow { position: absolute; pointer-events: none; }
/* Arrow 1: from step1 bottom → step2 (Vector1, 184×163, x=186,y=226) */
.parrow-1 {
  left: 12.6%; top: 46.5%;
  width: 12.3%;
}
/* Arrow 2: from step2 → step3 */
.parrow-2 {
  left: 38%;
  top: 29%;
  width: 9.2%;
}
/* Arrow 3: from step3 bottom → step4 (Vector3, 102×163, x=930,y=225) */
.parrow-3 {
  left: 63.2%; top: 46.3%;
  width: 6.7%;
}

/* ════════════════════════════════════════════
   LES TARIFS
   ════════════════════════════════════════════ */
.tarifs-section { padding-top: 100px; }

.tarifs-card {
  background: var(--dark);
  border-radius: 22px;
  border: 11px solid #fff;
  box-shadow: 2px 2px 14px rgba(0,0,0,.15);
  padding: 18px;
  display: flex; gap: 36px; align-items: stretch;
  max-width: 1080px; margin: 0 auto;
}
.tarifs-left {
  background: #fff; border-radius: 14px;
  padding: 18px; flex: 0 0 490px;
  display: flex; flex-direction: column; gap: 22px; justify-content: center;
}
.tarifs-price { display: flex; align-items: flex-end; gap: 8px; }
.price-big {
  font-family: 'Clash Display', sans-serif; font-weight: 500;
  font-size: 96px; line-height: 1; color: var(--dark);
}
.price-sub {
  font-family: 'Clash Display', sans-serif; font-weight: 500;
  font-size: 22px; color: var(--blue); padding-bottom: 10px;
}
.tarifs-hr { border: none; border-top: 1.5px solid #e0e0e0; }
.tarifs-desc {
  font-family: 'Clash Display', sans-serif; font-weight: 500;
  font-size: 19px; line-height: 1.35; color: var(--dark);
}

.tarifs-right {
  flex: 1; display: flex; flex-direction: column; gap: 20px; padding-top: 8px;
}
.tarifs-include-title {
  font-family: 'Clash Display', sans-serif; font-weight: 600;
  font-size: 19px; line-height: 1.3; color: #fff;
}
.tarifs-list { display: flex; flex-direction: column; gap: 16px; }
.tarifs-list li {
  display: flex; align-items: center; gap: 16px;
  font-family: 'Clash Display', sans-serif; font-weight: 500;
  font-size: 18px; line-height: 1.2; color: #fff;
}
.tarifs-list li img { width: 22px; height: 22px; flex-shrink: 0; }
.btn-tarifs {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--blue); color: #fff;
  font-family: 'Clash Display', sans-serif; font-weight: 500; font-size: 19px;
  height: 58px; padding: 0 16px; border-radius: 11px; margin-top: auto;
  transition: background .2s;
}
.btn-tarifs img { width: 26px; height: 26px; }
.btn-tarifs:hover { background: #00a3e0; }

/* ════════════════════════════════════════════
   LES TÉMOIGNAGES
   ════════════════════════════════════════════ */
.temoignages-section { padding-bottom: 60px; }

.logos-row {
  overflow: hidden;
}
.logos-track {
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
/* Hide duplicates on desktop */
.partner-logo--dup { display: none; }

.partner-logo {
  height: 60px; width: auto; object-fit: contain; flex-shrink: 0;
  filter: grayscale(100%); opacity: .6;
  transition: filter .25s, opacity .25s, transform .25s;
}
.partner-logo:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }

@keyframes logosScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   RÉSERVER (CTA)
   ════════════════════════════════════════════ */
.reserver-section {
  max-width: var(--max-w); margin: 0 auto 40px;
  padding: 0 var(--gutter);
  overflow: hidden; /* prevent layout bleed outside section */
}
.reserver-inner {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 60px 60px 60px 60px;
  display: flex; align-items: center;
  justify-content: space-between;
  position: relative; overflow: hidden;
}
.reserver-text {
  flex: 1; max-width: 520px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative; z-index: 1;
}
.reserver-text h2 { font-size: 52px; color: #fff; line-height: 1.1; }
.reserver-text h2 .chip { font-size: 56px; }
.reserver-sub {
  font-family: 'Clash Display', sans-serif; font-weight: 400;
  font-size: 20px; line-height: 1.2; color: rgba(255,255,255,.85);
}
.reserver-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* App screenshots — bleed right + top, clipped by overflow:hidden on reserver-inner */
.reserver-apps {
  position: absolute;
  right: -30px;   /* bleed past right edge */
  top: -40px;     /* bleed past top edge */
  width: 650px;
  height: auto;
  pointer-events: none;
}
.rapp {
  position: absolute;
  width: 650px; height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.rapp-back  { top: 0;   right: 80px; transform: rotate(-8deg); }
.rapp-front { top: 140px; right: -20px;  transform: rotate(-8deg); }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  background: linear-gradient(to bottom, transparent 0%, #fff 38%);
  max-width: 1512px; margin: 0 auto;
  padding: 0 var(--gutter) 24px;
  position: relative; overflow: hidden;
}

.footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0;
}
.footer-bar .logo img { height: 34px; width: auto; }

.footer-right { display: flex; align-items: center; gap: 20px; }
.footer-social-label {
  font-family: 'Clash Display', sans-serif; font-weight: 400;
  font-size: 18px; color: #000;
}
.footer-socials { display: flex; gap: 8px; align-items: center; }
.footer-socials a { display: flex; }
.footer-socials img { width: 30px; height: 30px; object-fit: contain; opacity: .7; transition: opacity .2s, transform .2s; }
.footer-socials a:hover img { opacity: 1; transform: scale(1.1); }

.footer-line { border: none; border-top: 1px solid rgba(0,0,0,.1); margin: 4px 0; }

.footer-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  font-family: 'Clash Display', sans-serif; font-size: 17px; color: var(--text);
}
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--text); transition: color .2s; }
.footer-links a:hover { color: var(--blue); }
.footer-copy { font-size: 17px; }

/* Gradient watermark logo */
.footer-wm {
  width: 100%;
  display: flex; justify-content: center;
  margin-top: 8px;
  opacity: 1; /* SVG has built-in gradient with transparency */
  pointer-events: none;
}
.footer-wm img {
  width: 100%;
  max-width: var(--max-w);
  height: auto;
}

/* ════════════════════════════════════════════
   BURGER MENU + MOBILE DRAWER
   ════════════════════════════════════════════ */

/* Burger button — hidden on desktop */
.burger-btn {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px; flex-shrink: 0;
}
.burger-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}

/* Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(0,0,0,.45);
  opacity: 0; transition: opacity .3s var(--ease);
}
.mobile-nav-overlay.open {
  display: block; opacity: 1;
}

/* Side drawer */
.mobile-nav-drawer {
  position: fixed; top: 0; right: -320px; z-index: 100;
  width: 300px; height: 100dvh;
  background: #fff; box-shadow: -4px 0 30px rgba(0,0,0,.12);
  display: flex; flex-direction: column; gap: 0;
  padding: 28px 24px 40px;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav-drawer.open { right: 0; }

.mobile-nav-close {
  align-self: flex-end; background: none; border: none; cursor: pointer;
  font-size: 22px; color: var(--dark); line-height: 1;
  padding: 4px 8px; margin-bottom: 28px;
  transition: color .2s;
}
.mobile-nav-close:hover { color: var(--blue); }

.mobile-nav-list { display: flex; flex-direction: column; gap: 0; flex: 1; }
.mobile-nav-list li { border-bottom: 1px solid rgba(0,0,0,.07); }
.mobile-nav-list a {
  display: block; padding: 16px 0;
  font-family: 'Clash Display', sans-serif; font-weight: 500; font-size: 20px;
  color: var(--dark); transition: color .2s;
}
.mobile-nav-list a:hover { color: var(--blue); }

.mobile-nav-cta { margin-top: 32px; justify-content: center; }

/* ════════════════════════════════════════════
   RESPONSIVE — ULTRAWIDE  ≥ 1600px
   ════════════════════════════════════════════ */
@media (min-width: 1600px) {
  :root {
    --max-w: min(90vw, 1800px);
    --gutter: 40px;
  }

  /* Typography scale up */
  .section-header h2 { font-size: 72px; }
  .hero-content h1   { font-size: 72px; }
  .hero-content h1 .chip { font-size: 76px; }
  .hero-subtitle     { font-size: 22px; }

  /* Carousel — bigger cards */
  .hero-card { width: 760px; }

  /* Solution — photo and grid same height */
  .solution-layout { align-items: stretch; }
  .solution-photo  { width: 760px; height: auto; }

  /* Process board — more breathing room */
  .pcard-text h4 { font-size: 19px; }
  .pcard-text p  { font-size: 15px; }

  /* CTA */
  .reserver-text h2 { font-size: 60px; }
  .reserver-text h2 .chip { font-size: 64px; }

  /* Footer — full screen width */
  .footer {
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1100px
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .section-header h2 { font-size: 48px; }

  /* Hero */
  .hero-content h1 { font-size: 48px; }
  .hero-content h1 .chip { font-size: 52px; }
  .hero-card { width: 480px; }

  /* Constat */
  .constat-grid { grid-template-columns: repeat(2, 1fr); }

  /* Solution */
  .solution-layout { flex-direction: column; }
  .solution-photo { width: 100%; height: 340px; }
  .solution-grid { width: 100%; }

  /* Process board: stack vertically */
  .process-board {
    padding-bottom: 0;
    min-height: auto;
    display: flex; flex-direction: column;
    gap: 16px; padding: 24px;
  }
  .pcard {
    position: static !important;
    left: auto; top: auto; width: 100% !important;
    min-height: 130px;
  }
  .parrow { display: none; }

  /* Tarifs */
  .tarifs-card { flex-direction: column; }
  .tarifs-left { flex: none; width: 100%; }

  /* Reserver */
  .reserver-inner { padding: 50px 40px; }
  .reserver-text h2 { font-size: 42px; }
  .reserver-apps { display: none; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 768px
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Globals */
  .section { padding: 70px 16px; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 32px; }

  /* Masquer les sauts de ligne dans tous les titres */
  h1 br, h2 br, h3 br, h4 br { display: none; }
  .section-header h2 .chip,
  .section-header h2 .chip em { font-size: 34px; }

  /* Navbar */
  .navbar {
    flex-direction: row; gap: 0;
    padding: 16px 16px; margin-top: 12px;
    justify-content: space-between; align-items: center;
  }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .burger-btn { display: flex; }

  /* Hero */
  .hero-content { padding: 50px 16px 0; gap: 20px; }
  .hero-content h1 { font-size: 30px; line-height: 1.2; }
  .hero-content h1 .chip { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { justify-content: center; font-size: 17px; }
  .hero-carousel-wrap { margin-top: 40px; }
  .hero-card { width: 280px; }
  .hero-carousel-track { gap: 16px; }

  /* Constat */
  .constat-section { padding-top: 70px; }
  .constat-grid { grid-template-columns: 1fr; gap: 16px; }
  .constat-card h3 { font-size: 19px; }
  .card-illo { min-height: 140px; max-height: 160px; }

  /* Solution */
  .solution-photo { height: 240px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { padding: 24px 16px; min-height: auto; }
  .solution-card h4 { font-size: 18px; }

  /* Process */
  .process-section { padding-top: 70px; }
  .process-board { padding: 16px; gap: 12px; }
  .pcard { min-height: 110px; }
  /* DOM order: #1(1st), #3(2nd), #2(3rd), #4(4th) → force correct visual order */
  .pcard:nth-child(1) { order: 1; }
  .pcard:nth-child(2) { order: 3; }
  .pcard:nth-child(3) { order: 2; }
  .pcard:nth-child(4) { order: 4; }
  .pcard-bar { margin: 10px 0 10px 10px; }
  .pcard-body { padding: 12px 12px 12px 8px; gap: 10px; }
  .pcard-icon { width: 38px; height: 38px; }
  .pcard-icon img { width: 22px; height: 22px; }
  .pcard-text h4 { font-size: 14px; margin-bottom: 6px; }
  .pcard-text p  { font-size: 12px; }
  .pcard-time { font-size: 11px; }

  /* Tarifs */
  .tarifs-section { padding-top: 70px; }
  .tarifs-card { padding: 12px; gap: 16px; border-width: 6px; }
  .tarifs-left { padding: 14px; }
  .price-big { font-size: 72px; }
  .price-sub { font-size: 17px; padding-bottom: 6px; }
  .tarifs-desc { font-size: 16px; }
  .tarifs-include-title { font-size: 16px; }
  .tarifs-list li { font-size: 15px; gap: 12px; }
  .btn-tarifs { font-size: 16px; height: 52px; }

  /* Témoignages — logos slider */
  .logos-row {
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }
  .logos-track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 40px;
    width: max-content;
    animation: logosScroll 12s linear infinite;
  }
  .partner-logo--dup { display: flex; }
  .partner-logo { height: 42px; }

  /* Reserver */
  .reserver-section { padding: 0 12px; margin-bottom: 28px; }
  .reserver-inner { padding: 40px 24px; min-height: auto; flex-direction: column; text-align: center; align-items: center; }
  .reserver-text { max-width: 100%; align-items: center; }
  .reserver-text h2 { font-size: 28px; }
  .reserver-text h2 .chip { font-size: 30px; }
  .reserver-sub { font-size: 16px; }
  .reserver-ctas { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .reserver-ctas .btn-primary,
  .reserver-ctas .btn-outline-white { justify-content: center; font-size: 16px; }

  /* Footer */
  .footer { padding: 0 16px 20px; text-align: center; }
  .footer-bar { flex-direction: column; align-items: center; gap: 16px; }
  .footer-right { flex-direction: column; align-items: center; gap: 10px; }
  .footer-socials { justify-content: center; }
  .footer-meta { flex-direction: column; align-items: center; gap: 8px; }
  .footer-links { justify-content: center; }
  .footer-copy { font-size: 14px; }
  .footer-links a { font-size: 14px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤ 420px
   ════════════════════════════════════════════ */
@media (max-width: 420px) {
  .hero-content h1 { font-size: 26px; }
  .hero-content h1 .chip { font-size: 28px; }
  .section-header h2 { font-size: 26px; }
  .section-header h2 .chip,
  .section-header h2 .chip em { font-size: 28px; }
  .hero-card { width: 220px; }
  .badge { font-size: 16px; padding: 6px 12px; }
}
