/*
Theme Name: Puls
Theme URI: https://puls-web.com
Author: Puls Studio
Author URI: https://puls-web.com
Description: Studio digital independant -- site web, referencement local et campagnes Google pour les entreprises locales.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: puls
Tags: one-page, custom, dark
*/


/* ============================================
   PULS — DESIGN SYSTEM
   ============================================ */
:root {
  /* Palette — 4 tokens (DARK MODE) */
  --surface: #0A0A0A;
  --surface-elevated: #161616;
  --ink: #FAFAFA;
  --mute: #8A8A8A;
  --signature: #4D7DFF;

  /* Bordures douces */
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);

  /* Spacing — grille 4 */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 32px;
  --s-5: 64px;
  --s-6: 128px;
  --s-7: 192px;

  /* Radius */
  --r-card: 16px;
  --r-tile: 20px;
  --r-input: 10px;
  --r-pill: 999px;

  /* Type */
  --font: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;

  /* Container */
  --max: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Glow ambient global continu — pas coupé par les sections */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(77, 125, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at 20% 35%, rgba(77, 125, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 60% 65%, rgba(77, 125, 255, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 30% 90%, rgba(77, 125, 255, 0.10) 0%, transparent 55%),
    var(--surface);
  background-attachment: fixed;
}
::selection { background: var(--ink); color: var(--surface); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--s-4); }
@media (max-width: 768px) { .container { padding: 0 var(--s-3); } }

/* Tag eyebrow */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: -0.005em;
}
.tag-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signature);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Buttons — flat moderne avec subtle gradient */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary {
  background: var(--ink);
  color: #0A0A0A;
}
.btn-primary:hover {
  background: var(--signature);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(77, 125, 255, 0.4);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 8px;
}
.btn-ghost:hover { color: var(--signature); }

/* Badge */
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--ink);
  color: #0A0A0A;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
}
.badge.signature { background: var(--signature); color: var(--ink); }

/* ============================================
   HEADER STICKY
   ============================================ */
.header {
  position: fixed;
  top: 16px;
  left: 24px;
  right: 24px;
  z-index: 100;
}
.header-inner {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 1px 2px rgba(0, 0, 0, 0.2);
  padding: 6px 8px 6px 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-3);
  max-width: 1240px;
  margin: 0 auto;
}
.header-inner > .nav {
  justify-self: center;
}
.header-inner > .btn {
  justify-self: end;
  padding: 9px 20px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .header { top: 12px; left: 12px; right: 12px; }
  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 6px 8px 6px 16px;
  }
}
.logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}
.logo .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signature);
  margin-left: 2px;
  vertical-align: baseline;
  animation: pulse 2.5s ease-in-out infinite;
}
.nav {
  display: flex;
  gap: var(--s-3);
  align-items: center;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color .15s;
  letter-spacing: -0.005em;
  padding: 6px 10px;
  border-radius: var(--r-pill);
}
.nav a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }
@media (max-width: 768px) {
  .nav { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 120px 0 var(--s-6);
  position: relative;
  overflow: hidden;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.55) 50%, rgba(10, 10, 10, 0.85) 100%);
}
.hero-bg {
  display: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--s-3);
}
.hero .tag {
  margin-bottom: var(--s-3);
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: var(--s-3);
  color: var(--ink);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.hero h1 strong {
  font-weight: 600;
  color: var(--signature);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4), 0 0 40px rgba(77, 125, 255, 0.3);
}
.hero-sub {
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
  margin: 0 auto var(--s-4);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}
.hero-sub-em {
  color: var(--ink);
  font-weight: 600;
  display: block;
  margin-top: 6px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
  flex-wrap: wrap;
}
.hero-reassurance {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: -0.005em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.hero-reassurance .sep {
  display: inline-block;
  margin: 0 8px;
  color: var(--signature);
}

/* ============================================
   MAC WINDOW MOCKUP (sous le hero)
   ============================================ */
.showcase {
  padding: var(--s-5) 0 var(--s-6);
  position: relative;
}
.showcase-bg {
  display: none;
}
.mac-window {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 1px 3px rgba(0, 0, 0, 0.4),
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 80px 160px rgba(77, 125, 255, 0.18);
}
.mac-titlebar {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.mac-dots {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.mac-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.mac-dots .red { background: #FF5F57; }
.mac-dots .yellow { background: #FEBC2E; }
.mac-dots .green { background: #28C840; }

.mac-url {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 4px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 240px;
  letter-spacing: -0.005em;
}
.mac-url::before {
  content: "🔒";
  font-size: 10px;
}
.mac-content {
  padding: var(--s-5) var(--s-4);
  background: transparent;
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.mac-content-bg {
  display: none;
}
.mac-site {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.mac-site-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--mute);
  margin-bottom: 16px;
  font-weight: 500;
}
.mac-site-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signature);
}
.mac-site h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--ink);
}
.mac-site p {
  font-size: 16px;
  color: var(--mute);
  margin-bottom: 24px;
  line-height: 1.5;
}
.mac-site-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--signature);
  color: var(--surface);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.005em;
}
.mac-site-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.mac-site-stat {
  text-align: left;
}
.mac-site-stat-num {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.mac-site-stat-label {
  font-size: 12px;
  color: var(--mute);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .mac-content { padding: var(--s-4) var(--s-3); min-height: 320px; }
  .mac-url { max-width: 140px; padding: 3px 8px; font-size: 11px; }
  .mac-site-stats { gap: 16px; }
  .mac-site-stat-num { font-size: 22px; }
}

/* ============================================
   SECTIONS GÉNÉRIQUES
   ============================================ */
section.section {
  padding: calc(var(--s-7) * 1.2) 0;
  position: relative;
}
.section-head {
  max-width: 980px;
  margin: 0 auto var(--s-5);
  text-align: center;
  padding: 0 var(--s-3);
  position: relative;
  z-index: 1;
}
.section-head h2 {
  font-size: clamp(48px, 7.5vw, 88px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--s-3);
}
.section-head h2 strong {
  font-weight: 600;
  color: var(--signature);
}
.section-head p {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--mute);
  line-height: 1.45;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
}
.section-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-bottom: var(--s-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.section-num::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signature);
  box-shadow: 0 0 12px var(--signature);
}

/* ============================================
   OFFRES — 3 cards verre + glow ambient
   ============================================ */
.offers-section {
  position: relative;
}
.offers-glow {
  display: none;
}

/* Selector — quiz pills */
.offer-selector {
  max-width: 880px;
  margin: 0 auto var(--s-5);
  padding: 0 var(--s-4);
  position: relative;
  z-index: 1;
}
.offer-selector-label {
  font-size: 13px;
  color: var(--mute);
  text-align: center;
  margin-bottom: var(--s-2);
  letter-spacing: -0.005em;
}
.offer-selector-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.offer-selector-btn {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-pill);
  padding: 14px 18px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.offer-selector-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.20);
  transform: translateY(-1px);
}
.offer-selector-btn.active {
  background:
    radial-gradient(ellipse 100% 100% at 50% 0%, rgba(77, 125, 255, 0.45) 0%, transparent 70%),
    rgba(77, 125, 255, 0.15);
  border-color: rgba(77, 125, 255, 0.5);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 32px rgba(77, 125, 255, 0.4);
}

/* States contrôlés par le selector */
.offers-grid.has-selection .offer:not(.is-recommended) {
  opacity: 0.4;
  filter: saturate(0.7);
  transform: scale(0.97);
}
.offers-grid.has-selection .offer.is-recommended {
  transform: translateY(-4px) scale(1.02);
}

@media (max-width: 768px) {
  .offer-selector-pills {
    grid-template-columns: 1fr;
  }
  .offer-selector-btn {
    padding: 12px 16px;
    font-size: 13px;
  }
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s-4);
  position: relative;
  z-index: 1;
}
.offer {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-card);
  padding: var(--s-4);
  position: relative;
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.3);
}
.offer:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.5);
}

.offer.featured {
  background:
    radial-gradient(ellipse 100% 80% at 100% 0%, rgba(77, 125, 255, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(77, 125, 255, 0.18) 0%, transparent 55%),
    rgba(77, 125, 255, 0.06);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  color: var(--ink);
  border-color: rgba(77, 125, 255, 0.35);
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 0 60px rgba(77, 125, 255, 0.10),
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(77, 125, 255, 0.15);
}
.offer.featured:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 125, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 80px rgba(77, 125, 255, 0.15),
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 120px rgba(77, 125, 255, 0.25);
}

.offer-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: var(--s-2);
  text-transform: uppercase;
}
.offer.featured .offer-eyebrow { color: rgba(255, 255, 255, 0.65); }

.offer-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-3);
}
.offer-price {
  font-size: 64px;
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: var(--s-1);
}
.offer-price-from {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  line-height: 1;
}
.offer.featured .offer-price-from { color: rgba(255, 255, 255, 0.65); }
.offer-price-suffix {
  font-size: 16px;
  font-weight: 400;
  color: var(--mute);
  margin-left: 2px;
}
.offer.featured .offer-price-suffix { color: rgba(255, 255, 255, 0.65); }
.offer-note {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: var(--s-3);
}
.offer.featured .offer-note { color: rgba(255, 255, 255, 0.7); }

