/* ═══════════════════════════════════════════
   ARMORFIX — style.css
   Bleu marine + Orange | Syne + DM Sans
═══════════════════════════════════════════ */

/* ── VARIABLES & RESET ── */
:root {
  --navy:    #07182e;
  --navy2:   #0b2140;
  --navy3:   #0f2a52;
  --navy4:   #162f5c;
  --orange:  #ff6520;
  --orange2: #ff8040;
  --orange3: #ffa060;
  --glow:    rgba(255, 101, 32, 0.18);
  --white:   #eef3ff;
  --text:    #b8cce8;
  --text2:   #6d8db8;
  --card:    rgba(15, 42, 82, 0.7);
  --border:  rgba(255, 101, 32, 0.15);
  --radius:  20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

img, svg { display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* CANVAS */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, padding .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(7, 24, 46, .94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 14px 64px;
  box-shadow: 0 1px 0 rgba(255, 101, 32, .12);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -.02em;
  color: var(--white);
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .02em;
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 11px 26px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .87rem;
  letter-spacing: .04em;
  transition: transform .25s, box-shadow .25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,101,32,.4); }

/* ── BURGER BUTTON ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
  padding: 4px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s, width .3s;
  transform-origin: center;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7, 24, 46, .97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 80px 32px 48px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .35s cubic-bezier(.4,0,.2,1), transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  margin-bottom: 40px;
}
.mobile-link {
  display: block;
  padding: 18px 0;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: -.01em;
  text-align: center;
  border-bottom: 1px solid rgba(255,101,32,.1);
  width: 100%;
  transition: color .2s;
}
.mobile-link:first-child { border-top: 1px solid rgba(255,101,32,.1); }
.mobile-link:hover, .mobile-link:focus { color: var(--orange); }
.mobile-insta { display: flex; align-items: center; justify-content: center; gap: 10px; }
.mobile-cta { margin-top: 0; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  overflow: hidden;
  z-index: 2;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(15,42,82,.85) 0%, var(--navy) 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb1 { width: 520px; height: 520px; background: rgba(255,101,32,.11); top: -120px; right: -100px; animation: orbFloat1 14s ease-in-out infinite; }
.orb2 { width: 360px; height: 360px; background: rgba(11,33,64,.8); bottom: -80px; left: -80px; animation: orbFloat2 18s ease-in-out infinite; }
.orb3 { width: 280px; height: 280px; background: rgba(255,128,64,.07); top: 55%; left: 8%; animation: orbFloat3 11s ease-in-out infinite; }
@keyframes orbFloat1 { 0%,100%{ transform:translate(0,0) scale(1); } 50%{ transform:translate(-28px,38px) scale(1.06); } }
@keyframes orbFloat2 { 0%,100%{ transform:translate(0,0) scale(1); } 50%{ transform:translate(36px,-28px) scale(1.04); } }
@keyframes orbFloat3 { 0%,100%{ transform:translate(0,0); } 50%{ transform:translate(18px,22px); } }

.hero-content { position: relative; z-index: 3; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  
  border: 0px solid rgba(255,101,32,.22);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--orange3);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 34px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.4; transform:scale(.7); } }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.035em;
  margin-bottom: 30px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: slideUp .9s cubic-bezier(.16,1,.3,1) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: .4s; }
.hero h1 .line:nth-child(2) span { animation-delay: .6s; }
.hero h1 .line:nth-child(3) span { animation-delay: .8s; }
@keyframes slideUp { to { opacity:1; transform:translateY(0); } }

.accent {
  color: var(--orange);
  position: relative;
  display: inline-block;
  font-style: normal;
}
.accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--orange), var(--orange2));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 1s 1.4s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto 50px;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp .8s 1.0s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp .8s 1.2s forwards;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,101,32,.42); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.18);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: border-color .3s, background .3s, transform .25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-secondary:hover {
  border-color: rgba(255,101,32,.55);
  background: rgba(255,101,32,.07);
  transform: translateY(-3px);
}
.btn-arrow { width: 18px; height: 18px; transition: transform .3s; flex-shrink: 0; }
.btn-primary:hover .btn-arrow, .btn-secondary:hover .btn-arrow { transform: translateX(4px); }

.hero-stats {
  display: flex;
  gap: 52px;
  margin-top: 76px;
  opacity: 0;
  animation: fadeUp .8s 1.55s forwards;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-num span { color: var(--orange); }
.stat-label {
  font-size: .78rem;
  color: var(--text2);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}
.stat-div { width: 1px; height: 44px; background: rgba(255,255,255,.07); }

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp .8s 2.1s forwards;
  cursor: pointer;
  z-index: 3;
}
.scroll-hint span {
  font-size: .72rem;
  color: var(--text2);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{ opacity:.4; transform:scaleY(1); } 50%{ opacity:1; transform:scaleY(1.1); } }

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

/* ── BAND ── */
.band {
  position: relative;
  z-index: 2;
  background: var(--orange);
  overflow: hidden;
  padding: 16px 0;
}
.band-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: bandScroll 28s linear infinite;
  width: max-content;
}
.band-track span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.band-track .sep { color: rgba(255,255,255,.5); font-size: .7rem; }
@keyframes bandScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION BASE ── */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 0 64px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 22px; height: 1.5px; background: var(--orange); }

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-48px); transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(48px); transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .28s; }
.delay-4 { transition-delay: .38s; }
.delay-5 { transition-delay: .48s; }

