/* ════════════════════════════════════════
   LOUISMAGIE · SITE COMPLET · 2026
   Mobile-first · Charte graphique v2.0
   Basé sur homepage v8
   ════════════════════════════════════════ */

:root {
  --orange:       #FF7700;
  --orange-deep:  #E56200;
  --noir:         #0A0A08;
  --noir-2:       #141410;
  --noir-3:       #1E1E1A;
  --anthracite:   #2C2C28;
  --creme:        #F5F2EE;
  --creme-2:      #EDEAE5;
  --blanc:        #FDFCFB;
  --gris-c:       #C8C3BB;
  --gris-m:       #8A8580;
  --gris-f:       #5A5650;
  --font-d: 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--blanc);
  color: var(--noir);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
}
img { max-width: 100%; display: block; height: auto; }
section, footer, nav, header, div { max-width: 100%; }

/* ── Keyframes ── */
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,119,0,0); }
  50%      { box-shadow: 0 0 0 14px rgba(255,119,0,0.11); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.au { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.au.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .22s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .au { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════
   NAV
   ════════════════════════════════════════ */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background .4s, padding .3s;
}
.nav.sc {
  background: rgba(10,10,8,.96);
  backdrop-filter: blur(20px);
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-logo {
  font-family: var(--font-d); font-size: 16px; font-weight: 800;
  color: #fff; letter-spacing: -.3px; text-decoration: none; flex-shrink: 0;
  display: flex; align-items: center;
}
.nav-logo span { color: var(--orange); }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: none; gap: 4px; align-items: center; }
.nav-link {
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255,255,255,.65); text-decoration: none;
  padding: 8px 12px; border-radius: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap; background: none; border: none; cursor: pointer;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: #fff; background: rgba(255,255,255,.06); }
.nav-cta {
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  background: var(--orange); color: #fff; border: none; border-radius: 3px;
  padding: 11px 20px; cursor: pointer; text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--orange-deep); transform: translateY(-1px); }

/* Dropdown prestations */
.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(15,15,12,.98); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 10px;
  padding: 8px; min-width: 250px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; transform: none; }
.nav-drop-menu a {
  font-family: var(--font-d); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.55); text-decoration: none;
  padding: 11px 14px; border-radius: 6px;
  transition: color .15s, background .15s;
  display: flex; align-items: center; gap: 10px;
}
.nav-drop-menu a:hover { color: #fff; background: rgba(255,119,0,.12); }
.nav-drop-menu a span { color: var(--orange); font-size: 12px; }

.nav-burger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; flex-shrink: 0;
  background: none; border: none;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s ease;
}
.nav-burger.op span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.op span:nth-child(2) { opacity: 0; }
.nav-burger.op span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-menu {
  position: fixed; inset: 0;
  background: var(--noir); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; padding: 90px 24px 40px;
}
.mob-menu.op { transform: translateX(0); }
.mob-link {
  font-family: var(--font-d); font-size: 24px; font-weight: 800;
  color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s;
}
.mob-link:hover { color: var(--orange); }
.mob-sub {
  font-family: var(--font-d); font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s;
}
.mob-sub:hover { color: var(--orange); }
.mob-sep { width: 40px; height: 1px; background: rgba(255,255,255,.12); }

@media (min-width: 1020px) {
  .nav, .nav.sc { padding-left: 56px; padding-right: 56px; }
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}
@media (max-width: 430px) {
  .nav, .nav.sc { padding-left: 14px; padding-right: 14px; }
  .nav-logo { font-size: 14px; }
  .nav-logo img { height: 32px; }
  .nav-cta { padding: 10px 13px; font-size: 9px; letter-spacing: 1.2px; }
  .nav { gap: 8px; }
}

/* ════════════════════════════════════════
   HERO (accueil)
   ════════════════════════════════════════ */

.hero {
  min-height: 100svh; background: var(--noir);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 110px 20px 52px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 75% 25%, rgba(255,119,0,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 15% 85%, rgba(255,119,0,.04) 0%, transparent 60%),
    linear-gradient(155deg,#1a1a16 0%,#0A0A08 100%);
}
.hero-photo {
  position: absolute; inset: 0; object-fit: cover; object-position: 70% 20%; width: 100%; height: 100%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,rgba(10,10,8,.25) 0%,rgba(10,10,8,.6) 55%,rgba(10,10,8,.97) 100%);
  z-index: 1;
}
.hero-dots {
  position: absolute; top: 60px; right: 0;
  width: 220px; height: 220px; opacity: .03;
  background-image: radial-gradient(circle,#fff 1px,transparent 1px);
  background-size: 18px 18px; z-index: 2; pointer-events: none;
}
.hero-content { position: relative; z-index: 3; max-width: 680px; animation: fadeUp .9s ease .15s both; }
.hero-eb { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.hero-eb-line { width: 24px; height: 1px; background: rgba(255,119,0,.45); }
.hero-eb-txt {
  font-family: var(--font-b); font-size: 11px; font-weight: 400;
  letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.35);
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(36px, 9.5vw, 90px);
  font-weight: 800; color: #fff;
  line-height: .97; letter-spacing: -1.5px; margin-bottom: 20px;
  text-wrap: balance;
}
@media (min-width: 400px) {
  .hero-title { font-size: clamp(42px, 10vw, 90px); letter-spacing: -2px; }
}
.hero-title .acc { color: var(--orange); }
.hero-title em { font-style: italic; font-weight: 700; color: rgba(255,255,255,.3); }
.hero-sub {
  font-family: var(--font-b); font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,.5); line-height: 1.85; margin-bottom: 36px; max-width: 420px;
}
.hero-ctarow { display: flex; flex-direction: column; gap: 10px; }
.btn-hp {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-d); font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: #fff; background: var(--orange); border: none; border-radius: 3px;
  padding: 17px 30px; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 28px rgba(255,119,0,.32);
  transition: all .22s ease; animation: pulse-glow 3.5s ease infinite;
}
.btn-hp:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255,119,0,.48); }
.btn-hs {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-d); font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255,255,255,.6); background: transparent;
  border: 1px solid rgba(255,255,255,.18); border-radius: 3px;
  padding: 16px 26px; cursor: pointer; transition: all .22s ease; text-decoration: none;
}
.btn-hs:hover { color: rgba(255,255,255,.92); border-color: rgba(255,255,255,.36); }
.hero-stats {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(4,1fr);
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px;
}
.hstat { text-align: center; padding: 0 8px; border-right: 1px solid rgba(255,255,255,.06); }
.hstat:last-child { border-right: none; }
.hstat-n { font-family: var(--font-d); font-size: 22px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 5px; }
.hstat-n .o { color: var(--orange); font-size: 15px; }
.hstat-l { font-family: var(--font-b); font-size: 9px; font-weight: 400; color: rgba(255,255,255,.32); letter-spacing: 1px; text-transform: uppercase; }
.scroll-hint {
  position: absolute; bottom: 24px; right: 20px; z-index: 3;
  display: flex; align-items: center; gap: 8px; animation: float 2.8s ease infinite;
}
.scroll-hint-txt { font-family: var(--font-d); font-size: 8px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.18); }
.scroll-hint-ic { width: 22px; height: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.25); font-size: 11px; }