.offer-features {
  list-style: none;
  margin-bottom: var(--s-3);
  flex: 1;
}
.offer-features li {
  font-size: 14px;
  padding: var(--s-2) 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  line-height: 1.45;
}
.offer-features li::before {
  content: "✓";
  color: var(--signature);
  font-weight: 500;
  flex-shrink: 0;
  font-size: 13px;
  line-height: 1.6;
}
.offer.featured .offer-features li {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.offer.featured .offer-features li::before { color: rgba(255, 255, 255, 0.85); }

.offer .btn { width: 100%; justify-content: center; }
.offer.featured .btn-primary {
  background: var(--ink);
  color: #0A0A0A;
}
.offer.featured .btn-primary:hover {
  background: var(--signature);
  color: var(--ink);
}

.offer-badge {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
}

@media (max-width: 1024px) {
  .offers-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ============================================
   MÉTHODE — 7 jours
   ============================================ */
.method-timeline {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s-4);
  position: relative;
}
.method-line {
  position: absolute;
  top: 28px;
  left: var(--s-4);
  right: var(--s-4);
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.method-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--signature);
  width: 0%;
  transition: width 0.3s linear;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--s-3);
  position: relative;
  z-index: 1;
}
.method-step {
  text-align: left;
}
.method-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface-elevated);
  border: 2px solid rgba(255, 255, 255, 0.25);
  margin-bottom: var(--s-3);
  margin-top: 22px;
  position: relative;
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
}
.method-step.active .method-dot {
  background: var(--signature);
  border-color: var(--signature);
  box-shadow: 0 0 0 4px rgba(77, 125, 255, 0.25);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(77, 125, 255, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(77, 125, 255, 0.1); }
}
.method-day {
  font-size: 12px;
  color: var(--mute);
  margin-bottom: var(--s-1);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.method-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--s-1);
  letter-spacing: -0.015em;
}
.method-step p {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .method-grid { grid-template-columns: 1fr; gap: var(--s-3); }
  .method-line { display: none; }
  .method-dot { margin-top: 0; }
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s-4);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-5);
  align-items: center;
}
.portfolio-visual {
  background:
    radial-gradient(ellipse 80% 80% at 80% 20%, rgba(77, 125, 255, 0.20) 0%, transparent 60%),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-tile);
  padding: var(--s-4);
  position: relative;
  overflow: hidden;
}
.portfolio-mockup {
  width: 100%;
  background: rgba(20, 20, 20, 0.6);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 1px 3px rgba(0, 0, 0, 0.4),
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 60px 140px rgba(77, 125, 255, 0.15);
  position: relative;
}
.portfolio-titlebar {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}
.portfolio-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.portfolio-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.portfolio-dots .red { background: #FF5F57; }
.portfolio-dots .yellow { background: #FEBC2E; }
.portfolio-dots .green { background: #28C840; }
.portfolio-url {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 3px 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  max-width: 240px;
  letter-spacing: -0.005em;
}
.portfolio-url::before {
  content: "🔒";
  font-size: 9px;
}
.portfolio-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #FFFFFF;
}
.portfolio-viewport img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
  transition: transform 0.05s linear;
}
.portfolio-scroll-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s;
}
.portfolio-scroll-hint.fade { opacity: 0; }
.portfolio-scroll-hint .arrow {
  display: inline-block;
  animation: bounce-down 1.6s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.portfolio-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--signature) 0%, rgba(77, 125, 255, 0.6) 100%);
  z-index: 3;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(77, 125, 255, 0.6);
}
.portfolio-mockup-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  text-align: center;
  padding: 20px;
  z-index: -1;
}
.portfolio-text h3 {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--s-3);
}
.portfolio-meta {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.portfolio-text p {
  font-size: 17px;
  color: var(--mute);
  line-height: 1.6;
  margin-bottom: var(--s-4);
}
.portfolio-link {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  transition: gap .2s;
}
.portfolio-link:hover {
  gap: var(--s-2);
  color: var(--signature);
}
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* ============================================
   HUMAIN
   ============================================ */
.humain-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--s-4);
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: var(--s-5);
  align-items: center;
}
.humain-photo {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(32, 80, 224, 0.15) 0%, transparent 70%),
    var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mute);
  font-size: 13px;
  font-weight: 500;
}
.humain-text h2 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: var(--s-3);
}
.humain-text .name {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.humain-text p {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: var(--s-3);
}
@media (max-width: 1024px) {
  .humain-grid { grid-template-columns: 1fr; gap: var(--s-4); text-align: center; }
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta {
  padding: var(--s-7) 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  display: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--s-3);
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.cta-eyebrow::before,
.cta-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.cta h2 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--s-3);
}
.cta h2 strong {
  font-weight: 600;
  color: var(--signature);
}
.cta p {
  font-size: 19px;
  color: var(--mute);
  line-height: 1.5;
  margin-bottom: var(--s-4);
}
.cta .small {
  font-size: 13px;
  color: var(--mute);
  margin-top: var(--s-3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: var(--s-5) 0 var(--s-4);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s-4);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: var(--s-2);
  color: var(--mute);
  letter-spacing: -0.005em;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  padding: var(--s-1) 0;
  transition: color .15s;
}
.footer-col a:hover { color: var(--signature); }
.footer-tagline {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.6;
  max-width: 280px;
}
.footer-logo {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: var(--s-2);
  letter-spacing: -0.03em;
}
.footer-logo .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signature);
  margin-left: 2px;
  vertical-align: baseline;
}
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--s-3) var(--s-4) 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--mute);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
}

/* ============================================
   STICKY VS — sequence cinématique 3 dots → punchline
   ============================================ */
.vs-section {
  position: relative;
  height: 240vh;
}
.vs-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vs-stage {
  width: 100%;
  max-width: 1180px;
  padding: 0 var(--s-3);
  text-align: center;
  position: relative;
}
.vs-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: var(--s-4);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.vs-eyebrow::before,
.vs-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.vs-pin.in .vs-eyebrow { opacity: 1; transform: translateY(0); }

.vs-setup {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--s-3);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s, transform .8s;
}
.vs-pin.step-1 .vs-setup { opacity: 1; transform: translateY(0); }

.vs-underline {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-weight: 500;
  padding: 0 4px;
}
.vs-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  background: #FF5F57;
  border-radius: 3px;
  width: 0;
  box-shadow: 0 0 16px rgba(255, 95, 87, 0.6);
  transition: width .9s cubic-bezier(0.4, 0, 0.2, 1) .3s;
}
.vs-pin.step-1 .vs-underline::after { width: 100%; }

.vs-dots {
  display: inline-flex;
  gap: 6px;
  margin-left: 6px;
  font-weight: 500;
  color: var(--ink);
}
.vs-dots .dot {
  display: inline-block;
  opacity: 0;
  transform: translateY(-8px) scale(0.6);
  transition: opacity .35s cubic-bezier(0.34, 1.56, 0.64, 1), transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vs-pin.step-2 .vs-dots .dot:nth-child(1) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .1s;
}
.vs-pin.step-2 .vs-dots .dot:nth-child(2) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .35s;
}
.vs-pin.step-2 .vs-dots .dot:nth-child(3) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .6s;
}

.vs-punch {
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: opacity 1s cubic-bezier(0.34, 1.26, 0.64, 1), transform 1s cubic-bezier(0.34, 1.26, 0.64, 1);
}
.vs-punch strong {
  font-weight: 600;
  color: var(--signature);
  font-style: normal;
  position: relative;
  display: inline-block;
}
.vs-punch strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 4px;
  background: var(--signature);
  border-radius: 4px;
  width: 0;
  box-shadow: 0 0 20px rgba(77, 125, 255, 0.7);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
}
.vs-pin.step-3 .vs-punch {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.vs-pin.step-3 .vs-punch strong::after { width: 100%; }

.vs-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 1;
  transition: opacity .6s;
}
.vs-pin.step-3 .vs-scroll-cue { opacity: 0; }
.vs-scroll-cue .arrow {
  font-size: 16px;
  animation: cue-bounce 1.6s ease-in-out infinite;
}
@keyframes cue-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

.vs-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(77, 125, 255, 0.22) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s;
  z-index: -1;
}
.vs-pin.step-3 .vs-glow { opacity: 1; }

@media (max-width: 768px) {
  .vs-section { height: 200vh; }
  .vs-eyebrow::before, .vs-eyebrow::after { width: 16px; }
}

/* ============================================
   ENGAGEMENTS CINÉMA — sticky pin, 4 panels
   ============================================ */
.engagements-cinema {
  position: relative;
  height: 480vh;
}
.engagements-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.engagements-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(77, 125, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s;
}
.engagements-pin.in .engagements-glow { opacity: 1; }