/* ── SERVICES ── */
.services {
  padding: 130px 0;
  background: linear-gradient(to bottom, var(--navy) 0%, var(--navy2) 100%);
  position: relative;
  z-index: 2;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 68px;
  gap: 40px;
  flex-wrap: wrap;
}
.services-lead {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 360px;
  text-align: right;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .4s, box-shadow .4s;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,101,32,.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,101,32,.38);
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}

.service-card--featured {
  background: linear-gradient(160deg, rgba(22,47,92,.9) 0%, rgba(255,101,32,.12) 100%);
  border-color: rgba(255,101,32,.3);
}

.featured-badge {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--orange);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,101,32,.06);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.card-glow--featured { background: rgba(255,101,32,.14); }

.card-icon {
  width: 56px; height: 56px;
  background: rgba(255,101,32,.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--orange2);
  transition: background .3s, transform .3s;
}
.card-icon svg { width: 30px; height: 30px; }
.service-card:hover .card-icon { background: rgba(255,101,32,.18); transform: scale(1.08); }

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.card-text {
  color: var(--text);
  font-size: .93rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 34px;
}
.card-list li {
  color: var(--text2);
  font-size: .87rem;
  padding-left: 18px;
  position: relative;
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  opacity: .7;
}
.card-link {
  color: var(--orange);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s, color .3s;
}
.card-link span { transition: transform .3s; }
.card-link:hover { color: var(--orange2); }
.card-link:hover span { transform: translateX(5px); }

/* ── PROCESS ── */
.process {
  padding: 130px 0;
  background: linear-gradient(to bottom, var(--navy2) 0%, var(--navy3) 100%);
  position: relative;
  z-index: 2;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,101,32,.04) 0%, transparent 100%);
}
.process-header {
  text-align: center;
  margin-bottom: 80px;
}
.process-header .section-tag { justify-content: center; }
.process-header .section-tag::before { display: none; }

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 220px;
  position: relative;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,101,32,.08);
  line-height: 1;
  margin-bottom: -10px;
  letter-spacing: -.05em;
}
.step-icon {
  width: 70px; height: 70px;
  background: rgba(15,42,82,.8);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange2);
  transition: background .3s, border-color .3s, transform .35s;
  position: relative;
  z-index: 1;
}
.step-icon svg { width: 32px; height: 32px; }
.step:hover .step-icon {
  background: rgba(255,101,32,.12);
  border-color: rgba(255,101,32,.4);
  transform: translateY(-5px);
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.step p { color: var(--text); font-size: .88rem; line-height: 1.65; font-weight: 300; }

.step-connector {
  flex: 0 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 30px;
}
.connector-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, rgba(255,101,32,.4), rgba(255,101,32,.1));
}
.connector-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  opacity: .6;
  animation: dotBlink 2.5s ease-in-out infinite;
}
@keyframes dotBlink { 0%,100%{ opacity:.3; } 50%{ opacity:1; } }

/* ── POURQUOI ── */
.pourquoi {
  padding: 130px 0;
  background: linear-gradient(to bottom, var(--navy3) 0%, var(--navy2) 100%);
  position: relative;
  z-index: 2;
}
.pourquoi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.pourquoi-left .section-title { margin-bottom: 20px; }
.pourquoi-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}

