/* ===========================================================
   ÉCLAIRE VITRE — Site web (couche au-dessus de tokens-v4.css)
   Réutilise les composants de marque : .ev-badge .ev-mark .btn
   .tag .card .service-card .section .wrap .swipe .lockup
   =========================================================== */

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { overflow-x: hidden; }
body.intro-lock { overflow: hidden; height: 100vh; }
img { display: block; max-width: 100%; }

/* extra motion token */
:root { --ease: cubic-bezier(0.22, 1, 0.36, 1); --site-max: 1200px; }

/* wider wrap for the site */
.wrap { max-width: var(--site-max); }

/* ---- language toggle ---- */
html[data-lang="fr"] [data-lang-en] { display: none !important; }
html[data-lang="en"] [data-lang-fr] { display: none !important; }

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

/* ===========================================================
   INTRO — la vitre qui se nettoie (coup de raclette)
   =========================================================== */
#intro { position: fixed; inset: 0; z-index: 9999; background: var(--noir); overflow: hidden; display: grid; place-items: center; }
.intro-glass {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(41,171,226,0.20), transparent 60%),
    radial-gradient(100% 90% at 80% 90%, rgba(245,227,32,0.12), transparent 55%),
    #14171a;
  backdrop-filter: blur(3px);
}
.intro-grime {
  position: absolute; inset: 0; opacity: 0.55; mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.07) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.06) 0 3px, transparent 4px),
    radial-gradient(circle at 45% 80%, rgba(255,255,255,0.05) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 25%, rgba(255,255,255,0.06) 0 2px, transparent 3px),
    radial-gradient(circle at 12% 68%, rgba(255,255,255,0.05) 0 3px, transparent 4px);
  background-size: 170px 170px, 220px 220px, 150px 150px, 200px 200px, 240px 240px;
}
.intro-content { position: relative; z-index: 2; text-align: center; }
.intro-content .ev-badge { margin: 0 auto; }
.intro-tag {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.3em;
  font-size: 12px; color: var(--jaune); margin-top: 26px;
}
.squeegee {
  position: absolute; top: -25%; left: -35%; width: 28%; height: 150%;
  transform: rotate(7deg); z-index: 3; filter: blur(1.5px);
  background: linear-gradient(90deg, transparent, rgba(41,171,226,0.4) 46%, rgba(255,255,255,0.92) 50%, rgba(245,227,32,0.45) 54%, transparent 80%);
}
body.intro-go .squeegee { animation: squeegee-sweep 1.5s var(--ease) 0.2s forwards; }
body.intro-go .intro-glass, body.intro-go .intro-grime { animation: glass-clear 1.6s var(--ease) 0.25s forwards; }
body.intro-go .intro-content { animation: intro-fade 0.55s ease 1.25s forwards; }
body.intro-go #intro { animation: intro-lift 0.7s var(--ease) 1.65s forwards; }
@keyframes squeegee-sweep { 0% { left: -38%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 112%; opacity: 0; } }
@keyframes glass-clear { to { clip-path: inset(0 0 0 100%); opacity: 0; } }
@keyframes intro-fade { to { opacity: 0; transform: translateY(-12px); } }
@keyframes intro-lift { to { transform: translateY(-100%); } }
@media (prefers-reduced-motion: reduce) { #intro { display: none; } }

/* ===========================================================
   PARTICULES — éclats de lumière flottants
   =========================================================== */
#particles { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 56px);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 11px;
}
.brand-lockup { display: flex; align-items: center; gap: 13px; }
.brand-lockup .name1 { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; line-height: 0.95; color: var(--noir); }
.brand-lockup .name2 { font-family: var(--font-mono); font-weight: 500; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-70); margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { position: relative; font-weight: 600; font-size: 15px; color: var(--ink-70); padding: 4px 0; transition: color 0.2s; }
.nav-links a:hover { color: var(--noir); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--bleu); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-tools { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: inline-flex; border: 1.5px solid var(--line-2); border-radius: var(--r-pill); overflow: hidden; font-family: var(--font-mono); font-size: 11px; font-weight: 500; }
.lang-switch button { padding: 7px 11px; color: var(--ink-70); letter-spacing: 0.05em; transition: background 0.2s, color 0.2s; }
.lang-switch button.active { background: var(--noir); color: #fff; }

.menu-toggle { display: none; width: 44px; height: 44px; border: none; background: transparent; align-items: center; justify-content: center; cursor: pointer; }
.menu-toggle svg { width: 26px; height: 26px; color: var(--noir); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 96px; padding-bottom: 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: -10% 0 0 0; z-index: 0;
  background:
    radial-gradient(75% 60% at 78% 28%, rgba(41,171,226,0.16), transparent 60%),
    radial-gradient(70% 60% at 12% 85%, rgba(245,227,32,0.20), transparent 55%);
}
.hero .wrap { position: relative; z-index: 5; width: 100%; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.04fr); gap: clamp(30px,4.5vw,70px); align-items: center; }
.hero-eyebrow { color: var(--bleu-press); margin-bottom: 22px; }
.hero-content { max-width: 540px; }
.hero .lead { margin: 0; max-width: 42ch; color: var(--ink-70); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 16px 34px; margin-top: 42px; }
.hero-meta div { display: flex; align-items: center; gap: 9px; color: var(--ink-70); font-size: 15px; }
.hero-meta svg { width: 20px; height: 20px; color: var(--bleu-press); stroke-width: 1.75; flex: none; }
.hero-meta strong { color: var(--noir); font-weight: 700; }