.engagement-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--s-4) 120px;
  opacity: 0;
  transform: translateY(80px) scale(0.94);
  transition: opacity .9s cubic-bezier(0.4, 0, 0.2, 1), transform .9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.engagement-stage.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.engagement-stage.exited {
  opacity: 0;
  transform: translateY(-80px) scale(1.06);
  filter: blur(8px);
}
.engagement-content {
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: var(--s-5);
  align-items: center;
}
.engagement-num {
  font-size: clamp(140px, 22vw, 320px);
  font-weight: 200;
  letter-spacing: -0.07em;
  line-height: 0.78;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(77, 125, 255, 0.5) 70%, rgba(77, 125, 255, 0.15) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  position: relative;
}
.engagement-num::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--signature) 50%, transparent 100%);
  box-shadow: 0 0 16px var(--signature);
}
.engagement-stage.active .engagement-num {
  animation: num-emerge .9s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes num-emerge {
  0% { transform: translateX(-40px) scale(0.8); opacity: 0; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}
.engagement-body {
  text-align: left;
}
.engagement-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signature);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(77, 125, 255, 0.1);
  border: 1px solid rgba(77, 125, 255, 0.25);
}
.engagement-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signature);
  box-shadow: 0 0 8px var(--signature);
}
.engagement-title {
  font-size: clamp(48px, 7.5vw, 104px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: var(--s-3);
  color: var(--ink);
}
.engagement-title .accent {
  color: var(--signature);
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.engagement-stage.active .engagement-title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  background: var(--signature);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: accent-draw .8s cubic-bezier(0.4, 0, 0.2, 1) .6s forwards;
  box-shadow: 0 0 16px var(--signature);
}
@keyframes accent-draw {
  to { transform: scaleX(1); }
}
.engagement-desc {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--mute);
  line-height: 1.5;
  max-width: 600px;
}

/* Progress indicator en bas */
.engagement-progress {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 5;
}
.engagement-progress-dot {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  transition: background .5s, box-shadow .5s, width .5s;
}
.engagement-progress-dot.active {
  background: var(--signature);
  box-shadow: 0 0 18px rgba(77, 125, 255, 0.6);
  width: 56px;
}
.engagement-progress-dot.done {
  background: rgba(77, 125, 255, 0.45);
}
.engagement-counter {
  position: absolute;
  top: 56px;
  right: 56px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--mute);
  font-variant-numeric: tabular-nums;
}
.engagement-counter strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 768px) {
  .engagement-content {
    grid-template-columns: 1fr;
    gap: var(--s-3);
    text-align: left;
  }
  .engagement-num { font-size: 120px; }
  .engagement-title { font-size: 44px; }
  .engagement-counter { top: 24px; right: 24px; font-size: 11px; }
  .engagement-progress { bottom: 32px; }
  .engagement-progress-dot { width: 28px; }
  .engagement-progress-dot.active { width: 44px; }
}

/* ============================================
   LETTER SPLIT — h2 qui éclatent lettre par lettre
   ============================================ */
.split-letters {
  display: inline-block;
}
.split-letters .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) rotate(8deg);
  transition: transform .55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .55s;
}
.split-letters .char.space {
  width: 0.25em;
}
.is-visible .split-letters .char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
.is-visible .split-letters .char:nth-child(1) { transition-delay: .03s; }
.is-visible .split-letters .char:nth-child(2) { transition-delay: .06s; }
.is-visible .split-letters .char:nth-child(3) { transition-delay: .09s; }
.is-visible .split-letters .char:nth-child(4) { transition-delay: .12s; }
.is-visible .split-letters .char:nth-child(5) { transition-delay: .15s; }
.is-visible .split-letters .char:nth-child(6) { transition-delay: .18s; }
.is-visible .split-letters .char:nth-child(7) { transition-delay: .21s; }
.is-visible .split-letters .char:nth-child(8) { transition-delay: .24s; }
.is-visible .split-letters .char:nth-child(9) { transition-delay: .27s; }
.is-visible .split-letters .char:nth-child(10) { transition-delay: .30s; }
.is-visible .split-letters .char:nth-child(11) { transition-delay: .33s; }
.is-visible .split-letters .char:nth-child(12) { transition-delay: .36s; }
.is-visible .split-letters .char:nth-child(13) { transition-delay: .39s; }
.is-visible .split-letters .char:nth-child(14) { transition-delay: .42s; }
.is-visible .split-letters .char:nth-child(15) { transition-delay: .45s; }
.is-visible .split-letters .char:nth-child(16) { transition-delay: .48s; }
.is-visible .split-letters .char:nth-child(17) { transition-delay: .51s; }
.is-visible .split-letters .char:nth-child(18) { transition-delay: .54s; }
.is-visible .split-letters .char:nth-child(19) { transition-delay: .57s; }
.is-visible .split-letters .char:nth-child(20) { transition-delay: .60s; }
.is-visible .split-letters .char:nth-child(n+21) { transition-delay: .63s; }

/* ============================================
   FORMULE CARDS — entrée spirale dramatique
   ============================================ */
.offer.spiral-left {
  transform: translateX(-180px) translateY(40px) rotate(-12deg) scale(0.9);
  transition: opacity 1.1s cubic-bezier(0.34, 1.4, 0.64, 1), transform 1.1s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.offer.spiral-left.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0) rotate(0) scale(1);
}
.offer.bounce-down {
  transform: translateY(-120px) scale(0.85) rotate(0);
  transition: opacity 1.1s cubic-bezier(0.34, 1.7, 0.64, 1), transform 1.1s cubic-bezier(0.34, 1.7, 0.64, 1);
}
.offer.bounce-down.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.offer.spiral-right {
  transform: translateX(180px) translateY(40px) rotate(12deg) scale(0.9);
  transition: opacity 1.1s cubic-bezier(0.34, 1.4, 0.64, 1), transform 1.1s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.offer.spiral-right.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0) rotate(0) scale(1);
}

/* ============================================
   PRINCIPES — éditorial 4 lignes manifeste
   ============================================ */
.principes {
  padding: var(--s-7) 0 var(--s-6);
  position: relative;
  overflow: hidden;
}
.principes-head {
  text-align: center;
  margin-bottom: var(--s-6);
  padding: 0 var(--s-3);
}
.principes-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: var(--s-2);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.principes-eyebrow::before,
.principes-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.principes-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 720px;
  margin: 0 auto;
}
.principes-title strong {
  font-weight: 600;
  color: var(--signature);
  font-style: normal;
}

/* Editorial — chaque engagement = une ligne hero */
.principes-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s-4);
  display: flex;
  flex-direction: column;
}
.principe {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 0.5fr) 1.5fr;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.principe:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.principe > * { position: relative; z-index: 1; }

/* Numéro géant */
.principe-num {
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.85;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* Tag rouge → bleu signature */
.principe-pas {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signature);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(77, 125, 255, 0.1);
  border: 1px solid rgba(77, 125, 255, 0.25);
}
.principe-pas::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signature);
  box-shadow: 0 0 8px var(--signature);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.principe-content {
  display: flex;
  flex-direction: column;
}
.principe h3 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-2);
  color: var(--ink);
}
.principe h3 .accent {
  color: var(--signature);
  font-weight: 600;
}
.principe p {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--mute);
  line-height: 1.55;
  max-width: 580px;
}

@media (max-width: 768px) {
  .principe {
    grid-template-columns: 1fr;
    gap: var(--s-2);
    padding: var(--s-4) var(--s-2);
  }
  .principe-num { font-size: 56px; }
}

/* ============================================
   METIERS MARQUEE — défilé infini
   ============================================ */
.metiers-marquee {
  padding: var(--s-5) 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}
.metiers-marquee::before,
.metiers-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.metiers-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface) 0%, transparent 100%);
}
.metiers-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--surface) 0%, transparent 100%);
}
.metiers-marquee-label {
  text-align: center;
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.metiers-track {
  display: flex;
  gap: var(--s-3);
  width: max-content;
  animation: marquee-slide 40s linear infinite;
}
.metier-tag {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity .3s, color .3s;
}
.metier-tag:hover { opacity: 1; color: var(--signature); }
.metier-sep {
  font-size: clamp(28px, 4vw, 56px);
  color: var(--signature);
  opacity: 0.6;
  display: flex;
  align-items: center;
}
@keyframes marquee-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   MANIFESTO BREAK — phrase choc grand format
   ============================================ */
.manifesto {
  padding: var(--s-7) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--s-3);
  position: relative;
  z-index: 1;
}
.manifesto h2 {
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
}
.manifesto h2 strong {
  font-weight: 600;
  color: var(--signature);
  font-style: normal;
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(-3deg);
  transition: opacity .8s cubic-bezier(0.4, 0, 0.2, 1), transform .8s cubic-bezier(0.4, 0, 0.2, 1);
}
.manifesto.is-visible h2 strong {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}
.manifesto.is-visible h2 strong:nth-of-type(1) { transition-delay: .2s; }
.manifesto.is-visible h2 strong:nth-of-type(2) { transition-delay: .4s; }
.manifesto.is-visible h2 strong:nth-of-type(3) { transition-delay: .6s; }
.manifesto-sub {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--mute);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.manifesto-sub::before,
.manifesto-sub::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.manifesto-mute {
  color: var(--mute);
  font-weight: 400;
}