@media (min-width: 700px) {
  .hero { padding: 130px 56px 68px; }
  .hero-ctarow { flex-direction: row; }
  .hstat-n { font-size: 28px; }
  .hstat-n .o { font-size: 18px; }
}

/* ════════════════════════════════════════
   PAGE HERO (pages intérieures)
   ════════════════════════════════════════ */

.ph {
  background: var(--noir); position: relative; overflow: hidden;
  padding: 140px 20px 56px;
}
.ph-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 10%, rgba(255,119,0,.09) 0%, transparent 60%),
    linear-gradient(155deg,#1a1a16 0%,#0A0A08 100%);
}
.ph-inner { position: relative; z-index: 2; max-width: 820px; }
.crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: var(--font-b); font-size: 11px; letter-spacing: 1px;
  color: rgba(255,255,255,.3); text-transform: uppercase; margin-bottom: 20px;
}
.crumb a { color: rgba(255,255,255,.45); text-decoration: none; }
.crumb a:hover { color: var(--orange); }
.crumb .sep { color: rgba(255,255,255,.18); }
.ph-title {
  font-family: var(--font-d); font-size: clamp(30px, 6.5vw, 60px);
  font-weight: 800; color: #fff; line-height: 1.02; letter-spacing: -1.2px;
  margin-bottom: 18px; text-wrap: balance;
}
.ph-title .acc { color: var(--orange); }
.ph-sub {
  font-family: var(--font-b); font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,.5); line-height: 1.85; max-width: 560px; margin-bottom: 30px;
}
.ph-ctarow { display: flex; flex-wrap: wrap; gap: 10px; }
.ph-badges { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 28px; }
.ph-badge {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-b); font-size: 12px; color: rgba(255,255,255,.42);
}
.ph-badge::before { content: '✓'; color: var(--orange); font-size: 10px; }
@media (min-width: 900px) { .ph { padding: 170px 56px 72px; } }

/* ════════════════════════════════════════
   TICKER
   ════════════════════════════════════════ */

.ticker-wrap { background: var(--orange); padding: 13px 0; overflow: hidden; }
.ticker-track { display: flex; animation: ticker 30s linear infinite; width: max-content; }
.ticker-item {
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.88); padding: 0 28px; white-space: nowrap;
  display: flex; align-items: center; gap: 28px;
}
.ticker-item::after { content: '✦'; opacity: .35; }

/* ════════════════════════════════════════
   SECTIONS GÉNÉRIQUES
   ════════════════════════════════════════ */

.s-intro { background: var(--creme); padding: 72px 20px; }
.intro-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,119,0,.1); border: 1px solid rgba(255,119,0,.2);
  border-radius: 100px; padding: 6px 14px;
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 22px;
}
.intro-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); animation: pulse-glow 2s ease infinite; flex-shrink: 0; }
.intro-h {
  font-family: var(--font-d); font-size: clamp(28px,5.5vw,50px);
  font-weight: 800; color: var(--noir); line-height: 1.08; letter-spacing: -.4px; margin-bottom: 20px; max-width: 660px;
  text-wrap: balance;
}
.intro-h em { font-style: italic; font-weight: 700; color: var(--gris-c); }
.intro-p { font-family: var(--font-b); font-size: 15px; font-weight: 300; color: var(--gris-f); line-height: 1.9; max-width: 560px; margin-bottom: 28px; }
.intro-p strong { color: var(--noir); font-weight: 500; }
.intro-p a { color: var(--orange-deep); }
.intro-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.itag {
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--gris-c); color: var(--gris-m);
  cursor: default; transition: all .2s;
}
.itag:hover, .itag.on { border-color: var(--orange); color: var(--orange-deep); background: rgba(255,119,0,.06); }
@media (min-width: 900px) { .s-intro { padding: 96px 56px; } }