/* floating glass panes */
.glass-pane { position: absolute; border-radius: 18px; overflow: hidden;
  background: linear-gradient(135deg, rgba(41,171,226,0.18), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 30px 60px -30px rgba(41,171,226,0.5);
  backdrop-filter: blur(2px); z-index: 2;
}
.glass-pane::before { content: ""; position: absolute; top: 0; left: -60%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent); transform: skewX(-18deg);
  animation: pane-shine 6s var(--ease) infinite; }
@keyframes pane-shine { 0%, 100% { left: -60%; } 50% { left: 130%; } }
.pane-1 { width: 230px; height: 300px; top: 17%; right: 7%; transform: rotate(-8deg); }
.pane-2 { width: 150px; height: 200px; top: 54%; right: 25%; transform: rotate(6deg); }
.pane-3 { width: 116px; height: 158px; top: 26%; right: 29%; transform: rotate(12deg); opacity: 0.75; }
.hero-badge-float { position: absolute; top: -24px; right: -20px; z-index: 6; }

/* ---- héro : image plein cadre + titre intégré ---- */
.hero-photo { position: relative; z-index: 3; margin: 0; }
.hero-photo .photo-frame { position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 50px 90px -34px rgba(26,40,52,.55), 0 10px 26px -12px rgba(26,40,52,.4); }
.hero-photo .photo-tilt { position: relative; transform-style: preserve-3d; transition: transform .25s var(--ease); will-change: transform; }
.hero-photo image-slot, .hero-photo .ev-img {
  display: block; width: 100%; height: clamp(440px, 64vh, 600px);
  object-fit: cover;
  background: linear-gradient(150deg, var(--bleu-tint), #fff);
}
.hero-photo-scrim { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(14,20,26,.88) 0%, rgba(14,20,26,.55) 26%, rgba(14,20,26,.12) 48%, transparent 66%); }
.hero-title { position: absolute; left: clamp(22px,3vw,40px); right: clamp(22px,3vw,40px); bottom: clamp(24px,3vw,38px);
  margin: 0; z-index: 2; color: #fff; font-size: clamp(40px,4.6vw,70px); text-shadow: 0 2px 20px rgba(0,0,0,.38); }
.hero-title .hl { color: var(--jaune); }

/* ---- animation flottante + socle tilt du badge ---- */
.badge-float { animation: badge-bob 6s ease-in-out infinite; }
.badge-float .ev-badge { transition: transform .25s var(--ease); will-change: transform; }
@keyframes badge-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

@media (prefers-reduced-motion: reduce) {
  .ev-badge .shine, .ev-mark::before { animation: none !important; }
  .badge-float { animation: none !important; }
}

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 5;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-45);
  display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint .mouse { width: 22px; height: 34px; border: 2px solid var(--ink-45); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: var(--ink-45); border-radius: 2px; animation: wheel 1.5s infinite; }
@keyframes wheel { 0% { opacity: 0; top: 6px; } 30% { opacity: 1; } 100% { opacity: 0; top: 16px; } }