/* Reveal pour les mots simples */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}
.is-visible .word-reveal { opacity: 1; transform: translateY(0); }
.is-visible .word-reveal:nth-child(1) { transition-delay: .1s; }
.is-visible .word-reveal:nth-child(2) { transition-delay: .2s; }
.is-visible .word-reveal:nth-child(3) { transition-delay: .3s; }
.is-visible .word-reveal:nth-child(4) { transition-delay: .4s; }
.is-visible .word-reveal:nth-child(5) { transition-delay: .5s; }
.is-visible .word-reveal:nth-child(6) { transition-delay: .6s; }
.is-visible .word-reveal:nth-child(7) { transition-delay: .7s; }
.is-visible .word-reveal:nth-child(8) { transition-delay: .8s; }
.is-visible .word-reveal:nth-child(9) { transition-delay: .9s; }
.is-visible .word-reveal:nth-child(10) { transition-delay: 1.0s; }

/* ============================================
   SCROLL PROGRESS BAR (top of page, fixed)
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--signature) 0%, rgba(77, 125, 255, 0.6) 100%);
  z-index: 999;
  box-shadow: 0 0 12px rgba(77, 125, 255, 0.6);
  transition: width 0.05s linear;
}

/* ============================================
   SECTION CONNECTORS — passages entre animations
   ============================================ */
.connector {
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.connector-line {
  position: relative;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 20%,
    rgba(77, 125, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.08) 80%,
    transparent 100%);
  overflow: hidden;
}
.connector-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, var(--signature) 50%, transparent 100%);
  filter: blur(2px);
  animation: connector-flow 3.5s ease-in-out infinite;
}
@keyframes connector-flow {
  0% { top: -30%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.connector-dot {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signature);
  box-shadow:
    0 0 0 1px rgba(77, 125, 255, 0.3),
    0 0 16px rgba(77, 125, 255, 0.6);
  animation: connector-pulse 3.5s ease-in-out infinite;
}
@keyframes connector-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(77, 125, 255, 0.3), 0 0 16px rgba(77, 125, 255, 0.6); transform: translateX(-50%) scale(1); }
  50% { box-shadow: 0 0 0 6px rgba(77, 125, 255, 0.0), 0 0 24px rgba(77, 125, 255, 0.8); transform: translateX(-50%) scale(1.2); }
}
.connector-label {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.55;
}
.connector.is-visible .connector-line { animation: connector-draw 1s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
@keyframes connector-draw {
  from { transform: scaleY(0); transform-origin: top; }
  to { transform: scaleY(1); transform-origin: top; }
}

/* ============================================
   SCROLL CUE — flèche en bas de la hero
   ============================================ */
.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  z-index: 2;
  pointer-events: none;
}
.hero-scroll-cue::after {
  content: "↓";
  font-size: 14px;
  animation: cue-bounce 2s ease-in-out infinite;
}

/* ============================================
   MANIFESTO CINEMA — sticky 3 statements morphing
   ============================================ */
.manifesto-cinema {
  position: relative;
  height: 600vh;
}
.manifesto-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.manifesto-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  height: 1100px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(77, 125, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s;
}
.manifesto-pin.in .manifesto-glow { opacity: 1; }
.manifesto-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--s-3);
  opacity: 0;
  pointer-events: none;
  /* JS drive opacity, transform et filter en continu pour la fluidité — pas de transition CSS */
}
.manifesto-line {
  font-size: clamp(56px, 9vw, 144px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
  max-width: 1200px;
}
.manifesto-line strong {
  font-weight: 600;
  color: var(--signature);
  font-style: normal;
  position: relative;
  display: inline-block;
}
/* Le mot strong garde son glow signature, sans animation indépendante (JS pilote la stage entière) */
.manifesto-line {
  perspective: 1200px;
}
.manifesto-stage .word-fly {
  display: inline-block;
  text-shadow: 0 0 60px rgba(77, 125, 255, 0.5), 0 0 120px rgba(77, 125, 255, 0.25);
  position: relative;
}
.manifesto-stage .word-fly::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(ellipse, rgba(77, 125, 255, 0.35) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   NUMBERS CINEMA — sticky 3 stats avec compteur
   ============================================ */
.numbers-cinema {
  position: relative;
  height: 360vh;
}
.numbers-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.numbers-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1300px;
  height: 1300px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%, rgba(77, 125, 255, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 60%, rgba(77, 125, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.numbers-counter {
  position: absolute;
  top: 56px;
  right: 56px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--mute);
  font-variant-numeric: tabular-nums;
  z-index: 5;
}
.numbers-counter strong { color: var(--ink); font-weight: 600; }
.number-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--s-4);
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.number-stage.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.number-stage.exited {
  opacity: 0;
  transform: translateY(-60px) scale(1.06);
  filter: blur(8px);
}
.number-content {
  text-align: center;
  max-width: 900px;
}
.number-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(77, 125, 255, 0.1);
  border: 1px solid rgba(77, 125, 255, 0.25);
  color: var(--signature);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--s-4);
}
.number-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signature);
  box-shadow: 0 0 8px var(--signature);
  animation: pulse-dot 2s ease-in-out infinite;
}
.number-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: var(--s-4);
}
.number-value {
  font-size: clamp(160px, 28vw, 420px);
  font-weight: 200;
  letter-spacing: -0.07em;
  line-height: 0.85;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(77, 125, 255, 0.5) 70%, rgba(77, 125, 255, 0.15) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}