/* Section texte + image */
.s-split { background: var(--blanc); padding: 72px 20px; }
.split-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; max-width: 1100px; margin: 0 auto; }
.split-img { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-txt h2 {
  font-family: var(--font-d); font-size: clamp(24px,4.5vw,36px); font-weight: 800;
  color: var(--noir); line-height: 1.1; letter-spacing: -.3px; margin-bottom: 16px; text-wrap: balance;
}
.split-txt p { font-family: var(--font-b); font-size: 14.5px; font-weight: 300; color: var(--gris-f); line-height: 1.9; margin-bottom: 14px; }
.split-txt p strong { color: var(--noir); font-weight: 500; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.check-list li {
  position: relative; padding-left: 26px;
  font-family: var(--font-b); font-size: 14px; color: var(--gris-f); line-height: 1.65;
}
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 700; }
.check-list li strong { color: var(--noir); font-weight: 500; }
@media (min-width: 900px) {
  .s-split { padding: 96px 56px; }
  .split-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}

/* ════════════════════════════════════════
   LOGOS
   ════════════════════════════════════════ */

.s-logos { background: var(--noir); padding: 52px 20px; border-top: 1px solid rgba(255,255,255,.04); }
.logos-eb { font-family: var(--font-d); font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.25); text-align: center; margin-bottom: 28px; display: block; }
.logos-grid { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; overflow: hidden; max-width: 1100px; margin: 0 auto; }
.logo-cell { display: flex; align-items: center; justify-content: center; padding: 28px 16px; border-right: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); transition: background .2s; }
.logo-cell:hover { background: rgba(255,255,255,.04); }
.logo-cell:nth-child(2n) { border-right: none; }
.logo-cell:nth-last-child(-n+2) { border-bottom: none; }
.logo-name { font-family: var(--font-d); font-size: 13px; font-weight: 700; color: rgba(255,255,255,.3); letter-spacing: 1px; text-transform: uppercase; text-align: center; transition: color .2s; }
.logo-cell:hover .logo-name { color: rgba(255,255,255,.6); }
@media (min-width: 600px) {
  .logos-grid { grid-template-columns: repeat(4,1fr); }
  .logo-cell:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.06); }
  .logo-cell:nth-child(4n) { border-right: none; }
  .logo-cell:nth-last-child(-n+4) { border-bottom: none; }
  .logo-cell:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.06); }
  .logo-cell:nth-last-child(-n+4) { border-bottom: none; }
}
@media (min-width: 900px) { .s-logos { padding: 72px 56px; } }

/* ════════════════════════════════════════
   SECTION HEADER (réutilisable)
   ════════════════════════════════════════ */