/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-3d { opacity: 0; transform: perspective(1200px) rotateX(14deg) translateY(60px); transform-origin: center bottom; transition: opacity 1s var(--ease), transform 1.1s var(--ease); }
.reveal-3d.in-view { opacity: 1; transform: perspective(1200px) rotateX(0) translateY(0); }
.reveal-d1 { transition-delay: 0.08s; } .reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; } .reveal-d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal-3d { opacity: 1 !important; transform: none !important; } }

/* section heading block */
.shead { max-width: 56ch; margin-bottom: clamp(40px, 5vw, 64px); }
.shead .num { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; color: var(--bleu-press); }
.section.dark .shead .num { color: var(--jaune); }
.shead h2 { margin: 14px 0 16px; }
.shead.center { margin-inline: auto; text-align: center; }

/* ===========================================================
   SERVICES (sur fond noir)
   =========================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { position: relative; background: #202327; border: 1px solid var(--on-dark-line); border-radius: var(--r-lg); padding: 30px 28px 28px; display: flex; flex-direction: column; overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s; }
.svc-card:hover { transform: translateY(-8px); border-color: rgba(41,171,226,0.5); background: #23272b; }
.svc-card .glow { position: absolute; top: -40%; right: -20%; width: 240px; height: 240px; background: radial-gradient(circle, rgba(41,171,226,0.35), transparent 70%); opacity: 0; transition: opacity 0.5s; pointer-events: none; }
.svc-card:hover .glow { opacity: 1; }
.svc-media { position: relative; margin-bottom: 30px; z-index: 2; }
.svc-media image-slot, .svc-media .ev-img {
  display: block; width: 100%; height: 172px;
  object-fit: cover;
  border-radius: var(--r-md);
  background: #16181b;
  box-shadow: inset 0 0 0 1px var(--on-dark-line);
}
.svc-ico { width: 60px; height: 60px; border-radius: var(--r-md); background: var(--jaune); color: var(--noir); display: grid; place-items: center; margin-bottom: 22px; position: relative; z-index: 2; }
.svc-media .svc-ico { position: absolute; bottom: -22px; left: 18px; margin: 0; box-shadow: 0 12px 26px -8px rgba(0,0,0,.65); }
.svc-ico svg { width: 30px; height: 30px; stroke-width: 1.75; }
.svc-card:nth-child(2) .svc-ico { background: var(--bleu); }
.svc-card h3 { color: #fff; margin-bottom: 10px; position: relative; z-index: 2; }
.svc-card .svc-desc { color: var(--on-dark-70); position: relative; z-index: 2; }
.svc-list { list-style: none; margin: 20px 0 24px; padding: 0; display: flex; flex-direction: column; gap: 11px; position: relative; z-index: 2; }
.svc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; color: rgba(255,255,255,0.8); }
.svc-list svg { width: 18px; height: 18px; color: var(--bleu); stroke-width: 2; flex: none; margin-top: 3px; }
.svc-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding-top: 20px; border-top: 1px solid var(--on-dark-line); position: relative; z-index: 2; }
.svc-price small { display: block; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--on-dark-70); margin-bottom: 3px; }
.svc-price .amt { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--jaune); line-height: 1; }
.svc-card:nth-child(2) .svc-price .amt { color: var(--bleu); }
.svc-arrow { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.06); display: grid; place-items: center; flex: none; transition: background 0.3s, transform 0.3s; }
.svc-card:hover .svc-arrow { background: var(--jaune); transform: rotate(-45deg); }
.svc-arrow svg { width: 20px; height: 20px; color: #fff; stroke-width: 2; transition: color 0.3s; }
.svc-card:hover .svc-arrow svg { color: var(--noir); }

/* ===========================================================
   POURQUOI / arguments
   =========================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 48px; }
.why-item { padding: 30px 0; border-top: 2px solid var(--line); }
.why-item .num { font-family: var(--font-mono); font-size: 12px; color: var(--bleu-press); letter-spacing: 0.1em; }
.why-item .ic { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--bleu-tint); display: grid; place-items: center; margin: 16px 0 18px; }
.why-item .ic svg { width: 26px; height: 26px; color: var(--noir); stroke-width: 1.75; }
.why-item:nth-child(even) .ic { background: var(--jaune-tint); }
.why-item h3 { margin-bottom: 8px; }
.why-item p { color: var(--ink-70); margin: 0; }

/* ===========================================================
   À PROPOS (sur fond bleu)
   =========================================================== */