.pourquoi-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  backdrop-filter: blur(12px);
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .35s, box-shadow .35s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,101,32,.35);
  box-shadow: 0 16px 50px rgba(0,0,0,.25);
}
.feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: rgba(255,101,32,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.feature-card:hover .feature-icon { background: rgba(255,101,32,.18); }
.feature-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-card p { color: var(--text); font-size: .85rem; line-height: 1.6; font-weight: 300; }

/* ── AVIS ── */
.avis {
  padding: 130px 0;
  background: linear-gradient(to bottom, var(--navy2) 0%, var(--navy) 100%);
  position: relative;
  z-index: 2;
}
.avis-header { text-align: center; margin-bottom: 72px; }
.avis-header .section-tag { justify-content: center; }
.avis-header .section-tag::before { display: none; }
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.avis-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .35s;
}
.avis-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,101,32,.3);
}
.stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.avis-card p {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.72;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 28px;
}
.avis-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy3), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.avis-author strong { display: block; font-size: .92rem; margin-bottom: 2px; }
.avis-author span { color: var(--text2); font-size: .82rem; }

/* ── CONTACT ── */
.contact {
  padding: 130px 0;
  background: linear-gradient(to bottom, var(--navy) 0%, var(--navy2) 100%);
  position: relative;
  z-index: 2;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(255,101,32,.05) 0%, transparent 100%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-sub {
  color: var(--text);
  font-size: .98rem;
  line-height: 1.75;
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 44px;
}
.contact-infos { display: flex; flex-direction: column; gap: 22px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon {
  width: 42px; height: 42px;
  background: rgba(255,101,32,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }
.contact-info-item strong { display: block; font-size: .88rem; font-weight: 500; margin-bottom: 3px; }
.contact-info-item span { color: var(--text2); font-size: .88rem; }

/* FORM */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  backdrop-filter: blur(16px);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text2);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(7,24,46,.6);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text2); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy3); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,101,32,.45);
  box-shadow: 0 0 0 3px rgba(255,101,32,.08);
}

/* success state */
.form-success {
  text-align: center;
  padding: 40px;
  animation: fadeUp .6s forwards;
}
.form-success .check {
  width: 64px; height: 64px;
  background: rgba(255,101,32,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
  font-size: 1.8rem;
}
.form-success h3 { font-family:'Syne',sans-serif; font-size:1.4rem; font-weight:700; margin-bottom:10px; }
.form-success p { color:var(--text); }

/* ── FOOTER ── */
.footer {
  background: #040f1e;
  padding: 72px 0 32px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,101,32,.1);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p {
  color: var(--text2);
  font-size: .9rem;
  line-height: 1.7;
  font-weight: 300;
}
.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-group strong {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.footer-links-group a {
  color: var(--text2);
  font-size: .88rem;
  transition: color .3s;
  font-weight: 300;
}
.footer-links-group a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { color: var(--text2); font-size: .83rem; }

/* ── LOGO NAVBAR ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  width: 100px;
  height: 100px;
  object-fit:contain;
  flex-shrink: 0;
}

/* ── LOGO HERO FLOTTANT ── */
.hero-logo-float {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 24vw, 360px);
  opacity: 0;
  animation: fadeUp 1.2s 1.4s forwards;
  pointer-events: none;
  z-index: 2;
}
.hero-logo-float img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 50px rgba(255,101,32,.15))
          drop-shadow(0 0 18px rgba(20,60,120,.35));
  animation: logoPulse 7s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { transform: translateY(0); filter: drop-shadow(0 0 50px rgba(255,101,32,.15)) drop-shadow(0 0 18px rgba(20,60,120,.35)); }
  50%      { transform: translateY(-12px); filter: drop-shadow(0 0 80px rgba(255,101,32,.25)) drop-shadow(0 0 28px rgba(20,60,120,.45)); }
}
@media (max-width: 1100px) { .hero-logo-float { display: none; } }

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp .8s 2s forwards;
  z-index: 3;
}
.scroll-hint span {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text2);
  font-weight: 500;
}
.scroll-line {
  width: 1.5px;
  height: 44px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  55%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid,
  .avis-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-lead { text-align: left; max-width: 100%; }
  .process-steps { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .step-connector { display: none; }
  .pourquoi-inner { grid-template-columns: 1fr; gap: 60px; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section-wrap { padding: 0 32px; }
  nav { padding: 20px 32px; }
  nav.scrolled { padding: 12px 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .pourquoi-right { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .hero h1 { font-size: clamp(2.6rem, 10vw, 4rem); }
}
/* ── AVANT / APRES ── */
.avantapres {
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--navy2) 0%, var(--navy3) 100%);
  position: relative;
  z-index: 2;
}
.aa-header { text-align: center; margin-bottom: 70px; }
.aa-lead { color: var(--text); font-size: 1rem; max-width: 500px; margin: 18px auto 0; line-height: 1.7; }
.aa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 1024px) { .aa-grid { grid-template-columns: 1fr; } }

.aa-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.aa-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.35); }