.sh { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 44px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.sh-n { font-family: var(--font-d); font-size: 56px; font-weight: 800; color: var(--creme-2); line-height: 1; flex-shrink: 0; }
.sh-n.dk { color: rgba(255,255,255,.05); }
.sh-t { flex: 1; }
.sh-eb { font-family: var(--font-d); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gris-m); display: block; margin-bottom: 6px; }
.sh-eb.or { color: var(--orange-deep); }
.sh-title { font-family: var(--font-d); font-size: clamp(24px,4.5vw,38px); font-weight: 800; color: var(--noir); line-height: 1.08; letter-spacing: -.3px; text-wrap: balance; }
.sh-title.lt { color: #fff; }
@media (min-width: 900px) { .sh-n { font-size: 76px; } }

/* ════════════════════════════════════════
   POURQUOI
   ════════════════════════════════════════ */

.s-pourquoi { background: var(--creme); padding: 72px 20px; }
.pq-wrap { max-width: 1100px; margin: 0 auto; }
.pq-top { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
.pq-big { background: var(--orange); border-radius: 14px; padding: 34px 28px; position: relative; overflow: hidden; }
.pq-big::before { content:''; position: absolute; top:-60px; right:-60px; width:200px; height:200px; border-radius:50%; background:rgba(255,255,255,.08); pointer-events:none; }
.pq-big-bg-num { font-family: var(--font-d); font-size: 80px; font-weight: 800; color: rgba(255,255,255,.12); line-height: 1; position: absolute; top: 12px; right: 20px; pointer-events:none; }
.pq-val { font-family: var(--font-d); font-size: 52px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; }
.pq-val sup { font-size: 28px; vertical-align: super; }
.pq-val-label { font-family: var(--font-d); font-size: 14px; font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: 6px; }
.pq-val-sub { font-family: var(--font-b); font-size: 12px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.65; }
.pq-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pq-mini { background: var(--blanc); border-radius: 14px; padding: 24px 20px; border: 1px solid var(--creme-2); transition: border-color .2s; }
.pq-mini:hover { border-color: var(--orange); }
.pq-mini-val { font-family: var(--font-d); font-size: 36px; font-weight: 800; color: var(--noir); line-height: 1; margin-bottom: 5px; }
.pq-mini-val .o { color: var(--orange); font-size: 22px; }
.pq-mini-label { font-family: var(--font-d); font-size: 12px; font-weight: 700; color: var(--gris-f); margin-bottom: 4px; }
.pq-mini-sub { font-family: var(--font-b); font-size: 11px; font-weight: 300; color: var(--gris-f); line-height: 1.6; }
.pq-args { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 10px; }
.parg { background: var(--blanc); border-radius: 12px; padding: 22px 22px; border: 1px solid var(--creme-2); display: flex; gap: 16px; align-items: flex-start; transition: border-color .25s, transform .25s; }
.parg:hover { border-color: var(--orange); transform: translateX(4px); }
.parg-ic { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,119,0,.08); border: 1px solid rgba(255,119,0,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.parg-ic svg { width: 15px; height: 15px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.parg-title { font-family: var(--font-d); font-size: 15px; font-weight: 700; color: var(--noir); margin-bottom: 4px; line-height: 1.25; }
.parg-desc { font-family: var(--font-b); font-size: 13px; font-weight: 300; color: var(--gris-f); line-height: 1.72; }
@media (min-width: 700px) {
  .pq-top { grid-template-columns: 1fr 1fr 1fr; }
  .pq-mini-grid { display: contents; }
  .pq-args { grid-template-columns: 1fr 1fr; }
  .s-pourquoi { padding: 96px 56px; }
}

/* ════════════════════════════════════════
   PRESTATIONS (cartes)
   ════════════════════════════════════════ */

.s-presta { background: var(--creme); padding: 72px 20px; }
.presta-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 1100px; margin: 0 auto; }
.pc { border-radius: 14px; background: var(--noir); position: relative; padding: 28px 24px; min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; text-decoration: none; }
.pc:hover { transform: translateY(-4px); box-shadow: 0 18px 52px rgba(0,0,0,.28); }
.pc-glow { position: absolute; top:-50px; right:-50px; width:180px; height:180px; border-radius:50%; background:radial-gradient(circle,rgba(255,119,0,.13) 0%,transparent 70%); pointer-events:none; transition:all .5s ease; }
.pc:hover .pc-glow { top:-20px; right:-20px; }
.pc-icon { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,119,0,.1); border: 1px solid rgba(255,119,0,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; animation: float 3.5s ease infinite; }
.pc-icon svg { width: 17px; height: 17px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pc-badge { display: inline-block; background: rgba(255,119,0,.12); color: var(--orange); font-family: var(--font-d); font-size: 8px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 10px; border: 1px solid rgba(255,119,0,.22); width: fit-content; }
.pc-titre { font-family: var(--font-d); font-size: 21px; font-weight: 700; color: #fff; line-height: 1.18; letter-spacing: -.2px; margin-bottom: 10px; }
.pc.feat .pc-titre { font-size: 26px; }
.pc-desc { font-family: var(--font-b); font-size: 13px; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.72; margin-bottom: 16px; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.pc-tag { font-family: var(--font-b); font-size: 10px; color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.1); padding: 3px 10px; border-radius: 100px; }
.pc-lien { font-family: var(--font-d); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 8px; transition: gap .25s; }
.pc:hover .pc-lien { gap: 14px; }
@media (min-width: 680px) {
  .presta-grid { grid-template-columns: 1fr 1fr; }
  .pc.feat { grid-column: 1/-1; min-height: 300px; }
  .s-presta { padding: 96px 56px; }
}

/* ════════════════════════════════════════
   FORMATS (pages prestations)
   ════════════════════════════════════════ */

.s-formats { background: var(--creme); padding: 72px 20px; }
.fmt-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 1100px; margin: 0 auto; }
.fmt-card {
  background: var(--blanc); border-radius: 14px; padding: 28px 26px;
  border: 1px solid var(--creme-2); transition: border-color .25s, transform .25s;
  display: flex; flex-direction: column; gap: 10px;
}
.fmt-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.fmt-badge { font-family: var(--font-d); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange-deep); }
.fmt-title { font-family: var(--font-d); font-size: 19px; font-weight: 700; color: var(--noir); line-height: 1.2; }
.fmt-desc { font-family: var(--font-b); font-size: 13.5px; font-weight: 300; color: var(--gris-f); line-height: 1.75; flex: 1; }
.fmt-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.fmt-tag { font-family: var(--font-b); font-size: 11px; color: var(--gris-f); border: 1px solid var(--creme-2); padding: 3px 11px; border-radius: 100px; }
@media (min-width: 760px) { .fmt-grid { grid-template-columns: repeat(3,1fr); } .s-formats { padding: 96px 56px; } }
.fmt-grid.two { max-width: 760px; }
@media (min-width: 760px) { .fmt-grid.two { grid-template-columns: repeat(2,1fr); } }

/* ════════════════════════════════════════
   AVIS
   ════════════════════════════════════════ */

.s-avis { background: var(--noir); padding: 72px 20px; }
.avis-wrap { max-width: 1100px; margin: 0 auto; }
.google-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 14px 20px; margin-bottom: 36px;
  text-decoration: none; transition: background .2s, border-color .2s;
  cursor: pointer;
}
.google-badge:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.gb-logo { width: 36px; height: 36px; background: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gb-stars { color: #FBBC05; font-size: 14px; letter-spacing: 1px; margin-bottom: 2px; }
.gb-score { font-family: var(--font-d); font-size: 15px; font-weight: 800; color: #fff; }
.gb-count { font-family: var(--font-b); font-size: 12px; font-weight: 300; color: rgba(255,255,255,.4); }
.gb-arrow { font-family: var(--font-d); font-size: 16px; color: rgba(255,255,255,.3); margin-left: auto; }
.avis-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.acard { background: var(--noir-3); border-radius: 14px; padding: 24px 22px; border: 1px solid rgba(255,255,255,.05); position: relative; transition: border-color .3s, transform .3s; }
.acard:hover { border-color: rgba(255,119,0,.2); transform: translateY(-2px); }
.acard-qdeco { font-family: var(--font-d); font-size: 52px; color: var(--orange); opacity: .09; position: absolute; top: 10px; left: 18px; line-height: 1; pointer-events: none; }
.acard-stars { color: var(--orange); font-size: 12px; letter-spacing: 2px; margin-bottom: 12px; position: relative; z-index: 1; }
.acard-txt { font-family: var(--font-d); font-size: 14px; font-style: italic; font-weight: 400; color: rgba(255,255,255,.72); line-height: 1.68; margin-bottom: 18px; position: relative; z-index: 1; }
.acard-author { display: flex; align-items: center; gap: 11px; }
.acard-av { width: 36px; height: 36px; border-radius: 50%; background: var(--anthracite); display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 11px; font-weight: 700; color: var(--orange); flex-shrink: 0; }
.acard-name { font-family: var(--font-d); font-size: 13px; font-weight: 700; color: #fff; }
.acard-role { font-family: var(--font-b); font-size: 11px; color: rgba(255,255,255,.55); margin-top: 2px; }
.acard-check { display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; font-family: var(--font-d); font-size: 8px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.22); }
.acard-check::before { content: '✓'; color: #22c55e; }
.avis-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 44px; text-align: center; }
.btn-avis { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-d); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; background: var(--orange); border: none; border-radius: 3px; padding: 15px 30px; cursor: pointer; text-decoration: none; box-shadow: 0 4px 22px rgba(255,119,0,.28); transition: all .2s; }
.btn-avis:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn-ghost { font-family: var(--font-b); font-size: 12px; color: rgba(255,255,255,.35); text-decoration: underline; text-decoration-color: rgba(255,255,255,.12); cursor: pointer; background: none; border: none; text-underline-offset: 3px; }
@media (min-width: 680px) {
  .avis-grid { grid-template-columns: 1fr 1fr; }
  .s-avis { padding: 96px 56px; }
}
@media (min-width: 1000px) { .avis-grid { grid-template-columns: repeat(3,1fr); } }
.avis-grid.two { grid-template-columns: 1fr; max-width: 760px; }
@media (min-width: 680px) { .avis-grid.two { grid-template-columns: 1fr 1fr; } }

/* ════════════════════════════════════════
   SHOWREEL
   ════════════════════════════════════════ */

.s-show { background: var(--blanc); padding: 72px 20px; }
.show-wrap { border-radius: 14px; overflow: hidden; position: relative; aspect-ratio: 16/9; background: var(--noir); border: 1px solid rgba(255,255,255,.05); cursor: pointer; display: flex; align-items: center; justify-content: center; margin-top: 36px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.show-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%,rgba(255,119,0,.07) 0%,transparent 70%), linear-gradient(160deg,#141410 0%,#0A0A08 100%); }
.show-thumb { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .45; transition: opacity .3s; }
.show-wrap:hover .show-thumb { opacity: .62; }
.show-play { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 13px; }
.play-btn { width: 66px; height: 66px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 22px; padding-left: 4px; box-shadow: 0 6px 34px rgba(255,119,0,.38); transition: transform .2s, box-shadow .2s; animation: pulse-glow 3.5s ease infinite; color: #fff; }
.show-wrap:hover .play-btn { transform: scale(1.1); box-shadow: 0 10px 50px rgba(255,119,0,.58); }
.play-lbl { font-family: var(--font-d); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.42); }
@media (min-width: 900px) { .s-show { padding: 96px 56px; } }

/* Lecteur vidéo vertical (showreel réel) */
.show-vert { max-width: 400px; margin: 36px auto 0; }
.show-vert video {
  width: 100%; aspect-ratio: 9/16; display: block;
  border-radius: 16px; background: var(--noir);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  object-fit: cover;
}
.show-caption {
  font-family: var(--font-b); font-size: 12.5px; font-weight: 300;
  color: var(--gris-f); text-align: center; margin-top: 14px; line-height: 1.7;
}

/* ════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════ */

.s-process { background: var(--noir); padding: 72px 20px; }
.proc-steps { display: flex; flex-direction: column; gap: 0; margin-top: 44px; position: relative; max-width: 1100px; margin-left: auto; margin-right: auto; }
.proc-line { position: absolute; left: 17px; top: 36px; bottom: 36px; width: 1px; background: linear-gradient(to bottom,rgba(255,119,0,.4),rgba(255,119,0,.05)); }
.proc-step { display: flex; gap: 22px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.06); position: relative; }
.proc-step:last-child { border-bottom: none; }
.step-n { width: 34px; height: 34px; border-radius: 50%; background: var(--noir-3); border: 2px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 13px; font-weight: 800; color: var(--orange); flex-shrink: 0; position: relative; z-index: 1; }
.step-title { font-family: var(--font-d); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 5px; line-height: 1.25; }
.step-desc { font-family: var(--font-b); font-size: 13px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.72; }
@media (min-width: 900px) {
  .proc-steps { flex-direction: row; }
  .proc-line { left: 60px; right: 60px; top: 17px; bottom: auto; width: auto; height: 1px; background: linear-gradient(to right,rgba(255,119,0,.4),rgba(255,119,0,.05)); }
  .proc-step { flex: 1; flex-direction: column; align-items: flex-start; padding: 0 18px; border-bottom: none; }
  .step-n { margin-bottom: 14px; }
  .s-process { padding: 96px 56px; }
}

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */

.s-faq { background: var(--creme); padding: 72px 20px; }
.faq-list { display: flex; flex-direction: column; margin-top: 44px; border: 1px solid var(--creme-2); border-radius: 14px; overflow: hidden; background: var(--blanc); max-width: 1100px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--creme-2); }
.faq-item:last-child { border-bottom: none; }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: transparent; border: none; cursor: pointer; text-align: left; transition: background .2s; }
.faq-btn:hover { background: var(--creme); }
.faq-item.op .faq-btn { background: var(--creme); }
.faq-q { font-family: var(--font-d); font-size: 15px; font-weight: 700; color: var(--noir); line-height: 1.3; text-align: left; }
.faq-ic { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--gris-c); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, border-color .2s, transform .3s; }
.faq-ic svg { width: 12px; height: 12px; stroke: var(--gris-m); fill: none; stroke-width: 2.5; stroke-linecap: round; transition: stroke .2s; }
.faq-item.op .faq-ic { background: var(--orange); border-color: var(--orange); transform: rotate(45deg); }
.faq-item.op .faq-ic svg { stroke: #fff; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-item.op .faq-body { max-height: 600px; }
.faq-ans { padding: 2px 22px 22px; font-family: var(--font-b); font-size: 14px; font-weight: 300; color: var(--gris-f); line-height: 1.84; }
.faq-ans strong { color: var(--noir); font-weight: 500; }
.faq-ans a { color: var(--orange-deep); }
@media (min-width: 900px) {
  .s-faq { padding: 96px 56px; }
  .faq-q { font-size: 16px; }
  .faq-ans { font-size: 15px; padding: 2px 24px 24px; }
  .faq-btn { padding: 22px 24px; }
}

/* ════════════════════════════════════════
   TARIF
   ════════════════════════════════════════ */

.s-tarif { background: var(--noir); padding: 72px 20px; }
.tarif-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 1100px; margin: 0 auto; }
.tarif-card {
  background: var(--noir-3); border-radius: 14px; padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .25s, transform .25s;
}
.tarif-card:hover { border-color: rgba(255,119,0,.25); transform: translateY(-3px); }
.tarif-card-featured {
  border-color: rgba(255,119,0,.3);
  background: linear-gradient(135deg, rgba(255,119,0,.06) 0%, var(--noir-3) 60%);
}
.tarif-badge {
  font-family: var(--font-d); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4);
}
.tarif-badge-orange {
  font-family: var(--font-d); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--orange);
}
.tarif-prestation { font-family: var(--font-d); font-size: 19px; font-weight: 700; color: #fff; line-height: 1.2; }
.tarif-prix { font-family: var(--font-b); font-size: 13px; font-weight: 300; color: rgba(255,255,255,.65); }
.tarif-prix span { font-family: var(--font-d); font-size: 22px; font-weight: 800; color: var(--orange); }
.tarif-desc { font-family: var(--font-b); font-size: 13px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.7; flex: 1; }
.tarif-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); text-decoration: none;
  margin-top: 4px; transition: gap .2s;
}
.tarif-card:hover .tarif-cta { gap: 10px; }
.tarif-note {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-b); font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.55); line-height: 1.7;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
@media (min-width: 680px) {
  .tarif-grid { grid-template-columns: repeat(3,1fr); }
  .s-tarif { padding: 96px 56px; }
}