.section.blue { background: var(--bleu); color: var(--noir); overflow: hidden; }
.section.blue .shead .num { color: var(--noir); opacity: 0.6; }
.about-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about-photo { position: relative; }
.about-photo image-slot, .about-photo .ev-img { display: block; width: 100%; height: 560px; object-fit: cover; border-radius: var(--r-lg); background: #fff; box-shadow: 0 40px 80px -30px rgba(26,26,26,0.45); }
.about-badge { position: absolute; bottom: -24px; left: -24px; background: var(--noir); color: #fff; border-radius: 18px; padding: 20px 24px; box-shadow: var(--sh-lift); }
.about-badge .big { font-family: var(--font-display); font-weight: 800; font-size: 38px; line-height: 1; color: var(--jaune); }
.about-badge .cap { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--on-dark-70); margin-top: 6px; }
.about-copy h2 { margin-bottom: 20px; }
.about-copy p { font-size: 18px; line-height: 1.6; margin: 0 0 16px; max-width: 52ch; }
.about-sign { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.about-sign .nm { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.about-sign .rl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; margin-top: 3px; }

/* ===========================================================
   ZONES
   =========================================================== */
.zones-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.zone-list { display: flex; flex-direction: column; gap: 12px; }
.zone-row { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: var(--r-md); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--sh-1); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.zone-row:hover { transform: translateX(8px); box-shadow: var(--sh-2); }
.zone-row .pin { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--jaune); display: grid; place-items: center; flex: none; }
.zone-row:nth-child(2) .pin { background: var(--bleu); }
.zone-row:nth-child(3) .pin { background: var(--noir); }
.zone-row:nth-child(3) .pin svg { color: var(--jaune); }
.zone-row .pin svg { width: 24px; height: 24px; color: var(--noir); stroke-width: 1.75; }
.zone-row h3 { font-size: 19px; }
.zone-row p { font-size: 14.5px; color: var(--ink-70); margin: 2px 0 0; }
.zone-map { position: relative; aspect-ratio: 1 / 1; border-radius: var(--r-lg); background: var(--noir); overflow: hidden; box-shadow: var(--sh-2); }
.zone-map svg { width: 100%; height: 100%; display: block; }

/* ===========================================================
   TARIFS
   =========================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); gap: 20px; align-items: stretch; justify-content: center; }
.price-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; display: flex; flex-direction: column; box-shadow: var(--sh-1); transition: transform 0.45s var(--ease), box-shadow 0.45s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lift); }
.price-card.featured { background: var(--noir); color: #fff; border-color: var(--noir); }
.price-card.featured h3 { color: #fff; }
.price-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.price-card h3 { font-size: 24px; }
.price-amt { font-family: var(--font-display); font-weight: 800; font-size: 48px; line-height: 1; margin-bottom: 6px; }
.price-amt .pre { font-size: 16px; font-weight: 600; vertical-align: super; color: var(--ink-70); }
.price-card.featured .price-amt .pre { color: var(--on-dark-70); }
.price-amt .unit { font-family: var(--font-body); font-size: 17px; font-weight: 600; color: var(--ink-70); letter-spacing: -.01em; }
.price-card.featured .price-amt .unit { color: var(--on-dark-70); }
.price-sub { font-size: 14.5px; color: var(--ink-70); margin-bottom: 24px; }
.price-card.featured .price-sub { color: var(--on-dark-70); }
.price-feats { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; }
.price-feats svg { width: 18px; height: 18px; color: var(--bleu-press); stroke-width: 2; flex: none; margin-top: 3px; }
.price-card.featured .price-feats svg { color: var(--jaune); }
.price-card .btn { margin-top: auto; justify-content: center; width: 100%; }
.pricing-note { text-align: center; margin-top: 32px; color: var(--ink-70); font-size: 15px; }

/* ===========================================================
   TÉMOIGNAGES
   =========================================================== */
.testi-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 44px; }
.testi-head .shead { margin-bottom: 0; }
.google-badge { display: flex; align-items: center; gap: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 12px 22px; box-shadow: var(--sh-1); }
.google-badge .stars { color: #f5b400; display: flex; gap: 2px; }
.google-badge .stars svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.google-badge b { font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.google-badge small { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-70); display: block; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--sh-1); transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s; }
a.testi-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lift); border-color: rgba(41,171,226,0.45); }
.testi-cta { text-align: center; margin-top: 36px; }
.testi-card .stars { color: #f5b400; display: flex; gap: 2px; margin-bottom: 16px; }
.testi-card .stars svg { width: 17px; height: 17px; fill: currentColor; stroke: none; }
.testi-card blockquote { font-size: 17px; line-height: 1.55; margin: 0 0 24px; }
.testi-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-card .who > div { min-width: 0; }
.testi-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--bleu); color: var(--noir); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; flex: none; }
.testi-card:nth-child(2) .avatar { background: var(--jaune); }
.testi-card:nth-child(3) .avatar { background: var(--noir); color: var(--jaune); }
.testi-card .who b { display: block; font-size: 15.5px; line-height: 1.2; white-space: nowrap; }
.testi-card .who > div > span { display: block; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-70); margin-top: 3px; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq-wrap { max-width: 840px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; text-align: left; background: none; border: none; cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 1.6vw, 22px); color: var(--noir); letter-spacing: -0.01em; }
.faq-q > span:first-child { flex: 1 1 auto; min-width: 0; }
.faq-q .icn { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; flex: none; transition: background 0.3s, border-color 0.3s; }
.faq-q .icn svg { width: 20px; height: 20px; stroke-width: 2; transition: transform 0.3s; }
.faq-item.open .faq-q .icn { background: var(--jaune); border-color: var(--jaune); }
.faq-item.open .faq-q .icn svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding-bottom: 24px; color: var(--ink-70); font-size: 16.5px; line-height: 1.6; max-width: 66ch; }