.number-stage.active .number-value {
  animation: number-burst 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 40px rgba(77, 125, 255, 0.5));
}
@keyframes number-burst {
  0% {
    transform: scale(0.3) rotate(-20deg);
    opacity: 0;
    filter: blur(40px);
  }
  60% {
    transform: scale(1.1) rotate(2deg);
    filter: blur(0);
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
    filter: blur(0);
  }
}
/* Burst de particules autour du chiffre quand il atterrit */
.number-stage.active .number-value::before,
.number-stage.active .number-value::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(77, 125, 255, 0.4) 0%, transparent 50%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  animation: number-shockwave 1.5s ease-out;
}
.number-stage.active .number-value::after {
  animation-delay: .15s;
}
@keyframes number-shockwave {
  0% { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.number-stage.active .number-suffix {
  animation: suffix-slide .9s cubic-bezier(0.34, 1.4, 0.64, 1) .4s both;
}
@keyframes suffix-slide {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.number-stage.active .number-tag {
  animation: tag-drop .7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes tag-drop {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
.number-stage.active .number-desc {
  animation: desc-rise .9s cubic-bezier(0.4, 0, 0.2, 1) .6s both;
}
@keyframes desc-rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.number-suffix {
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.number-desc {
  font-size: clamp(17px, 1.7vw, 22px);
  color: var(--mute);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
}
.numbers-progress {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 5;
}
.numbers-progress-dot {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  transition: background .5s, box-shadow .5s, width .5s;
}
.numbers-progress-dot.active {
  background: var(--signature);
  box-shadow: 0 0 18px rgba(77, 125, 255, 0.6);
  width: 56px;
}
.numbers-progress-dot.done {
  background: rgba(77, 125, 255, 0.45);
}
@media (max-width: 768px) {
  .numbers-counter { top: 24px; right: 24px; font-size: 11px; }
  .numbers-progress { bottom: 32px; }
  .numbers-progress-dot { width: 28px; }
  .numbers-progress-dot.active { width: 44px; }
}

/* ============================================
   SEARCH SHOWCASE — Google search local pack
   ============================================ */
.search-section {
  padding: calc(var(--s-7) * 1.5) 0;
  position: relative;
  overflow: hidden;
}
.search-section-head {
  text-align: center;
  margin-bottom: var(--s-5);
  padding: 0 var(--s-3);
}
.search-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.search-eyebrow::before,
.search-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.search-section-head h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.search-section-head h2 strong {
  font-weight: 600;
  color: var(--signature);
  font-style: normal;
}
.search-stage {
  display: flex;
  justify-content: center;
  position: relative;
}
.search-phone {
  position: relative;
  width: 360px;
  aspect-ratio: 9 / 17;
  background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
  border-radius: 52px;
  border: 4px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 60px 140px rgba(77, 125, 255, 0.20);
}
.search-phone .phone-notch {
  top: 12px;
}
.search-screen {
  background: #ffffff;
  border-radius: 40px;
  overflow: hidden;
  padding-top: 32px;
  color: #202124;
  font-family: 'Inter', -apple-system, sans-serif;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.search-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 24px 8px;
  font-size: 13px;
  font-weight: 600;
  color: #202124;
  flex-shrink: 0;
}
.search-statusbar-icons {
  letter-spacing: 1px;
  font-size: 11px;
}
.search-bar {
  margin: 6px 14px 0;
  background: #f1f3f4;
  border-radius: 22px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #202124;
  flex-shrink: 0;
}
.search-icon {
  font-size: 16px;
  color: #5f6368;
  font-weight: 600;
}
.search-query {
  display: inline-flex;
  align-items: center;
}
.search-text {
  display: inline-block;
  white-space: nowrap;
}
.search-cursor {
  display: inline-block;
  width: 1.5px;
  height: 16px;
  background: #1a73e8;
  margin-left: 2px;
  animation: blink-cursor 1s steps(2) infinite;
}
@keyframes blink-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Map block + results */
.search-mapblock {
  padding: 10px 0 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.search-map {
  position: relative;
  width: calc(100% - 28px);
  margin: 0 14px;
  height: 120px;
  background: linear-gradient(135deg, #e8f0e3 0%, #dde6d6 50%, #f0e9da 100%);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.search-map-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(140, 165, 130, 0.4) 1px, transparent 1px),
    linear-gradient(180deg, rgba(140, 165, 130, 0.4) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
}
.search-map::before {
  content: "";
  position: absolute;
  top: 30%;
  left: -10%;
  right: 60%;
  height: 22px;
  background: rgba(155, 200, 230, 0.5);
  transform: rotate(-15deg);
  border-radius: 10px;
}
.search-map::after {
  content: "";
  position: absolute;
  bottom: 25%;
  left: 30%;
  right: -10%;
  height: 16px;
  background: rgba(180, 195, 165, 0.4);
  transform: rotate(8deg);
}
.search-map-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.search-map-pin span { transform: rotate(45deg); }
.search-map-pin.pin-1 {
  background: #1a73e8;
  top: 35%;
  left: 38%;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.25), 0 0 24px rgba(26, 115, 232, 0.6);
  animation: pin-bounce 2s ease-in-out infinite;
}
@keyframes pin-bounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-4px); }
}
.search-map-pin.pin-mute {
  background: #9aa0a6;
  width: 22px;
  height: 22px;
  font-size: 11px;
  transform: rotate(-45deg) scale(0.85);
  opacity: 0.7;
}
.search-map-pin.pin-2 { top: 22%; right: 18%; }
.search-map-pin.pin-3 { bottom: 22%; left: 22%; }
.search-map-label {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 9px;
  font-weight: 600;
  color: #5f6368;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.search-results {
  padding: 12px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.search-result {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  position: relative;
  align-items: flex-start;
}
.search-result.featured {
  background: linear-gradient(180deg, #e8f0fe 0%, #f4f9ff 100%);
  border: 1.5px solid #1a73e8;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.10), 0 8px 24px rgba(26, 115, 232, 0.20);
  animation: featured-glow 3s ease-in-out infinite;
}
@keyframes featured-glow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.08), 0 8px 24px rgba(26, 115, 232, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(26, 115, 232, 0.15), 0 12px 32px rgba(26, 115, 232, 0.30); }
}
.search-result-glow {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1a73e8;
  box-shadow: 0 0 0 3px #fff, 0 0 16px rgba(26, 115, 232, 0.6);
}
.search-rank {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.search-result.muted .search-rank {
  background: #9aa0a6;
}
.search-result-body { flex: 1; min-width: 0; }
.search-result-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 2px;
  line-height: 1.25;
}
.search-result.muted .search-result-name {
  color: #5f6368;
  font-weight: 500;
}
.search-result-stars {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #202124;
  margin-bottom: 3px;
  flex-wrap: wrap;
}
.search-result-stars .stars { color: #fbbc04; letter-spacing: 0.5px; }
.search-result-stars .rating-num { font-weight: 600; color: #202124; }
.search-result-stars .reviews { color: #5f6368; }
.search-result-stars-mute {
  font-size: 11.5px;
  color: #9aa0a6;
  margin-bottom: 3px;
  letter-spacing: 0.3px;
}
.search-result-meta {
  font-size: 11.5px;
  color: #5f6368;
}
.search-result.muted .search-result-meta { color: #9aa0a6; }
.search-result.muted { opacity: 0.55; }

@media (max-width: 768px) {
  .search-phone { width: 300px; padding: 10px; border-radius: 44px; }
  .search-phone .phone-notch { width: 84px; height: 22px; top: 10px; }
  .search-screen { border-radius: 34px; padding-top: 36px; }
}

/* ============================================
   PHONE SHOWCASE — notifications stacking
   ============================================ */
.phone-section {
  padding: var(--s-7) 0;
  position: relative;
  overflow: hidden;
}
.phone-section-head {
  text-align: center;
  margin-bottom: var(--s-5);
  padding: 0 var(--s-3);
}
.phone-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.phone-eyebrow::before,
.phone-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.phone-section-head h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.phone-section-head h2 strong {
  font-weight: 600;
  color: var(--signature);
  font-style: normal;
}
.phone-stage {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-frame {
  position: relative;
  width: 360px;
  aspect-ratio: 9 / 17;
  background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
  border-radius: 52px;
  border: 4px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 60px 140px rgba(77, 125, 255, 0.20);
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(77, 125, 255, 0.30) 0%, transparent 50%),
    linear-gradient(180deg, #0d1830 0%, #050912 100%);
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 12px 18px;
}
.phone-time {
  font-size: 76px;
  font-weight: 200;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.phone-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  margin-bottom: 18px;
  font-weight: 500;
}
.phone-notifs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.phone-notif {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  transition: opacity .7s cubic-bezier(0.34, 1.4, 0.64, 1), transform .7s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.phone-stage.is-visible .phone-notif {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.phone-stage.is-visible .phone-notif:nth-child(1) { transition-delay: .3s; }
.phone-stage.is-visible .phone-notif:nth-child(2) { transition-delay: .65s; }
.phone-stage.is-visible .phone-notif:nth-child(3) { transition-delay: 1.0s; }
.phone-stage.is-visible .phone-notif:nth-child(4) { transition-delay: 1.35s; }
.notif-icon {
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notif-body {
  flex: 1;
  min-width: 0;
}
.notif-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.notif-app { font-weight: 600; }
.notif-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1px;
  line-height: 1.25;
}
.notif-text {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .phone-frame { width: 300px; padding: 10px; border-radius: 44px; }
  .phone-frame .phone-notch { width: 84px; height: 22px; top: 10px; }
  .phone-screen { border-radius: 34px; padding: 48px 12px 12px; }
  .phone-time { font-size: 64px; }
}

/* ============================================
   TESTIMONIAL — citation grand format
   ============================================ */
.testimonial {
  padding: calc(var(--s-7) * 1.3) 0;
  position: relative;
  overflow: hidden;
}
.testimonial-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(77, 125, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.testimonial-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s-4);
  position: relative;
  z-index: 1;
  text-align: center;
}
.testimonial-quote-mark {
  font-size: clamp(120px, 16vw, 220px);
  font-weight: 600;
  line-height: 0.6;
  color: var(--signature);
  opacity: 0.4;
  margin-bottom: var(--s-3);
  font-family: Georgia, serif;
  display: inline-block;
}
.testimonial-quote {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--s-5);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.words-cascade .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) scale(0.85);
  filter: blur(8px);
  transition: opacity .7s cubic-bezier(0.34, 1.4, 0.64, 1), transform .7s cubic-bezier(0.34, 1.4, 0.64, 1), filter .7s;
  margin-right: 0.25em;
}
.testimonial.is-visible .words-cascade .word {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.testimonial.is-visible .words-cascade .word:nth-child(1) { transition-delay: .1s; }
.testimonial.is-visible .words-cascade .word:nth-child(2) { transition-delay: .2s; }
.testimonial.is-visible .words-cascade .word:nth-child(3) { transition-delay: .3s; }
.testimonial.is-visible .words-cascade .word:nth-child(4) { transition-delay: .4s; }
.testimonial.is-visible .words-cascade .word:nth-child(5) { transition-delay: .5s; }
.testimonial.is-visible .words-cascade .word:nth-child(6) { transition-delay: .58s; }
.testimonial.is-visible .words-cascade .word:nth-child(7) { transition-delay: .66s; }
.testimonial.is-visible .words-cascade .word:nth-child(8) { transition-delay: .74s; }
.testimonial.is-visible .words-cascade .word:nth-child(9) { transition-delay: .82s; }
.testimonial.is-visible .words-cascade .word:nth-child(10) { transition-delay: .9s; }
.testimonial.is-visible .words-cascade .word:nth-child(11) { transition-delay: .98s; }
.testimonial.is-visible .words-cascade .word:nth-child(12) { transition-delay: 1.06s; }
.testimonial.is-visible .words-cascade .word:nth-child(13) { transition-delay: 1.14s; }
.testimonial.is-visible .words-cascade .word:nth-child(14) { transition-delay: 1.22s; }
.testimonial.is-visible .words-cascade .word:nth-child(15) { transition-delay: 1.30s; }
.testimonial.is-visible .words-cascade .word:nth-child(16) { transition-delay: 1.38s; }
.testimonial.is-visible .words-cascade .word:nth-child(17) { transition-delay: 1.46s; }
.testimonial.is-visible .words-cascade .word:nth-child(18) { transition-delay: 1.54s; }
.testimonial.is-visible .words-cascade .word:nth-child(19) { transition-delay: 1.62s; }
.testimonial.is-visible .words-cascade .word:nth-child(20) { transition-delay: 1.70s; }
.testimonial.is-visible .words-cascade .word:nth-child(n+21) { transition-delay: 1.78s; }
/* Mark de citation qui swirl in */
.testimonial-quote-mark {
  display: inline-block;
  transform: scale(0) rotate(-30deg);
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.34, 1.56, 0.64, 1), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.testimonial.is-visible .testimonial-quote-mark {
  opacity: 0.4;
  transform: scale(1) rotate(0);
}
/* Auteur monte avec un délai */
.testimonial-author {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s 1.8s, transform .8s 1.8s;
}
.testimonial.is-visible .testimonial-author {
  opacity: 1;
  transform: translateY(0);
}
.testimonial.is-visible .testimonial-avatar {
  animation: avatar-pop 1s cubic-bezier(0.34, 1.56, 0.64, 1) 2s both;
}
@keyframes avatar-pop {
  0% { transform: scale(0) rotate(180deg); }
  100% { transform: scale(1) rotate(0); }
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signature) 0%, rgba(77, 125, 255, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.10), 0 0 32px rgba(77, 125, 255, 0.4);
}
.testimonial-meta {
  text-align: left;
}
.testimonial-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.testimonial-role {
  font-size: 13px;
  color: var(--mute);
  margin-top: 2px;
}
.testimonial-link {
  font-size: 14px;
  color: var(--signature);
  text-decoration: none;
  font-weight: 500;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: var(--s-3);
  margin-left: var(--s-2);
  transition: gap .2s;
}
.testimonial-link:hover { color: var(--ink); }

/* ============================================
   PORTFOLIO — exemples de sites livrés
   ============================================ */
.portfolio-section {
  padding: var(--s-7) 0;
  position: relative;
  overflow: hidden;
}
.portfolio-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 900px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(77, 125, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.portfolio-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--s-4);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.portfolio-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .4s cubic-bezier(0.34, 1.4, 0.64, 1),
              border-color .3s, background .3s,
              box-shadow .4s;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 125, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(77, 125, 255, 0.2),
              0 0 60px rgba(77, 125, 255, 0.18);
}
.portfolio-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1d2e 0%, #0a0d1a 100%);
}
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .8s cubic-bezier(0.22, 1, 0.36, 1);
}
.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.04);
}
.portfolio-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-thumb-letter {
  font-size: 96px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--font-display, inherit);
}
.portfolio-thumb-serif {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.55);
}
.portfolio-thumb-grad-1 {
  background: linear-gradient(135deg, #1a2a4a 0%, #0a0d1a 100%);
}
.portfolio-thumb-grad-2 {
  background: linear-gradient(135deg, #2a1a3a 0%, #0a0d1a 100%);
}
.portfolio-info {
  padding: var(--s-3) var(--s-3) var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
}
.portfolio-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
.portfolio-year {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--mute);
  opacity: 0.6;
}
.portfolio-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.portfolio-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--signature);
  margin-top: 4px;
  transition: gap .2s;
}
.portfolio-card:hover .portfolio-link { color: var(--ink); }

/* ============================================
   FAQ — accordion Apple style
   ============================================ */
.faq-section {
  padding: var(--s-7) 0 calc(var(--s-7) * 1.3);
  position: relative;
}
.faq-head {
  text-align: center;
  margin-bottom: var(--s-5);
  padding: 0 var(--s-3);
}
.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.faq-eyebrow::before,
.faq-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.faq-head h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.faq-head h2 strong {
  font-weight: 600;
  color: var(--signature);
  font-style: normal;
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--s-4);
}
.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: var(--s-3) 0;
  cursor: pointer;
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-2) 0;
  cursor: pointer;
  outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  flex: 1;
  text-align: left;
}
.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), background .35s, border-color .35s;
  font-size: 0;
  color: transparent;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  border-radius: 1px;
  transition: background .35s;
}
.faq-toggle::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-toggle::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: rgba(77, 125, 255, 0.15);
  border-color: var(--signature);
}
.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after {
  background: var(--signature);
}
.faq-a {
  padding: var(--s-2) 0 var(--s-3);
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--mute);
  line-height: 1.6;
  max-width: 760px;
  animation: faq-open .5s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Variantes de reveal — directions, scale, rotation */