/* ════════════════════════════════════════
   CONTACT FORM
   ════════════════════════════════════════ */

.s-cta { background: var(--creme); padding: 72px 20px; position: relative; }
.contact-inner { display: grid; grid-template-columns: 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; }
.contact-left { display: flex; flex-direction: column; gap: 20px; }
.cta-eb {
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange-deep); display: block;
}
.cta-title {
  font-family: var(--font-d); font-size: clamp(30px, 5vw, 52px); font-weight: 800;
  color: var(--noir); line-height: 1.05; letter-spacing: -1px; text-wrap: balance;
}
.cta-title em { font-style: italic; font-weight: 700; color: var(--gris-c); }
.cta-sub { font-family: var(--font-b); font-size: 15px; font-weight: 300; color: var(--gris-f); line-height: 1.8; max-width: 380px; }
.contact-direct { display: flex; flex-direction: column; gap: 8px; }
.contact-direct a {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-b); font-size: 14px; color: var(--gris-f); text-decoration: none;
  transition: color .2s;
}
.contact-direct a:hover { color: var(--orange-deep); }
.contact-direct svg { width: 15px; height: 15px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff;
  font-family: var(--font-d); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 26px; border-radius: 8px; text-decoration: none;
  width: fit-content; transition: background .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.25);
}
.wa-btn:hover { background: #20ba5a; transform: translateY(-1px); }
.contact-guarantees { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 4px; }
.cta-g { display: flex; align-items: center; gap: 7px; font-family: var(--font-b); font-size: 12px; color: var(--gris-m); }
.cta-g::before { content: '✓'; color: var(--orange); font-size: 10px; }
.contact-form-wrap {
  background: var(--blanc); border-radius: 16px; padding: 32px 28px;
  border: 1px solid var(--creme-2);
  box-shadow: 0 4px 40px rgba(0,0,0,.06);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-family: var(--font-d); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--gris-f);
}
.form-input {
  font-family: var(--font-b); font-size: 14px; font-weight: 400;
  color: var(--noir); background: var(--blanc);
  border: 1.5px solid var(--creme-2); border-radius: 8px;
  padding: 13px 16px; width: 100%; outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,119,0,.1); }