/* ===========================================================
   CONTACT / SOUMISSION (fond noir)
   =========================================================== */
.contact { position: relative; overflow: hidden; }
.contact .wrap { position: relative; z-index: 2; }
.contact-glow { position: absolute; top: -20%; left: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(245,227,32,0.16), transparent 65%); z-index: 0; pointer-events: none; }
.contact-glow.b { left: auto; right: -15%; top: auto; bottom: -25%; background: radial-gradient(circle, rgba(41,171,226,0.2), transparent 65%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.contact h2 { color: #fff; margin-bottom: 18px; }
.contact-lead { color: var(--on-dark-70); font-size: 18px; margin-bottom: 36px; max-width: 42ch; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.cm-row { display: flex; align-items: center; gap: 15px; color: #fff; }
.cm-row .ic { width: 52px; height: 52px; border-radius: var(--r-md); background: rgba(255,255,255,0.06); display: grid; place-items: center; flex: none; transition: background 0.3s; }
.cm-row:hover .ic { background: var(--jaune); }
.cm-row:hover .ic svg { color: var(--noir); }
.cm-row .ic svg { width: 24px; height: 24px; color: var(--jaune); stroke-width: 1.75; transition: color 0.3s; }
.cm-row small { display: block; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--on-dark-70); }
.cm-row b { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.contact-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

.form-card { background: var(--paper); color: var(--noir); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 38px); box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-70); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: 16px; padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: var(--r-md); background: var(--paper-2); color: var(--noir); transition: border-color 0.2s, box-shadow 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--bleu); box-shadow: 0 0 0 4px rgba(41,171,226,0.15); }
.field textarea { resize: vertical; min-height: 110px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--ink-70); text-align: center; margin-top: 14px; }
.form-error { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; font-weight: 600; color: #C0392B; background: rgba(192,57,43,0.09); border: 1px solid rgba(192,57,43,0.25); border-radius: 10px; padding: 10px 14px; margin-top: 12px; text-align: center; }
.form-error[hidden] { display: none; }
.form-error svg { width: 18px; height: 18px; flex: none; }
.form-card .btn:disabled, .form-card .btn.is-sending { opacity: 0.6; cursor: not-allowed; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .check { width: 72px; height: 72px; border-radius: 50%; background: var(--jaune); display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .check svg { width: 36px; height: 36px; color: var(--noir); stroke-width: 2; }
.form-success h3 { font-size: 26px; margin-bottom: 10px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: #101214; color: var(--on-dark-70); padding: clamp(56px, 6vw, 80px) 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--on-dark-line); }
.footer-brand .lockup { margin-bottom: 18px; }
.footer-brand .name1 { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: #fff; line-height: 0.95; }
.footer-brand .name2 { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--jaune); margin-top: 4px; }
.footer-about { max-width: 38ch; font-size: 15px; line-height: 1.6; }
.footer-col h4 { color: #fff; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500; margin: 0 0 18px; }
.footer-col a { display: block; padding: 6px 0; color: var(--on-dark-70); font-size: 15px; transition: color 0.2s; }
.footer-col a:hover { color: var(--jaune); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-top: 28px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; color: var(--on-dark-70); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--on-dark-line); display: grid; place-items: center; transition: background 0.3s, border-color 0.3s; }
.footer-socials a:hover { background: var(--jaune); border-color: var(--jaune); }
.footer-socials a:hover svg { color: var(--noir); }
.footer-socials svg { width: 18px; height: 18px; color: #fff; stroke-width: 1.75; }

/* ===========================================================
   MOBILE MENU
   =========================================================== */
.mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--noir); color: #fff; display: flex; flex-direction: column; justify-content: center; padding: clamp(20px, 5vw, 56px); transform: translateX(100%); transition: transform 0.5s var(--ease); }
.mobile-menu.open { transform: none; }
.mobile-menu-bar { position: absolute; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 16px clamp(20px, 5vw, 56px); }
.mm-brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.mm-brand span { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.01em; }
.mobile-close { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--on-dark-line); background: transparent; display: grid; place-items: center; cursor: pointer; color: #fff; transition: background 0.25s, border-color 0.25s; }
.mobile-close:hover { background: var(--jaune); border-color: var(--jaune); color: var(--noir); }
.mobile-close svg { width: 24px; height: 24px; }
.mobile-menu a { font-family: var(--font-display); font-weight: 800; font-size: 30px; padding: 12px 0; border-bottom: 1px solid var(--on-dark-line); color: #fff; }
.mobile-menu .mm-brand { font-size: inherit; padding: 0; border: none; }
.mobile-menu a:last-of-type { border: none; }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .svc-grid, .why-grid, .pricing-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .zones-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 540px; }
  .about-photo image-slot, .about-photo .ev-img { height: 440px; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}
/* héro : passage en colonne — image (avec titre) en haut, texte dessous */
@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  /* hero-content devient transparent → ses enfants se réordonnent avec l'image */
  .hero-content { display: contents; }
  .hero-eyebrow { order: 1; margin-bottom: 0; }
  .hero-photo { order: 2; }
  .hero .lead { order: 3; max-width: 100%; }
  .hero-cta { order: 4; margin-top: 4px; }
  .hero-meta { order: 5; margin-top: 4px; }
  .hero-photo image-slot, .hero-photo .ev-img { height: clamp(380px, 62vw, 480px); }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .svc-grid, .why-grid, .pricing-grid, .testi-grid { grid-template-columns: 1fr; }
  .glass-pane, .hero-badge-float { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .testi-head { align-items: flex-start; }

  /* header compact : le CTA ne doit plus déborder à droite */
  .site-header { padding: 12px 16px; }
  .nav-tools { gap: 10px; }
  .nav-tools > .btn { display: none; }

  /* héro mobile : aucun chevauchement, boutons pleine largeur */
  .hero { padding-top: 86px; padding-bottom: 44px; }
  .hero-photo image-slot, .hero-photo .ev-img { height: clamp(340px, 80vw, 430px); }
  .hero-title { font-size: clamp(31px, 8.4vw, 44px); }
  .hero-cta { gap: 12px; margin-top: 24px; }
  .hero-cta .btn { flex: 1 1 190px; justify-content: center; }
  .hero-meta { gap: 12px 22px; margin-top: 28px; }
  .scroll-hint { display: none; }
}

/* très petits écrans : tout passe en pleine largeur */
@media (max-width: 400px) {
  .hero-cta .btn { flex-basis: 100%; }
  .brand-lockup .name2 { display: none; }
}