.reveal-left { transform: translateX(-50px); }
.reveal-left.is-visible { transform: translateX(0); }

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

.reveal-scale { transform: scale(0.85); }
.reveal-scale.is-visible { transform: scale(1); }

.reveal-pop {
  transform: translateY(60px) scale(0.92) rotate(-2deg);
  transition: opacity 1s cubic-bezier(0.34, 1.4, 0.64, 1), transform 1s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.reveal-pop.is-visible { transform: translateY(0) scale(1) rotate(0); }

.reveal-blur {
  filter: blur(12px);
  transition: opacity 1s, transform 1s, filter 1s;
}
.reveal-blur.is-visible { filter: blur(0); }

.reveal-up-down {
  transform: translateY(-40px);
}
.reveal-up-down.is-visible { transform: translateY(0); }

/* Stagger — appliquer .stagger sur le parent + délai progressif sur enfants .stagger-item */
.stagger-item {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity .9s cubic-bezier(0.34, 1.3, 0.64, 1), transform .9s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.stagger.is-visible .stagger-item:nth-child(1) { transition-delay: .05s; opacity: 1; transform: translateY(0) scale(1); }
.stagger.is-visible .stagger-item:nth-child(2) { transition-delay: .20s; opacity: 1; transform: translateY(0) scale(1); }
.stagger.is-visible .stagger-item:nth-child(3) { transition-delay: .35s; opacity: 1; transform: translateY(0) scale(1); }
.stagger.is-visible .stagger-item:nth-child(4) { transition-delay: .50s; opacity: 1; transform: translateY(0) scale(1); }
.stagger.is-visible .stagger-item:nth-child(5) { transition-delay: .65s; opacity: 1; transform: translateY(0) scale(1); }
.stagger.is-visible .stagger-item:nth-child(6) { transition-delay: .80s; opacity: 1; transform: translateY(0) scale(1); }
.stagger.is-visible .stagger-item:nth-child(7) { transition-delay: .95s; opacity: 1; transform: translateY(0) scale(1); }

/* Stagger directionnel pour les 3 cartes formules : gauche, centre (haut), droite */
.stagger-cards.is-visible .stagger-item:nth-child(1) {
  transition-delay: .05s; opacity: 1; transform: translateX(0) translateY(0) rotate(0);
}
.stagger-cards.is-visible .stagger-item:nth-child(2) {
  transition-delay: .25s; opacity: 1; transform: translateY(0) scale(1) rotate(0);
}
.stagger-cards.is-visible .stagger-item:nth-child(3) {
  transition-delay: .45s; opacity: 1; transform: translateX(0) translateY(0) rotate(0);
}
.stagger-cards .stagger-item:nth-child(1) {
  transform: translateX(-60px) translateY(20px) rotate(-3deg);
}
.stagger-cards .stagger-item:nth-child(2) {
  transform: translateY(80px) scale(0.92) rotate(0);
}
.stagger-cards .stagger-item:nth-child(3) {
  transform: translateX(60px) translateY(20px) rotate(3deg);
}

/* Letter-split — h2 qui éclate lettre par lettre */
.letters-split {
  display: inline-block;
}
.letters-split .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(8deg);
  transition: opacity .5s cubic-bezier(0.34, 1.4, 0.64, 1), transform .5s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.letters-split.is-visible .char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* Pulse glow sur CTA */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(77, 125, 255, 0),
      0 8px 24px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(77, 125, 255, 0.0),
      0 8px 24px rgba(0, 0, 0, 0.3),
      0 0 60px rgba(77, 125, 255, 0.5);
  }
}
.btn-pulse {
  animation: pulse-glow 2.4s ease-in-out infinite;
}

/* Float — léger flottement constant pour mac window */
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-soft {
  animation: float-soft 4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   WHATSAPP FLOATING BAR
   ============================================ */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(37, 211, 102, 0.18);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s, border-color .35s;
  max-width: calc(100vw - 40px);
}
.wa-float:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(37, 211, 102, 0.45);
}
.wa-float-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signature), #2bd07b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}
.wa-float-avatar::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid rgba(20, 20, 20, 0.95);
}
.wa-float-body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.wa-float-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wa-float-status {
  font-size: 10px;
  font-weight: 500;
  color: #25d366;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.wa-float-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2s infinite;
}
.wa-float-text {
  font-size: 13px;
  color: var(--mute);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}
.wa-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-left: 4px;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 640px) {
  /* Refonte mobile : pastille circulaire sobre, style verre du site */
  .wa-float {
    right: 16px;
    bottom: 16px;
    padding: 0;
    gap: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 10px 28px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(37, 211, 102, 0.25),
      0 0 24px rgba(37, 211, 102, 0.18);
    justify-content: center;
    align-items: center;
    display: inline-flex;
    overflow: hidden;
  }
  .wa-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 30%, rgba(37, 211, 102, 0.25) 0%, transparent 70%);
    pointer-events: none;
  }
  .wa-float::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, 0.4);
    opacity: 0;
    animation: wa-ring 2.4s ease-out infinite;
    pointer-events: none;
  }
  @keyframes wa-ring {
    0% { transform: scale(0.85); opacity: 0.6; }
    100% { transform: scale(1.25); opacity: 0; }
  }
  .wa-float:hover,
  .wa-float:active {
    transform: translateY(-2px);
    border-color: rgba(37, 211, 102, 0.55);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 14px 32px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(37, 211, 102, 0.5),
      0 0 36px rgba(37, 211, 102, 0.3);
  }
  .wa-float-body,
  .wa-float-avatar { display: none; }
  .wa-float-icon {
    width: 32px;
    height: 32px;
    margin-left: 0;
    background: transparent;
    color: #25d366;
    position: relative;
    z-index: 1;
  }
  .wa-float-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.6));
  }
}
@media (max-width: 420px) {
  .wa-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
  .wa-float-icon { width: 30px; height: 30px; }
  .wa-float-icon svg { width: 26px; height: 26px; }
}