.form-input::placeholder { color: var(--gris-c); }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8580' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  font-family: var(--font-d); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--orange); color: #fff; border: none; border-radius: 8px;
  padding: 18px 32px; cursor: pointer; width: 100%;
  box-shadow: 0 4px 24px rgba(255,119,0,.3);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.form-submit:hover { background: var(--orange-deep); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(255,119,0,.45); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-success {
  display: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255,119,0,.06) 0%, transparent 60%),
    var(--blanc);
  border: 1px solid var(--creme-2);
  border-radius: 14px; padding: 40px 28px 34px;
  text-align: center;
  animation: fadeUp .5s ease both;
}
.fs-icon {
  width: 62px; height: 62px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 700;
  box-shadow: 0 8px 30px rgba(255,119,0,.35);
  animation: pulse-glow 2.5s ease infinite;
}
.fs-title {
  font-family: var(--font-d); font-size: 24px; font-weight: 800;
  color: var(--noir); letter-spacing: -.4px; margin-bottom: 10px;
}
.fs-txt { font-family: var(--font-b); font-size: 14.5px; font-weight: 300; color: var(--gris-f); line-height: 1.8; }
.fs-txt strong { color: var(--noir); font-weight: 500; }
.fs-sep { width: 40px; height: 2px; background: var(--creme-2); margin: 22px auto; border-radius: 2px; }
.fs-hint { font-family: var(--font-b); font-size: 12.5px; color: var(--gris-m); margin-bottom: 14px; }
.fs-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.fs-actions .wa-btn { width: auto; }
.fs-tel {
  font-family: var(--font-b); font-size: 13px; color: var(--gris-f);
  text-decoration: none;
}
.fs-tel:hover { color: var(--orange-deep); }
.form-legal { font-family: var(--font-b); font-size: 11px; font-weight: 300; color: var(--gris-f); line-height: 1.6; text-align: center; }
.form-legal a { color: var(--gris-f); }
@media (min-width: 900px) {
  .contact-inner { grid-template-columns: 1fr 1.2fr; align-items: start; }
  .s-cta { padding: 96px 56px; }
}

/* ════════════════════════════════════════
   BANDEAU CTA (pages intérieures)
   ════════════════════════════════════════ */