/* ─ SLIDER ─ */
.aa-slider {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
}

/* APRES — fond complet, image pleine largeur */
.aa-img--after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d2040 0%, #1a3a6e 100%);
  overflow: hidden;
}
.aa-img--after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* AVANT — masque glissant.
   Le conteneur change de width, mais l'image reste
   ancrée à gauche avec min-width = 100% du SLIDER (pas du conteneur).
   On utilise une largeur fixe via vw trick : on lui donne la
   largeur réelle du slider via une valeur absolue très large
   et on la contraint avec object-fit. */
.aa-img--before {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 50%; /* modifié par le JS */
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a14 0%, #1a1020 100%);
  z-index: 2;
}
.aa-img--before img {
  position: absolute;
  top: 0;
  left: 0;
  /* L'image occupe la largeur du SLIDER (pas du conteneur before).
     On la force avec width basée sur le parent via un trick :
     width = 100vw est trop grand, on utilise une valeur calculée.
     La vraie solution : width en px via JS, ou on utilise
     object-fit sur un conteneur de taille fixe. */
  height: 100%;
  width: auto;
  min-width: 100%;
  /* object-position left : l'image reste alignée à gauche
     même quand le conteneur rétrécit */
  object-fit:cover;
  object-position: left center;
  pointer-events: none;
  /* width fixe via la variable CSS mise à jour par le JS */
  width: var(--slider-width, 100%);
}

/* Badges */
.aa-img--after::after {
  content: 'Après';
  position: absolute; bottom: 10px; right: 12px;
  padding: 4px 12px;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #4a8cd8;
}
.aa-img--before::after {
  content: 'Avant';
  position: absolute; bottom: 10px; left: 12px;
  padding: 4px 12px; border-radius: 50px;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #ff8060;
}

/* Placeholders SVG */
.aa-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; pointer-events: none; z-index: 1;
}
.aa-placeholder svg { width: 64px; height: 64px; }
.aa-placeholder span { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .45; }
.aa-placeholder--after span { color: #6ab0ff; }
.aa-placeholder--before span { color: #ff6644; }

/* Poignée */
.aa-handle {
  position: absolute; top: 0; bottom: 0;
  display: flex; flex-direction: column; align-items: center;
  transform: translateX(-50%); z-index: 10; pointer-events: none;
}
.aa-line { flex: 1; width: 2px; background: rgba(255,255,255,.65); }
.aa-btn {
  width: 40px; height: 40px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.5); flex-shrink: 0;
}
.aa-btn svg { width: 18px; height: 18px; color: #07182e; }

/* Infos */
.aa-info { padding: 22px 24px 26px; }
.aa-tag {
  display: inline-block; background: rgba(255,101,32,.1); color: var(--orange3);
  border: 1px solid rgba(255,101,32,.2); border-radius: 50px;
  padding: 3px 12px; font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px;
}
.aa-info h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.aa-info p { color: var(--text); font-size: .88rem; line-height: 1.65; margin-bottom: 14px; }
.aa-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.aa-meta span { font-size: .76rem; color: var(--text2); font-weight: 500; }
.aa-cta { margin-top: 64px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.aa-cta p { color: var(--text); font-size: 1.05rem; }

/* Navbar centrée */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.nav-links { position: absolute; left: 50%; transform: translateX(-50%); }

/* Hero logo flottant */
.hero-logo-float {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: clamp(200px, 24vw, 360px); opacity: 0;
  animation: fadeUp 1.2s 1.4s forwards; pointer-events: none; z-index: 2;
}
.hero-logo-float img {
  width: 100%; height: auto;
  filter: drop-shadow(0 0 50px rgba(255,101,32,.15)) drop-shadow(0 0 18px rgba(20,60,120,.35));
  animation: logoPulse 7s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@media (max-width: 1100px) { .hero-logo-float { display: none; } }

/* ── CARD BUTTON "EN SAVOIR PLUS" ── */
.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 101, 32, 0.35);
  color: var(--orange3);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: .04em;
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
  text-decoration: none;
}
.card-btn:hover {
  background: rgba(255, 101, 32, 0.12);
  border-color: var(--orange);
  color: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 101, 32, .2);
}
.card-btn svg { transition: transform .25s; flex-shrink: 0; }
.card-btn:hover svg { transform: translateX(4px); }