/* ============================================
   RESPONSIVE — overrides globaux
   Améliore l'affichage sur tablette / mobile / petit mobile
   ============================================ */

/* Garde-fous généraux : aucune section ne doit déborder horizontalement */
html, body { max-width: 100%; overflow-x: clip; }
img, svg, video, iframe { max-width: 100%; height: auto; }

/* Header — empêcher tout débordement du grid */
.header-inner { width: 100%; min-width: 0; }
.header-inner > * { min-width: 0; }
.header-cta-short { display: none; }

/* Empêcher la coupure de ligne — utilisé par les titres h2 */
.nowrap { white-space: nowrap; }

/* CTA — deux boutons côte à côte */
.cta-buttons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Bouton WhatsApp — toujours au-dessus de tout le reste */
.wa-float { z-index: 9999; }

/* Animation : pulse vert + scale + glow quand on clique "Nous écrire" */
@keyframes wa-attention-pulse {
  0%   { transform: translateY(0)    scale(1);    box-shadow: 0 12px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(37,211,102,.18), 0 0 0 0 rgba(37,211,102,.55); }
  18%  { transform: translateY(-6px) scale(1.10); box-shadow: 0 22px 60px rgba(0,0,0,.55), 0 0 0 2px rgba(37,211,102,.9),  0 0 0 18px rgba(37,211,102,0); }
  36%  { transform: translateY(-2px) scale(1.04); box-shadow: 0 18px 50px rgba(0,0,0,.5),  0 0 0 1px rgba(37,211,102,.6),  0 0 0 28px rgba(37,211,102,0); }
  54%  { transform: translateY(-6px) scale(1.10); box-shadow: 0 22px 60px rgba(0,0,0,.55), 0 0 0 2px rgba(37,211,102,.9),  0 0 0 18px rgba(37,211,102,0); }
  72%  { transform: translateY(-2px) scale(1.04); box-shadow: 0 18px 50px rgba(0,0,0,.5),  0 0 0 1px rgba(37,211,102,.6),  0 0 0 28px rgba(37,211,102,0); }
  100% { transform: translateY(0)    scale(1);    box-shadow: 0 12px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(37,211,102,.18), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float--attention {
  animation: wa-attention-pulse 3s cubic-bezier(0.34, 1.4, 0.64, 1) both;
  border-color: rgba(37, 211, 102, 0.6) !important;
}

/* ---------- ≤ 1024px : tablette paysage ---------- */
@media (max-width: 1024px) {
  section.section { padding: var(--s-6) 0; }
  .principes { padding: var(--s-6) 0 var(--s-5); }
  .principes-head { margin-bottom: var(--s-5); }
  .testimonial { padding: var(--s-6) 0; }
  .portfolio-section { padding: var(--s-6) 0; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
  .faq-section { padding: var(--s-6) 0; }
  .search-section { padding: var(--s-6) 0; }
  .phone-section { padding: var(--s-6) 0; }
  .cta { padding: var(--s-6) 0; }
  .showcase { padding: var(--s-5) 0 var(--s-6); }

  /* Sections cinéma — un peu moins hautes */
  .manifesto-cinema { height: 500vh; }
  .engagements-cinema { height: 420vh; }
  .numbers-cinema { height: 320vh; }
  .vs-section { height: 220vh; }
}

/* ---------- ≤ 900px : header — version compacte ---------- */
@media (max-width: 900px) {
  .header { top: 12px; left: 12px; right: 12px; }
  .header-inner { padding: 6px 8px 6px 18px; }
  .header-inner > .btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  .nav { gap: var(--s-2); }
  .nav a { padding: 6px 8px; font-size: 13px; }
}

/* ---------- ≤ 768px : header — passage en label court ---------- */
@media (max-width: 768px) {
  .header-cta-long { display: none; }
  .header-cta-short { display: inline; }
  .header-inner {
    grid-template-columns: 1fr auto !important;
    padding: 5px 5px 5px 16px;
  }
  .header-inner > .btn {
    padding: 8px 14px;
    font-size: 12px;
    white-space: nowrap;
  }
}

/* ---------- ≤ 768px : tablette portrait ---------- */
@media (max-width: 768px) {
  section.section { padding: var(--s-5) 0; }
  .principes { padding: var(--s-5) 0; }
  .testimonial { padding: var(--s-5) 0; }
  .portfolio-section { padding: var(--s-5) 0; }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: var(--s-3);
    padding: 0 var(--s-3);
    max-width: 480px;
  }
  .portfolio-name { font-size: 18px; }
  .portfolio-thumb-letter { font-size: 80px; }
  .faq-section { padding: var(--s-5) 0 var(--s-6); }
  .search-section { padding: var(--s-5) 0; }
  .phone-section { padding: var(--s-5) 0; }
  .cta { padding: var(--s-5) 0; }
  .showcase { padding: var(--s-4) 0 var(--s-5); }
  .manifesto { padding: var(--s-6) 0; }

  /* HERO — moins haut, typo adaptée */
  .hero {
    padding: 100px 0 var(--s-5);
    background-attachment: scroll;
  }
  .hero h1 { font-size: clamp(38px, 11vw, 64px); }
  .hero-sub { font-size: 16px; padding: 0 var(--s-2); }
  .hero-reassurance { font-size: 12px; }
  .hero-reassurance .sep { margin: 0 4px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-scroll-cue { bottom: 16px; font-size: 9px; }

  /* SECTION HEADS — h2 plus raisonnable */
  .section-head { margin-bottom: var(--s-4); }
  .section-head h2 { font-size: clamp(32px, 9vw, 48px); }
  .section-head p { font-size: 15px; }
  .search-section-head h2 { font-size: clamp(30px, 9vw, 48px); }
  .phone-section-head h2 { font-size: clamp(30px, 9vw, 48px); }
  .faq-head h2 { font-size: clamp(30px, 9vw, 48px); }
  .principes-title { font-size: clamp(28px, 8vw, 44px); }

  /* OFFERS */
  .offers-grid { padding: 0 var(--s-3); gap: var(--s-3); }
  .offer { padding: var(--s-3); }
  .offer-title { font-size: 22px; }
  .offer-price { font-size: 52px; }
  .offer-selector { padding: 0 var(--s-3); }

  /* CTA final */
  .cta h2 { font-size: clamp(32px, 9vw, 48px); }
  .cta p { font-size: 16px; }
  .cta-eyebrow { font-size: 11px; letter-spacing: 0.15em; }
  .cta-eyebrow::before, .cta-eyebrow::after { width: 18px; }
  .cta-inner .btn { width: 100%; justify-content: center; max-width: 360px; }

  /* CINEMA blocks */
  .manifesto-line { font-size: clamp(34px, 11vw, 64px); padding: 0 var(--s-3); }
  .number-value { font-size: clamp(120px, 36vw, 220px); }
  .number-suffix { font-size: clamp(24px, 6vw, 40px); }
  .number-desc { font-size: 15px; padding: 0 var(--s-3); }
  .vs-setup { font-size: clamp(22px, 6vw, 36px); }
  .vs-punch { font-size: clamp(36px, 11vw, 64px); }
  .engagement-stage { padding: 100px var(--s-3) 100px; }
  .engagement-num { font-size: clamp(90px, 28vw, 160px); }
  .engagement-title { font-size: clamp(32px, 9vw, 48px); }
  .engagement-desc { font-size: 15px; }
  .engagement-tag { font-size: 10px; }

  /* MANIFESTO break */
  .manifesto h2 { font-size: clamp(28px, 8vw, 52px); }

  /* TESTIMONIAL */
  .testimonial-quote-mark { font-size: clamp(72px, 18vw, 140px); margin-bottom: var(--s-2); }
  .testimonial-quote { font-size: clamp(22px, 6vw, 36px); margin-bottom: var(--s-4); }
  .testimonial-inner { padding: 0 var(--s-3); }
  .testimonial-author {
    flex-direction: column;
    gap: var(--s-2);
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .testimonial-meta { text-align: center; }
  .testimonial-link {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: var(--s-2);
    margin-top: 4px;
    text-align: center;
  }
  /* Espacement des mots — supprime la double-marge sur mobile */
  .words-cascade .word { margin-right: 0; }

  /* FAQ */
  .faq-list { padding: 0 var(--s-3); }
  .faq-item summary { gap: var(--s-2); }
  .faq-q { font-size: 16px; }
  .faq-toggle { width: 30px; height: 30px; }
  .faq-toggle::before { width: 10px; }
  .faq-toggle::after { height: 10px; }
  .faq-a { font-size: 14px; padding: var(--s-1) 0 var(--s-3); }

  /* MARQUEE — calmer le rythme */
  .metiers-marquee { padding: var(--s-4) 0; }
  .metier-tag, .metier-sep { font-size: clamp(22px, 6vw, 36px); }
  .metiers-marquee::before, .metiers-marquee::after { width: 80px; }

  /* SEARCH PHONE — adapter au viewport */
  .search-phone {
    width: min(340px, calc(100vw - 32px));
  }

  /* PHONE SHOWCASE */
  .phone-frame {
    width: min(340px, calc(100vw - 32px));
  }

  /* CONNECTOR — moins haut */
  .connector { height: 100px; }

  /* BUTTONS — légèrement plus serré */
  .btn { padding: 12px 22px; font-size: 14px; }

  /* SCROLL CUE désactivé pour gagner du place */
  .hero-scroll-cue { display: none; }
}

/* ---------- ≤ 640px : mobile standard ---------- */
@media (max-width: 640px) {
  /* Container */
  .container { padding: 0 var(--s-3); }

  /* HERO */
  .hero { padding: 96px 0 var(--s-5); }
  .hero h1 { font-size: clamp(34px, 11vw, 56px); letter-spacing: -0.03em; }
  .hero-sub { font-size: 15px; }
  .hero-inner { padding: 0 var(--s-3); }

  /* Sections plus compactes */
  section.section { padding: var(--s-5) 0; }
  .section-head h2 { font-size: clamp(28px, 9vw, 42px); }

  /* OFFERS */
  .offers-grid { padding: 0 var(--s-3); max-width: 100%; }
  .offer-features li { font-size: 13px; }
  .offer-price { font-size: 48px; }

  /* SELECTOR */
  .offer-selector-pills { gap: 8px; }
  .offer-selector-btn { padding: 12px 14px; font-size: 12.5px; }

  /* SEARCH PHONE */
  .search-phone {
    width: min(320px, calc(100vw - 24px));
    border-radius: 40px;
    padding: 8px;
    border-width: 3px;
  }
  .search-phone .phone-notch { width: 70px; height: 20px; top: 8px; }
  .search-screen { border-radius: 32px; padding-top: 28px; }
  .search-bar { font-size: 13px; padding: 8px 12px; }
  .search-map { height: 100px; }
  .search-result-name { font-size: 12.5px; }
  .search-result-stars, .search-result-stars-mute { font-size: 11px; }
  .search-result-meta { font-size: 10.5px; }
  .search-result { padding: 8px 10px; gap: 8px; }
  .search-results { padding: 10px; }

  /* PHONE SHOWCASE */
  .phone-frame {
    width: min(320px, calc(100vw - 24px));
    border-radius: 40px;
    padding: 8px;
    border-width: 3px;
  }
  .phone-frame .phone-notch { width: 70px; height: 20px; top: 8px; }
  .phone-screen { border-radius: 32px; padding: 38px 10px 12px; }
  .phone-time { font-size: 52px; }
  .phone-date { font-size: 12px; margin-bottom: 12px; }

  /* MAC WINDOW */
  .mac-content { padding: var(--s-3) var(--s-2); min-height: 260px; }
  .mac-url { max-width: 110px; padding: 2px 6px; font-size: 10px; }
  .mac-site h2 { font-size: clamp(24px, 7vw, 36px); }
  .mac-site p { font-size: 14px; }
  .mac-site-stats { gap: 14px; margin-top: 28px; padding-top: 22px; }
  .mac-site-stat-num { font-size: 20px; }
  .mac-site-stat-label { font-size: 11px; }

  /* CTA */
  .cta h2 { font-size: clamp(28px, 9vw, 42px); }
  .cta p { font-size: 15px; }
  .cta-inner { padding: 0 var(--s-3); }

  /* TESTIMONIAL — format carré centré */
  .testimonial { padding: var(--s-5) 0; }
  .testimonial-inner { padding: 0 var(--s-3); max-width: 100%; }
  .testimonial-quote-mark { font-size: 72px; margin-bottom: var(--s-2); }
  .testimonial-quote {
    font-size: clamp(19px, 5.4vw, 26px);
    line-height: 1.35;
    letter-spacing: -0.015em;
    max-width: 100%;
    padding: 0 var(--s-1);
    margin-bottom: var(--s-4);
  }
  .testimonial-name { font-size: 15px; }
  .testimonial-role { font-size: 12px; line-height: 1.4; }
  .testimonial-avatar { width: 52px; height: 52px; font-size: 17px; }
  .testimonial-author { gap: 10px; }
  .testimonial-link {
    font-size: 13.5px;
    padding-top: 10px;
    width: auto;
    max-width: 240px;
  }
  /* Glow plus discret sur petits écrans */
  .testimonial-glow {
    width: 100vw;
    height: 60vh;
  }

  /* CINEMA cards */
  .manifesto-line { font-size: clamp(30px, 11vw, 52px); line-height: 1.05; }
  .number-value { font-size: clamp(96px, 38vw, 180px); }
  .vs-punch { font-size: clamp(32px, 11vw, 56px); }
  .engagement-num { font-size: clamp(80px, 28vw, 140px); }
  .engagement-title { font-size: clamp(28px, 9vw, 44px); }
  .engagement-stage { padding: 80px var(--s-3) 90px; }

  /* PRINCIPES */
  .principe { padding: var(--s-4) var(--s-2); gap: var(--s-2); }
  .principe-num { font-size: 48px; }
  .principe h3 { font-size: clamp(22px, 6vw, 30px); }
  .principe p { font-size: 14px; }

  /* FOOTER — passe en 1 colonne avec sections empilées */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--s-3);
    padding: 0 var(--s-3);
    margin-bottom: var(--s-3);
  }
  .footer-tagline { max-width: none; }
  .footer-bottom { padding: var(--s-3) var(--s-3) 0; font-size: 11px; }

  /* CONNECTOR */
  .connector { height: 80px; }
  .connector-label { font-size: 9px; bottom: -24px; }
}

/* ---------- ≤ 480px : très petit mobile (iPhone SE etc.) ---------- */
@media (max-width: 480px) {
  :root {
    /* Marges de section plus compactes */
    --s-5: 48px;
    --s-6: 80px;
    --s-7: 120px;
  }

  /* Header — masquer le texte long du CTA */
  .header-inner { padding: 5px 6px 5px 14px; }
  .header-inner > .btn { padding: 7px 12px; font-size: 11.5px; }
  .logo { font-size: 16px; }

  /* HERO */
  .hero { padding: 88px 0 40px; }
  .hero h1 { font-size: clamp(30px, 10vw, 44px); }
  .hero-sub { font-size: 14px; line-height: 1.4; }
  .hero-sub-em { margin-top: 4px; }

  /* OFFERS */
  .offer-title { font-size: 20px; }
  .offer-price { font-size: 42px; }
  .offer-price-suffix { font-size: 14px; }

  /* CTA buttons full width */
  .btn { padding: 12px 18px; font-size: 13.5px; }

  /* FAQ */
  .faq-q { font-size: 15px; }

  /* OFFER badge — repositionner sur les très petites cartes */
  .offer-badge { top: var(--s-2); right: var(--s-2); }
  .badge { padding: 4px 10px; font-size: 11px; }

  /* MANIFESTO cinema */
  .manifesto-line { font-size: clamp(26px, 10vw, 42px); }

  /* TESTIMONIAL — ajustement très petits écrans */
  .testimonial-quote-mark { font-size: 56px; margin-bottom: 4px; }
  .testimonial-quote { font-size: clamp(17px, 5vw, 22px); line-height: 1.4; }
  .testimonial-avatar { width: 48px; height: 48px; font-size: 16px; }
  .testimonial-name { font-size: 14.5px; }
  .testimonial-role { font-size: 11.5px; }
  .testimonial-link { font-size: 13px; }

  /* WhatsApp — déjà bien géré à 420px */
}

/* ---------- ≤ 380px : iPhone SE / petits Android ---------- */
@media (max-width: 380px) {
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 13.5px; }
  .section-head h2,
  .search-section-head h2,
  .phone-section-head h2,
  .faq-head h2,
  .cta h2 { font-size: 26px; }
  .header-inner > .btn { padding: 6px 10px; font-size: 11px; }
  .logo { font-size: 15px; }
  .nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
}

/* ---------- Orientation paysage sur petits écrans ---------- */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { padding: 80px 0 40px; min-height: auto; }
  .manifesto-cinema,
  .engagements-cinema,
  .numbers-cinema,
  .vs-section {
    /* Réduire les hauteurs sticky en paysage pour ne pas trop scroller */
    height: auto;
  }
  .manifesto-pin,
  .engagements-pin,
  .numbers-pin,
  .vs-pin {
    position: relative;
    height: auto;
    min-height: 100vh;
  }
}

/* ---------- Hover-only effects désactivés sur écrans tactiles ---------- */
@media (hover: none) {
  .offer:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .wa-float:hover {
    transform: none;
  }
}