.band {
  background: var(--noir); padding: 72px 20px; text-align: center;
  position: relative; overflow: hidden;
}
.band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255,119,0,.1) 0%, transparent 60%);
  pointer-events: none;
}
.band-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.band-title {
  font-family: var(--font-d); font-size: clamp(26px,5vw,44px); font-weight: 800;
  color: #fff; line-height: 1.08; letter-spacing: -.6px; text-wrap: balance;
}
.band-title em { font-style: italic; color: var(--orange); }
.band-sub { font-family: var(--font-b); font-size: 14px; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.8; max-width: 440px; }
.band-ctarow { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
.band-note { font-family: var(--font-b); font-size: 12px; color: rgba(255,255,255,.5); }
@media (min-width: 900px) { .band { padding: 96px 56px; } }

/* ════════════════════════════════════════
   CONTENU ÉDITORIAL (pages locales, légal)
   ════════════════════════════════════════ */

.s-article { background: var(--blanc); padding: 64px 20px; }
.article-inner { max-width: 720px; margin: 0 auto; }
.article-inner h2 {
  font-family: var(--font-d); font-size: clamp(22px,4vw,30px); font-weight: 800;
  color: var(--noir); line-height: 1.15; letter-spacing: -.3px;
  margin: 40px 0 14px; text-wrap: balance;
}
.article-inner h2:first-child { margin-top: 0; }
.article-inner h3 { font-family: var(--font-d); font-size: 18px; font-weight: 700; color: var(--noir); margin: 28px 0 10px; }
.article-inner p { font-family: var(--font-b); font-size: 15px; font-weight: 300; color: var(--gris-f); line-height: 1.9; margin-bottom: 14px; }
.article-inner p strong { color: var(--noir); font-weight: 500; }
.article-inner a { color: var(--orange-deep); }
.article-inner ul { padding-left: 22px; margin-bottom: 14px; }
.article-inner li { font-family: var(--font-b); font-size: 14.5px; font-weight: 300; color: var(--gris-f); line-height: 1.85; margin: 6px 0; }
.article-inner li strong { color: var(--noir); font-weight: 500; }
@media (min-width: 900px) { .s-article { padding: 88px 56px; } }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */

.footer-main { background: var(--noir); padding: 56px 20px 48px; display: grid; grid-template-columns: 1fr; gap: 36px; }
.ft-logo { font-family: var(--font-d); font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.ft-logo span { color: var(--orange); }
.ft-logo img { height: 52px; width: auto; display: block; }
.ft-tagline { font-family: var(--font-b); font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.78; }
.ft-title { font-family: var(--font-d); font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.22); margin-bottom: 14px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-links a { font-family: var(--font-b); font-size: 13px; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.ft-links a:hover { color: var(--orange); }
.ft-social { display: flex; gap: 8px; margin-top: 16px; }
.soc { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all .2s; }
.soc svg { width: 14px; height: 14px; fill: rgba(255,255,255,.35); transition: fill .2s; }
.soc:hover { background: var(--orange); border-color: var(--orange); }
.soc:hover svg { fill: #fff; }
.footer-bot { background: rgba(0,0,0,.35); border-top: 1px solid rgba(255,255,255,.04); padding: 14px 20px; display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
.ft-copy { font-family: var(--font-b); font-size: 11px; color: rgba(255,255,255,.45); }
.ft-copy a { color: rgba(255,255,255,.55); text-decoration: none; }
.ft-copy a:hover { color: var(--orange); }
@media (min-width: 700px) {
  .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; padding: 72px 56px 56px; }
  .footer-bot { flex-direction: row; justify-content: space-between; padding: 14px 56px; }
}

/* ════════════════════════════════════════
   FLOATING CTA (mobile)
   ════════════════════════════════════════ */

.fl-cta { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 500; display: flex; gap: 8px; opacity: 0; transition: opacity .3s; pointer-events: none; white-space: nowrap; }
.fl-cta.vis { opacity: 1; pointer-events: auto; }
.fl-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-d); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 13px 22px; border-radius: 100px; border: none; cursor: pointer; text-decoration: none; box-shadow: 0 6px 28px rgba(0,0,0,.35); }
.fl-p { background: var(--orange); color: #fff; }
.fl-s { background: var(--blanc); color: var(--noir); }
@media (min-width: 900px) { .fl-cta { display: none; } }

/* Focus visible pour l'accessibilité */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--orange); outline-offset: 2px;
}

/* ════════════════════════════════════════
   EFFETS MODERNES
   ════════════════════════════════════════ */

/* ── Barre de progression de lecture ── */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--orange), #FFB347);
  z-index: 1001; pointer-events: none;
  box-shadow: 0 0 12px rgba(255,119,0,.5);
}

/* ── Effet shine sur les CTA principaux ── */
.btn-hp, .nav-cta, .form-submit, .btn-avis { position: relative; overflow: hidden; }
.btn-hp::after, .nav-cta::after, .form-submit::after, .btn-avis::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  animation: shine 4.5s ease infinite;
  pointer-events: none;
}
@keyframes shine {
  0%, 60% { left: -80%; }
  85%, 100% { left: 130%; }
}

/* ── Particules magiques dans le hero ── */
.hero-sparks { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.spark {
  position: absolute; bottom: -8px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  animation: rise linear infinite;
  box-shadow: 0 0 8px 1px rgba(255,119,0,.55);
}
.spark:nth-child(1) { left: 8%;  animation-duration: 9s;  animation-delay: 0s;   width: 3px; height: 3px; }
.spark:nth-child(2) { left: 22%; animation-duration: 12s; animation-delay: 2s; }
.spark:nth-child(3) { left: 37%; animation-duration: 8s;  animation-delay: 4s;   width: 2px; height: 2px; }
.spark:nth-child(4) { left: 55%; animation-duration: 11s; animation-delay: 1s;   width: 3px; height: 3px; }
.spark:nth-child(5) { left: 68%; animation-duration: 9s;  animation-delay: 5s; }
.spark:nth-child(6) { left: 81%; animation-duration: 13s; animation-delay: 3s;   width: 2px; height: 2px; }
.spark:nth-child(7) { left: 91%; animation-duration: 10s; animation-delay: 6s;   width: 3px; height: 3px; }
.spark:nth-child(8) { left: 47%; animation-duration: 14s; animation-delay: 7s;   width: 2px; height: 2px; }
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: .9; }
  50%  { transform: translateY(-52vh) translateX(14px); opacity: .5; }
  100% { transform: translateY(-104vh) translateX(-10px); opacity: 0; }
}

/* ── Symboles de cartes en filigrane sur les cards ── */
.fmt-card, .tarif-card { position: relative; overflow: hidden; }
.fmt-card::before, .tarif-card::before {
  position: absolute; top: -14px; right: -6px;
  font-size: 88px; line-height: 1;
  opacity: .05; pointer-events: none;
  font-family: Georgia, serif;
}
.fmt-card:nth-child(1)::before { content: '♥'; color: var(--orange-deep); }
.fmt-card:nth-child(2)::before { content: '♠'; color: currentColor; }
.fmt-card:nth-child(3)::before { content: '♦'; color: var(--orange-deep); }
.tarif-card:nth-child(1)::before { content: '♣'; color: #fff; opacity: .04; }
.tarif-card:nth-child(2)::before { content: '♥'; color: var(--orange); opacity: .07; }
.tarif-card:nth-child(3)::before { content: '♦'; color: #fff; opacity: .04; }

/* ── Tilt 3D sur les cartes prestations (desktop) ── */
@media (pointer: fine) {
  .pc { transform-style: preserve-3d; will-change: transform; }
  .pc.tilting { transition: none; }
}

/* ── Icônes des étapes process : halo ── */
.step-n { box-shadow: 0 0 0 0 rgba(255,119,0,.25); animation: pulse-glow 3s ease infinite; }

/* ── iOS : éviter le zoom auto sur les champs ── */
.form-input { font-size: 16px; }

/* ════════════════════════════════════════
   EASTER EGG · TOUR DE MAGIE CACHÉ 🪄
   ════════════════════════════════════════ */

.egg {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(6,6,5,.96); backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; transition: opacity .35s ease;
  overflow-y: auto;
}
.egg.on { opacity: 1; }
.egg-inner { max-width: 620px; width: 100%; text-align: center; position: relative; padding: 20px 0; }
.egg-close {
  position: fixed; top: 18px; right: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.6); font-size: 16px; cursor: pointer;
  transition: all .2s; z-index: 2;
}
.egg-close:hover { background: rgba(255,255,255,.12); color: #fff; }
.egg-eb {
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
  margin-bottom: 18px;
}
.egg h3 {
  font-family: var(--font-d); font-size: clamp(24px, 5vw, 40px); font-weight: 800;
  color: #fff; line-height: 1.15; letter-spacing: -.5px; margin-bottom: 28px;
  text-wrap: balance;
}
.egg h3 em { font-style: italic; color: var(--orange); }
.egg-sub { font-family: var(--font-b); font-size: 14px; font-weight: 300; color: rgba(255,255,255,.5); margin-bottom: 24px; line-height: 1.7; }
.egg-cards {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 32px; perspective: 800px;
}
.egg-card {
  width: 72px; height: 104px; border-radius: 8px;
  background: #FDFCFB; position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  animation: egg-deal .5s ease backwards;
  transition: transform .25s ease;
  user-select: none;
}
.egg-card:hover { transform: translateY(-8px) rotate(1deg); }
.egg-card:nth-child(1) { animation-delay: .05s; }
.egg-card:nth-child(2) { animation-delay: .13s; }
.egg-card:nth-child(3) { animation-delay: .21s; }
.egg-card:nth-child(4) { animation-delay: .29s; }
.egg-card:nth-child(5) { animation-delay: .37s; }
.egg-card:nth-child(6) { animation-delay: .45s; }
@keyframes egg-deal {
  from { transform: translateY(40px) rotateY(90deg); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.egg-card .r {
  position: absolute; top: 6px; left: 8px;
  font-family: Georgia, serif; font-size: 17px; font-weight: 700; line-height: 1.05;
  text-align: center;
}
.egg-card .r::after { content: attr(data-s); display: block; font-size: 15px; }
.egg-card .r2 { top: auto; left: auto; bottom: 6px; right: 8px; transform: rotate(180deg); }
.egg-card .big {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 40px;
}
.egg-card.red { color: #C0392B; }
.egg-card.black { color: #1a1a16; }
.egg-btn {
  font-family: var(--font-d); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--orange); color: #fff; border: none; border-radius: 4px;
  padding: 16px 34px; cursor: pointer; transition: all .2s;
  box-shadow: 0 4px 24px rgba(255,119,0,.35);
}
.egg-btn:hover { background: var(--orange-deep); transform: translateY(-2px); }
.egg-btn.ghost {
  background: transparent; border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6); box-shadow: none; margin-left: 10px;
}
.egg-btn.ghost:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.egg-think {
  width: 80px; height: 80px; margin: 0 auto 30px; border-radius: 50%;
  border: 2px solid rgba(255,119,0,.3); position: relative;
  animation: egg-pulse 1.2s ease infinite;
  display: flex; align-items: center; justify-content: center; font-size: 30px;
}
@keyframes egg-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,119,0,.35); }
  50%     { box-shadow: 0 0 0 24px rgba(255,119,0,0); }
}
.egg-ctarow { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; }
.egg .btn-hp { text-decoration: none; }
@media (max-width: 520px) {
  .egg-card { width: 56px; height: 82px; }
  .egg-card .big { font-size: 30px; }
  .egg-card .r { font-size: 13px; }
  .egg-card .r::after { font-size: 12px; }
}

/* ════════════════════════════════════════
   BLOG
   ════════════════════════════════════════ */
.post-card { text-decoration: none; color: inherit; }
.post-card .fmt-title { font-size: 17px; line-height: 1.3; }
.post-meta { font-family: var(--font-b); font-size: 12px; color: var(--gris-f); margin-top: 6px; }
.post-more { color: var(--orange-deep); font-weight: 500; }
.post-card:hover .post-more { text-decoration: underline; }
.author-box { display: flex; gap: 20px; align-items: center; }
.author-box img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; object-position: 60% 20%; flex-shrink: 0; }
.author-name { font-family: var(--font-d); font-weight: 700; font-size: 15px; color: var(--noir); margin-bottom: 4px; }
.author-box p { font-size: 14px; margin: 0; }
@media (max-width: 520px) { .author-box { flex-direction: column; align-items: flex-start; } }
.article-inner ul li strong { color: var(--noir); }

/* ════════════════════════════════════════
   BANDEAU COOKIES
   ════════════════════════════════════════ */
.ck {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1500;
  background: var(--noir-2); color: var(--creme);
  border: 1px solid rgba(255,255,255,.1); border-radius: 14px;
  padding: 16px 18px; display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 16px 50px rgba(0,0,0,.4);
  transform: translateY(20px); opacity: 0; transition: transform .3s, opacity .3s;
}
.ck.on { transform: none; opacity: 1; }
.ck-txt { font-family: var(--font-b); font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.75); }
.ck-txt strong { color: #fff; }
.ck-txt a { color: var(--orange); }
.ck-btns { display: flex; gap: 8px; }
.ck-btns button {
  font-family: var(--font-d); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 11px 18px; border-radius: 6px; cursor: pointer; border: 1px solid rgba(255,255,255,.18); background: transparent; color: rgba(255,255,255,.75);
}
.ck-ok { background: var(--orange) !important; border-color: var(--orange) !important; color: #fff !important; }
.ck-btns button:hover { filter: brightness(1.1); }
@media (min-width: 720px) {
  .ck { left: auto; right: 24px; bottom: 24px; max-width: 420px; flex-direction: row; align-items: center; }
  .ck-btns { flex-shrink: 0; }
}
@media (max-width: 899px) { .fl-cta.vis ~ .ck, .ck { bottom: 76px; } }
