/* =========================================================
   Propulsion Web — Site officiel
   Brand system v1.0 (mai 2026)
   ========================================================= */

:root{
  /* Palette */
  --bg-void:        #03060F;
  --bg-deep:        #060B1C;
  --bg-night:       #0A1228;
  --bg-elev:        #0F1A34;
  --bg-elev-2:      #142147;

  --line-soft:      rgba(120, 180, 255, 0.10);
  --line-mid:       rgba(120, 180, 255, 0.22);
  --line-strong:    rgba(120, 180, 255, 0.40);

  --ink-100:        #F2F8FF;
  --ink-200:        #C9D9F2;
  --ink-300:        #8AA4CC;
  --ink-400:        #5C7A9F;
  --ink-500:        #3D547A;

  --pw-blue-50:     #DCEEFF;
  --pw-blue-100:    #B4DBFF;
  --pw-blue-200:    #7BC0FF;
  --pw-blue-300:    #4FA8FF;
  --pw-blue-400:    #2B8BFF;
  --pw-blue-500:    #1A6FE6;
  --pw-blue-600:    #0F4DB3;
  --pw-blue-700:    #0A3380;

  --grad-primary:   linear-gradient(135deg, #4FA8FF 0%, #1A6FE6 60%, #0A3380 100%);
  --grad-glow:      radial-gradient(closest-side, rgba(79,168,255,0.40), rgba(79,168,255,0) 70%);
  --grad-thrust:    linear-gradient(180deg, #7BC0FF 0%, #2B8BFF 35%, #0F4DB3 100%);

  --r-xs: 4px; --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px;

  --shadow-sm: 0 0 0 1px rgba(79,168,255,0.20), 0 6px 24px -8px rgba(43,139,255,0.45);
  --shadow-md: 0 0 0 1px rgba(79,168,255,0.28), 0 12px 48px -12px rgba(43,139,255,0.55);
  --shadow-lg: 0 0 0 1px rgba(79,168,255,0.35), 0 24px 80px -16px rgba(43,139,255,0.65);

  --display: 'Orbitron', ui-sans-serif, system-ui;
  --body:    'Space Grotesk', ui-sans-serif, system-ui;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --container: 1280px;
  --nav-h: 72px;
}

*{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; background: var(--bg-void); color: var(--ink-100); font-family: var(--body); -webkit-font-smoothing: antialiased; }
html{ scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body{
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(43,139,255,0.18), transparent 60%),
    radial-gradient(1000px 700px at -10% 30%, rgba(15,77,179,0.20), transparent 60%),
    radial-gradient(900px 700px at 50% 110%, rgba(79,168,255,0.10), transparent 60%),
    var(--bg-void);
  min-height: 100vh; overflow-x: hidden;
}
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; }
img{ max-width: 100%; display: block; }

/* =========================================================
   AMBIENT BG
   ========================================================= */
.grid-bg{
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(79,168,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,168,255,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, #000 30%, transparent 80%);
  animation: gridDrift 80s linear infinite;
}
@keyframes gridDrift{ to{ background-position: 72px 72px, 72px 72px; } }

.stars{ position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.stars span{
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: #BFE5FF; box-shadow: 0 0 8px rgba(180,219,255,0.8);
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle{ 0%, 100%{ opacity: .15; transform: scale(.6); } 50%{ opacity: .85; transform: scale(1); } }

.wrap{ position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 50; display: flex; align-items: center;
  background: rgba(3,6,15,0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled{ border-color: var(--line-soft); background: rgba(3,6,15,0.78); }
.nav-inner{ width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand{ display: flex; align-items: center; gap: 12px; }
.brand img{ width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(79,168,255,0.5)); }
.brand .name{ font-family: var(--display); font-weight: 700; font-size: 14px; letter-spacing: .22em; color: var(--ink-100); }
.brand .name span{ color: var(--pw-blue-300); }
.nav-links{ display: flex; gap: 8px; align-items: center; }
.nav-links a{
  font-family: var(--body); font-size: 14px; font-weight: 500; color: var(--ink-200);
  padding: 10px 14px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-links a:hover{ color: var(--ink-100); background: rgba(79,168,255,0.06); }
.nav-actions{ display: flex; gap: 12px; align-items: center; }

.burger{ display: none; width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--line-mid); background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.burger span{ width: 18px; height: 2px; background: var(--ink-100); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav.open .burger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav.open .burger span:nth-child(2){ opacity: 0; }
.nav.open .burger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  position: relative; isolation: isolate; cursor: pointer; user-select: none;
  font-family: var(--display); font-size: 13px; letter-spacing: .12em; font-weight: 700; text-transform: uppercase;
  padding: 14px 26px; border-radius: 10px; border: 0; color: #fff;
  background: var(--grad-primary);
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 0 0 1px rgba(79,168,255,0.5), 0 8px 28px -8px rgba(43,139,255,0.7), inset 0 1px 0 rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  overflow: hidden;
}
.btn::after{
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.30) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform .7s ease; z-index: -1;
}
.btn:hover{ transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(79,168,255,0.7), 0 14px 38px -10px rgba(43,139,255,0.85), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn:hover::after{ transform: translateX(130%); }
.btn .arrow{ width: 14px; height: 10px; position: relative; }
.btn .arrow::before{ content: ""; position: absolute; left: 0; top: 50%; width: 14px; height: 1.5px; background: #fff; transform: translateY(-50%); }
.btn .arrow::after{ content: ""; position: absolute; right: 0; top: 50%; width: 7px; height: 7px; border-top: 1.5px solid #fff; border-right: 1.5px solid #fff; transform: translateY(-50%) rotate(45deg); }
.btn.ghost{ background: transparent; color: var(--pw-blue-200); box-shadow: 0 0 0 1px var(--line-strong); }
.btn.ghost:hover{ color: #fff; box-shadow: 0 0 0 1px var(--pw-blue-300), 0 8px 28px -8px rgba(43,139,255,0.4); }
.btn.soft{ background: rgba(43,139,255,0.10); color: var(--pw-blue-100); box-shadow: inset 0 0 0 1px rgba(79,168,255,0.3); }
.btn.soft:hover{ background: rgba(43,139,255,0.18); color: #fff; }
.btn.sm{ padding: 10px 18px; font-size: 11px; }
.btn:disabled{ opacity: .45; pointer-events: none; }

/* =========================================================
   SECTION SHELL
   ========================================================= */
section{ position: relative; z-index: 2; padding: 120px 0; }
.sec-tag{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .28em; color: var(--pw-blue-300);
  text-transform: uppercase; margin-bottom: 16px;
}
.sec-tag::before{ content: ""; width: 24px; height: 1px; background: var(--pw-blue-300); }
.sec-h2{
  font-family: var(--display); font-weight: 700; font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.04; letter-spacing: -0.01em; margin: 0 0 18px; color: var(--ink-100);
}
.sec-h2 .grad{ background: linear-gradient(135deg, #7BC0FF, #2B8BFF, #0F4DB3); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sec-lede{ font-size: 18px; line-height: 1.55; color: var(--ink-300); max-width: 640px; margin: 0; }
.sec-head{ margin-bottom: 64px; max-width: 760px; }

/* Reveal on scroll */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in{ opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: .08s; }
.reveal[data-delay="2"]{ transition-delay: .16s; }
.reveal[data-delay="3"]{ transition-delay: .24s; }
.reveal[data-delay="4"]{ transition-delay: .32s; }
.reveal[data-delay="5"]{ transition-delay: .40s; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 32px) 0 80px; overflow: hidden;
}
.hero-inner{ display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; width: 100%; }
.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(79,168,255,0.10); border: 1px solid rgba(79,168,255,0.30);
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em; color: var(--pw-blue-200);
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-eyebrow .dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--pw-blue-300); box-shadow: 0 0 10px var(--pw-blue-300); animation: pulseDot 1.8s ease-in-out infinite; }
@keyframes pulseDot{ 0%, 100%{ opacity: .6; transform: scale(.85); } 50%{ opacity: 1; transform: scale(1.1); } }

.hero h1{
  font-family: var(--display); font-weight: 800;
  font-size: clamp(44px, 6.4vw, 92px); line-height: .98; letter-spacing: -0.015em;
  margin: 0 0 24px; color: var(--ink-100);
}
.hero h1 .grad{
  background: linear-gradient(135deg, #7BC0FF 0%, #2B8BFF 50%, #0F4DB3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.hero h1 .grad.underline{ position: relative; }
.hero h1 .grad.underline::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px;
  background: var(--grad-primary); border-radius: 4px; box-shadow: 0 0 18px rgba(79,168,255,0.6);
  animation: underlineGrow 1.2s ease-out .3s both;
}
@keyframes underlineGrow{ from{ transform: scaleX(0); transform-origin: left; } to{ transform: scaleX(1); } }

.hero .lede{ font-size: 19px; line-height: 1.55; color: var(--ink-200); max-width: 560px; margin: 0 0 40px; }
.hero-ctas{ display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 540px; }
.hero-stat{ position: relative; }
.hero-stat .k{ font-family: var(--display); font-size: 36px; font-weight: 700; color: var(--ink-100); letter-spacing: .02em; line-height: 1; }
.hero-stat .k em{ font-style: normal; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stat .v{ font-family: var(--mono); font-size: 10px; letter-spacing: .22em; color: var(--ink-400); text-transform: uppercase; margin-top: 8px; }

.hero-visual{ position: relative; aspect-ratio: 1; max-width: 540px; justify-self: end; width: 100%; }
.hero-orb{
  position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(43,139,255,0.5), rgba(43,139,255,0) 70%);
  filter: blur(8px); animation: orbPulse 4s ease-in-out infinite;
}
@keyframes orbPulse{ 0%, 100%{ transform: scale(.92); opacity: .7; } 50%{ transform: scale(1); opacity: 1; } }

.hero-ring{
  position: absolute; inset: 0; border: 1px solid var(--line-mid); border-radius: 50%;
  animation: ringSpin 30s linear infinite;
}
.hero-ring::before, .hero-ring::after{
  content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--pw-blue-300); box-shadow: 0 0 16px var(--pw-blue-300);
}
.hero-ring::before{ top: -7px; left: 50%; transform: translateX(-50%); }
.hero-ring::after{ bottom: -7px; left: 50%; transform: translateX(-50%); background: var(--pw-blue-200); box-shadow: 0 0 16px var(--pw-blue-200); }
@keyframes ringSpin{ to{ transform: rotate(360deg); } }
.hero-ring.r2{ inset: 12%; animation-duration: 22s; animation-direction: reverse; opacity: .6; }
.hero-ring.r3{ inset: 22%; animation-duration: 16s; opacity: .45; }

.hero-logo{ position: absolute; inset: 18%; display: flex; align-items: center; justify-content: center; }
.hero-logo img{ width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 40px rgba(79,168,255,0.55)); }

.hero-data{
  position: absolute; padding: 8px 12px; background: rgba(10,18,40,0.7); border: 1px solid var(--line-mid);
  border-radius: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: .15em; color: var(--pw-blue-200);
  backdrop-filter: blur(8px); text-transform: uppercase;
}
.hero-data.d1{ top: 4%; right: -4%; }
.hero-data.d2{ bottom: 12%; left: -10%; }
.hero-data.d3{ top: 50%; right: -12%; transform: translateY(-50%); }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust{
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 28px 0; background: rgba(10,18,40,0.30);
}
.trust .wrap{ display: flex; align-items: center; gap: 48px; }
.trust .label{ font-family: var(--mono); font-size: 11px; letter-spacing: .25em; color: var(--ink-400); text-transform: uppercase; flex-shrink: 0; }
.trust .marquee{ flex: 1; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.trust .track{ display: flex; gap: 64px; animation: scrollX 30s linear infinite; width: max-content; }
.trust .track .item{ font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--ink-300); letter-spacing: .08em; opacity: .7; white-space: nowrap; }
.trust .track .item .dot{ display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--pw-blue-300); margin-right: 16px; vertical-align: middle; }
@keyframes scrollX{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* =========================================================
   SERVICES
   ========================================================= */
.svc-grid{ display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.svc{
  grid-column: span 4; position: relative; padding: 32px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-night), var(--bg-deep));
  border: 1px solid var(--line-mid); overflow: hidden;
  transition: transform .35s ease, border-color .35s ease; min-height: 280px;
}
.svc::before{
  content: ""; position: absolute; top: -40%; right: -30%; width: 80%; height: 200%;
  background: var(--grad-glow); opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.svc:hover{ transform: translateY(-4px); border-color: var(--line-strong); }
.svc:hover::before{ opacity: .6; }
.svc .icn{
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-deep));
  border: 1px solid var(--line-mid); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.svc .icn svg{ stroke: var(--pw-blue-300); }
.svc h3{ font-family: var(--display); font-size: 22px; font-weight: 700; margin: 0 0 10px; color: var(--ink-100); position: relative; z-index: 1; }
.svc p{ font-family: var(--body); font-size: 15px; line-height: 1.55; color: var(--ink-300); margin: 0 0 20px; position: relative; z-index: 1; }
.svc .more{ font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--pw-blue-300); text-transform: uppercase; position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; opacity: .8; transition: opacity .2s; }
.svc:hover .more{ opacity: 1; }
.svc .more::after{ content: ""; width: 16px; height: 1px; background: var(--pw-blue-300); }

/* =========================================================
   FORFAITS
   ========================================================= */
.plans{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan{
  position: relative; padding: 40px 32px 32px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-night), var(--bg-deep));
  border: 1px solid var(--line-mid); display: flex; flex-direction: column; gap: 24px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.plan:hover{ transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.plan.popular{
  border-color: rgba(79,168,255,0.45);
  background: linear-gradient(180deg, rgba(20, 33, 71, 0.9), var(--bg-deep));
  box-shadow: var(--shadow-md); transform: translateY(-8px);
}
.plan.popular:hover{ transform: translateY(-14px); }
.plan .ribbon{
  position: absolute; top: -12px; left: 32px; padding: 6px 14px; border-radius: 100px;
  background: var(--grad-primary); color: #fff;
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700;
  box-shadow: 0 6px 24px -6px rgba(43,139,255,0.7);
}
.plan .pname{ font-family: var(--display); font-size: 14px; letter-spacing: .25em; color: var(--pw-blue-300); text-transform: uppercase; font-weight: 700; }
.plan .ptag{ font-family: var(--body); font-size: 14px; color: var(--ink-300); margin: 4px 0 0; }
.plan .price{ display: flex; align-items: baseline; gap: 10px; }
.plan .price .val{ font-family: var(--display); font-size: 56px; font-weight: 800; line-height: 1; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan .price .cur{ font-family: var(--display); font-size: 22px; color: var(--ink-300); font-weight: 600; }
.plan .price .per{ font-family: var(--mono); font-size: 11px; color: var(--ink-400); letter-spacing: .15em; text-transform: uppercase; }
.plan .upkeep{ font-family: var(--mono); font-size: 11px; color: var(--ink-300); letter-spacing: .04em; padding: 8px 12px; border-radius: 8px; background: rgba(79,168,255,0.06); border: 1px solid var(--line-soft); }
.plan .upkeep strong{ color: var(--pw-blue-200); }
.plan ul.features{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan ul.features li{ display: flex; gap: 12px; font-size: 14.5px; line-height: 1.45; color: var(--ink-200); align-items: flex-start; }
.plan ul.features li::before{
  content: ""; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; margin-top: 2px;
  background: rgba(79,168,255,0.15); border: 1px solid rgba(79,168,255,0.4);
  background-image: linear-gradient(135deg, transparent 45%, var(--pw-blue-300) 45%, var(--pw-blue-300) 55%, transparent 55%);
  background-size: 200% 200%; background-position: center;
}
.plan ul.features li.muted{ color: var(--ink-400); }
.plan ul.features li.muted::before{ background: rgba(120,130,150,0.10); border-color: rgba(120,130,150,0.30); background-image: none; }
.plan .planbtn{ margin-top: 8px; }

.plans-note{ margin-top: 32px; text-align: center; font-family: var(--body); font-size: 14px; color: var(--ink-300); }
.plans-note strong{ color: var(--ink-100); }

.compare{
  margin-top: 64px; padding: 32px; border-radius: var(--r-lg);
  border: 1px solid var(--line-mid); background: var(--bg-night);
}
.compare h4{ font-family: var(--display); font-size: 18px; margin: 0 0 24px; color: var(--ink-100); letter-spacing: .04em; }
.compare-row{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; padding: 14px 0; border-bottom: 1px solid var(--line-soft); align-items: center; font-size: 14px; }
.compare-row:last-child{ border-bottom: 0; }
.compare-row .lbl{ font-family: var(--mono); font-size: 12px; color: var(--ink-300); letter-spacing: .05em; text-transform: uppercase; }
.compare-row .v{ font-family: var(--body); color: var(--ink-100); }
.compare-row .v.dim{ color: var(--ink-400); }
.compare-row.head .v{ font-family: var(--display); font-size: 12px; letter-spacing: .22em; color: var(--pw-blue-300); text-transform: uppercase; }

/* =========================================================
   PROCESSUS
   ========================================================= */
.process{ position: relative; }
.process-grid{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.process-grid::before{
  content: ""; position: absolute; top: 32px; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pw-blue-300) 20%, var(--pw-blue-300) 80%, transparent);
  opacity: .4;
}
.pstep{ position: relative; text-align: left; }
.pstep .num{
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-night); border: 1px solid var(--line-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--pw-blue-200);
  margin-bottom: 24px; position: relative; z-index: 1;
  transition: border-color .3s ease, transform .3s ease;
}
.pstep:hover .num{ border-color: var(--pw-blue-300); transform: scale(1.06); }
.pstep .num::after{
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px dashed var(--line-strong); opacity: .5;
  animation: ringSpin 12s linear infinite;
}
.pstep h4{ font-family: var(--display); font-size: 18px; margin: 0 0 8px; color: var(--ink-100); font-weight: 700; }
.pstep p{ font-family: var(--body); font-size: 13.5px; line-height: 1.5; color: var(--ink-300); margin: 0; }
.pstep .dur{ font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--pw-blue-300); text-transform: uppercase; margin-top: 12px; }

/* =========================================================
   RÉALISATIONS
   ========================================================= */
.work-grid{ display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.work{
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-mid); aspect-ratio: 4/3;
  transition: transform .35s ease, border-color .35s ease; cursor: pointer;
}
.work.lg{ grid-column: span 8; aspect-ratio: 16/9; }
.work.sm{ grid-column: span 4; }
.work .bg{
  position: absolute; inset: 0; background: var(--bg-night);
  background-image:
    linear-gradient(rgba(79,168,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,168,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.work .glow{
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, var(--g, rgba(43,139,255,0.45)), transparent 70%);
  opacity: .6; transition: opacity .35s, transform .35s;
}
.work:hover{ transform: translateY(-4px); border-color: var(--pw-blue-300); }
.work:hover .glow{ opacity: 1; transform: scale(1.05); }
.work .mock{
  position: absolute; left: 6%; top: 12%; right: 6%; bottom: 22%;
  border-radius: 10px; border: 1px solid var(--line-mid);
  background: linear-gradient(180deg, rgba(15,26,52,0.95), rgba(6,11,28,0.95));
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.work .mock::before{
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 22px;
  background: rgba(0,0,0,0.4); border-bottom: 1px solid var(--line-soft);
}
.work .mock::after{
  content: "● ● ●"; position: absolute; top: 4px; left: 10px; color: var(--ink-400); font-size: 8px; letter-spacing: 4px;
}
.work .mock-inner{
  position: absolute; top: 30px; left: 8%; right: 8%; bottom: 8%;
  display: grid; grid-template-rows: auto auto 1fr; gap: 8%;
}
.work .mock-inner .h{ height: 14px; background: linear-gradient(90deg, var(--pw-blue-200), var(--pw-blue-400)); border-radius: 4px; width: 60%; }
.work .mock-inner .l{ height: 6px; background: rgba(120,180,255,0.18); border-radius: 3px; width: 90%; }
.work .mock-inner .grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.work .mock-inner .grid div{ background: rgba(43,139,255,0.10); border: 1px solid rgba(43,139,255,0.20); border-radius: 6px; }
.work .meta{
  position: absolute; left: 24px; right: 24px; bottom: 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; z-index: 2;
}
.work .meta h4{ font-family: var(--display); font-size: 18px; margin: 0; color: var(--ink-100); font-weight: 700; }
.work .meta .cat{ font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--pw-blue-300); text-transform: uppercase; margin-bottom: 4px; }
.work .meta .pkg{
  padding: 4px 10px; border-radius: 100px; background: rgba(79,168,255,0.12); border: 1px solid rgba(79,168,255,0.3);
  font-family: var(--mono); font-size: 10px; letter-spacing: .15em; color: var(--pw-blue-200); text-transform: uppercase;
}

/* =========================================================
   POURQUOI NOUS
   ========================================================= */
.why-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-card{
  padding: 32px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-night), var(--bg-deep));
  border: 1px solid var(--line-mid); position: relative; overflow: hidden;
}
.why-card .num{ font-family: var(--display); font-size: 56px; font-weight: 800; line-height: 1; opacity: .12; color: var(--pw-blue-300); position: absolute; top: 24px; right: 32px; }
.why-card h4{ font-family: var(--display); font-size: 22px; margin: 0 0 12px; color: var(--ink-100); font-weight: 700; }
.why-card p{ font-family: var(--body); font-size: 15px; line-height: 1.55; color: var(--ink-300); margin: 0; max-width: 460px; }

/* =========================================================
   TÉMOIGNAGES
   ========================================================= */
.tests{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
.test{
  padding: 32px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-night), var(--bg-deep));
  border: 1px solid var(--line-mid); position: relative;
}
.test .quote-icn{ font-family: var(--display); font-size: 40px; line-height: 1; color: var(--pw-blue-300); opacity: .8; }
.test p.q{ font-family: var(--body); font-size: 16px; line-height: 1.55; color: var(--ink-100); margin: 8px 0 24px; }
.test .person{ display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.test .avatar{ width: 44px; height: 44px; border-radius: 50%; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--display); font-weight: 700; font-size: 16px; box-shadow: 0 0 0 2px rgba(79,168,255,0.25); }
.test .who{ display: flex; flex-direction: column; gap: 2px; }
.test .who .n{ font-family: var(--display); font-size: 14px; color: var(--ink-100); font-weight: 600; }
.test .who .r{ font-family: var(--mono); font-size: 11px; color: var(--ink-400); letter-spacing: .08em; }

/* =========================================================
   FAQ
   ========================================================= */
.faq{ max-width: 880px; margin: 0 auto; }
.qa{ border-bottom: 1px solid var(--line-soft); padding: 24px 0; cursor: pointer; }
.qa:first-child{ border-top: 1px solid var(--line-soft); }
.qa .q{ display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.qa .q .t{ font-family: var(--display); font-size: 18px; font-weight: 600; color: var(--ink-100); flex: 1; }
.qa .q .toggle{
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: transform .3s, border-color .3s;
  background: rgba(79,168,255,0.06); position: relative;
}
.qa .q .toggle::before, .qa .q .toggle::after{ content: ""; position: absolute; background: var(--pw-blue-200); border-radius: 2px; }
.qa .q .toggle::before{ width: 12px; height: 1.5px; }
.qa .q .toggle::after{ width: 1.5px; height: 12px; transition: transform .3s; }
.qa.open .q .toggle{ background: var(--grad-primary); border-color: transparent; }
.qa.open .q .toggle::before, .qa.open .q .toggle::after{ background: #fff; }
.qa.open .q .toggle::after{ transform: scaleY(0); }
.qa .a{ max-height: 0; overflow: hidden; transition: max-height .4s ease, margin-top .4s ease; }
.qa.open .a{ max-height: 400px; margin-top: 16px; }
.qa .a p{ margin: 0; color: var(--ink-300); font-size: 15px; line-height: 1.6; max-width: 720px; }

/* =========================================================
   SOUMISSION (multi-step form)
   ========================================================= */
.form-wrap{
  background: linear-gradient(180deg, var(--bg-night), var(--bg-deep));
  border: 1px solid var(--line-mid); border-radius: var(--r-xl);
  padding: 48px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.form-wrap::before{
  content: ""; position: absolute; top: -20%; right: -20%; width: 50%; height: 80%;
  background: var(--grad-glow); opacity: .35; pointer-events: none;
}
.form-progress{ display: flex; align-items: center; gap: 8px; margin-bottom: 32px; position: relative; z-index: 1; }
.form-progress .step-dot{
  flex: 1; height: 4px; border-radius: 4px; background: rgba(79,168,255,0.12);
  position: relative; overflow: hidden;
}
.form-progress .step-dot::after{
  content: ""; position: absolute; inset: 0; transform: scaleX(0); transform-origin: left;
  background: var(--grad-primary); transition: transform .5s ease;
}
.form-progress .step-dot.done::after{ transform: scaleX(1); }
.form-progress .step-dot.current::after{ transform: scaleX(0.5); }
.form-meta{
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--ink-400); text-transform: uppercase;
  margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center;
}
.form-meta .stepname{ color: var(--pw-blue-300); }

.form-q{ font-family: var(--display); font-size: 32px; font-weight: 700; color: var(--ink-100); margin: 0 0 12px; letter-spacing: -.01em; line-height: 1.15; }
.form-sub{ font-family: var(--body); font-size: 15px; color: var(--ink-300); line-height: 1.5; margin: 0 0 32px; max-width: 640px; }

.form-step{ display: none; position: relative; z-index: 1; }
.form-step.active{ display: block; animation: stepIn .5s ease; }
@keyframes stepIn{ from{ opacity: 0; transform: translateY(12px); } to{ opacity: 1; transform: none; } }

.opts{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.opts.cols-3{ grid-template-columns: repeat(3, 1fr); }
.opt{
  position: relative; padding: 22px; border-radius: var(--r-md);
  background: rgba(15,26,52,0.5); border: 1px solid var(--line-mid);
  cursor: pointer; transition: border-color .25s, background .25s, transform .25s;
  display: flex; gap: 16px; align-items: flex-start;
}
.opt:hover{ border-color: var(--line-strong); background: rgba(20,33,71,0.6); }
.opt input{ position: absolute; opacity: 0; pointer-events: none; }
.opt .indicator{
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--line-strong); background: rgba(79,168,255,0.06);
  transition: border-color .2s, background .2s; margin-top: 2px; position: relative;
}
.opt.check .indicator{ border-radius: 6px; }
.opt input:checked + .indicator{ border-color: var(--pw-blue-300); background: var(--grad-primary); box-shadow: 0 0 0 3px rgba(79,168,255,0.15); }
.opt input:checked + .indicator::after{
  content: ""; position: absolute; left: 7px; top: 3px; width: 6px; height: 11px;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg);
}
.opt:has(input:checked){ border-color: var(--pw-blue-300); background: rgba(43,139,255,0.10); }
.opt .body{ flex: 1; }
.opt .body .ot{ font-family: var(--display); font-size: 16px; font-weight: 600; color: var(--ink-100); margin: 0 0 4px; }
.opt .body .od{ font-family: var(--body); font-size: 13px; color: var(--ink-300); line-height: 1.4; margin: 0; }

.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field{ display: flex; flex-direction: column; gap: 8px; }
.field.full{ grid-column: span 2; }
.field label{ font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--ink-400); text-transform: uppercase; }
.field input, .field textarea, .field select{
  background: rgba(10,18,40,0.6); border: 1px solid var(--line-mid);
  border-radius: 10px; padding: 14px 16px; color: var(--ink-100);
  font-family: var(--body); font-size: 15px; outline: none;
  transition: border .2s, box-shadow .2s;
}
.field textarea{ min-height: 100px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder{ color: var(--ink-400); }
.field input:focus, .field textarea:focus, .field select:focus{ border-color: var(--pw-blue-300); box-shadow: 0 0 0 4px rgba(79,168,255,0.15); }

.form-nav{ display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line-soft); position: relative; z-index: 1; }

/* Recommendation result */
.reco{ text-align: center; padding: 16px 0; }
.reco .badge-anim{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(79,168,255,0.10); border: 1px solid rgba(79,168,255,0.30);
  font-family: var(--mono); font-size: 11px; letter-spacing: .25em; color: var(--pw-blue-200);
  text-transform: uppercase; margin-bottom: 24px;
}
.reco .badge-anim .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--pw-blue-300); box-shadow: 0 0 12px var(--pw-blue-300); animation: pulseDot 1.6s ease-in-out infinite; }
.reco h3{ font-family: var(--display); font-size: clamp(36px, 5vw, 56px); margin: 8px 0 12px; font-weight: 800; line-height: 1; }
.reco h3 .grad{ background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.reco .price-big{ font-family: var(--display); font-size: 24px; color: var(--ink-200); margin: 0 0 24px; letter-spacing: .04em; }
.reco .summary{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; text-align: left; }
.reco .summary .it{ padding: 18px; border-radius: var(--r-md); background: rgba(10,18,40,0.5); border: 1px solid var(--line-mid); }
.reco .summary .it .lab{ font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--ink-400); text-transform: uppercase; margin-bottom: 6px; }
.reco .summary .it .val{ font-family: var(--display); font-size: 16px; color: var(--ink-100); font-weight: 600; }
.reco .actions{ display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer{ position: relative; z-index: 2; padding: 96px 0 32px; border-top: 1px solid var(--line-soft); margin-top: 80px; }
.footer-cta{
  background: linear-gradient(135deg, rgba(15,77,179,0.25), rgba(43,139,255,0.10));
  border: 1px solid var(--line-strong); border-radius: var(--r-xl);
  padding: 56px; margin-bottom: 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.footer-cta::before{
  content: ""; position: absolute; right: -10%; bottom: -50%; width: 60%; height: 200%;
  background: var(--grad-glow); opacity: .5; pointer-events: none;
}
.footer-cta h3{ font-family: var(--display); font-size: clamp(28px, 3.4vw, 42px); margin: 0; font-weight: 700; max-width: 640px; line-height: 1.1; color: var(--ink-100); }
.footer-cta h3 .grad{ background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-cta .ctas{ display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

.footer-cols{ display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line-soft); }
.footer-cols .col h5{ font-family: var(--mono); font-size: 10px; letter-spacing: .25em; color: var(--ink-400); text-transform: uppercase; margin: 0 0 18px; }
.footer-cols .col ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-cols .col a{ font-size: 14px; color: var(--ink-200); transition: color .2s; }
.footer-cols .col a:hover{ color: var(--pw-blue-200); }
.footer-cols .brand-block .brand img{ width: 32px; height: 32px; }
.footer-cols .brand-block p{ font-size: 14px; line-height: 1.55; color: var(--ink-300); margin: 18px 0 0; max-width: 360px; }
.footer-bot{ padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-family: var(--mono); font-size: 11px; color: var(--ink-400); letter-spacing: .12em; }
.footer-bot a:hover{ color: var(--pw-blue-200); }

/* =========================================================
   IMPRESSION — n'imprimer que la feuille de soumission
   ========================================================= */
.print-holder{ display: none; }
@media print{
  @page{ margin: 14mm; }
  body.print-reco{ background: #fff !important; }
  body.print-reco > *:not(.print-holder){ display: none !important; }
  body.print-reco .print-holder{ display: block !important; }
  body.print-reco .print-holder *{
    color: #101828 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  body.print-reco .print-holder .grad{
    -webkit-text-fill-color: #0F4DB3 !important;
    color: #0F4DB3 !important;
    background: none !important;
  }
  body.print-reco .print-holder .badge-anim,
  body.print-reco .print-holder .actions{ display: none !important; }
  body.print-reco .print-holder .reco{ text-align: center; }
  body.print-reco .print-holder .summary .it{ border: 1px solid #d0d7e2 !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px){
  .hero{ min-height: auto; padding-top: calc(var(--nav-h) + 48px); }
  .hero-inner{ grid-template-columns: 1fr; gap: 48px; }
  .hero-visual{ justify-self: center; max-width: 380px; }
  .svc{ grid-column: span 6; }
  .plans{ grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan.popular{ transform: none; }
  .plan.popular:hover{ transform: translateY(-6px); }
  .process-grid{ grid-template-columns: 1fr 1fr; }
  .process-grid::before{ display: none; }
  .work.lg, .work.sm{ grid-column: span 12; }
  .why-grid, .tests, .opts.cols-3{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: 1fr 1fr; }
  .compare{ overflow-x: auto; }
  .compare-row{ grid-template-columns: 1.4fr 1fr 1fr 1fr; min-width: 640px; }
  .nav-inner{ gap: 16px; }
  .nav-links{ display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(3,6,15,0.95); backdrop-filter: blur(20px); flex-direction: column; padding: 24px; gap: 8px; border-bottom: 1px solid var(--line-soft); }
  .nav.open .nav-links{ display: flex; }
  .burger{ display: flex; }
}

@media (max-width: 720px){
  section{ padding: 80px 0; }
  .wrap{ padding: 0 20px; }
  .nav-inner{ padding: 0 20px; }
  .nav-actions .btn:not(.burger){ display: none; }
  .hero h1{ font-size: 44px; }
  .hero-stats{ grid-template-columns: 1fr 1fr; gap: 20px; }
  .svc{ grid-column: span 12; }
  .form-wrap{ padding: 28px 20px; }
  .opts, .form-grid{ grid-template-columns: 1fr; }
  .field.full{ grid-column: span 1; }
  .reco .summary{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: 1fr; }
  .footer-cta{ padding: 32px; }
  .trust .wrap{ flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   RÉALISATIONS — vraies captures, multi-tags, carte « à venir »
   ========================================================= */
.work .shot{
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .5s ease;
}
.work.has-img:hover .shot{ transform: scale(1.04); }
.work .shade{
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(3,6,15,0) 30%, rgba(3,6,15,.45) 62%, rgba(3,6,15,.92) 100%);
}
.work.has-img .glow{ opacity: 0; mix-blend-mode: screen; }
.work.has-img:hover .glow{ opacity: .4; }

/* Bouton loupe sur les cartes images */
.work.has-img .zoom-btn{
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,18,40,0.55); border: 1px solid var(--line-mid);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--pw-blue-100); cursor: pointer;
  opacity: 0; transform: scale(.85);
  transition: opacity .25s ease, transform .25s ease, background .25s ease, border-color .25s ease;
}
.work.has-img:hover .zoom-btn{ opacity: 1; transform: scale(1); }
.work.has-img .zoom-btn:hover{ background: var(--grad-primary); border-color: transparent; color: #fff; }
.work.has-img .zoom-btn svg{ width: 18px; height: 18px; }

/* Lightbox */
#lightbox{
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: 32px;
  background: rgba(3,6,15,0.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
#lightbox.open{ display: flex; animation: lbFade .25s ease; }
@keyframes lbFade{ from{ opacity: 0; } to{ opacity: 1; } }
#lightbox .lb-stage{
  position: relative; max-width: min(1100px, 92vw); max-height: 88vh;
  animation: lbZoom .3s cubic-bezier(.16,1,.3,1);
}
@keyframes lbZoom{ from{ opacity: 0; transform: scale(.94); } to{ opacity: 1; transform: none; } }
#lightbox img{
  display: block; max-width: 100%; max-height: 88vh; width: auto; height: auto;
  border-radius: var(--r-md); border: 1px solid var(--line-mid); box-shadow: var(--shadow-lg);
}
#lightbox .lb-cap{
  position: absolute; left: 0; right: 0; bottom: -34px; text-align: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-300);
}
#lightbox .lb-close{
  position: absolute; top: -16px; right: -16px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-night); border: 1px solid var(--line-mid); color: var(--ink-100);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--shadow-md); transition: background .2s ease, transform .2s ease;
}
#lightbox .lb-close:hover{ background: var(--grad-primary); transform: rotate(90deg); }
@media (max-width: 720px){
  #lightbox .lb-close{ top: -52px; right: 0; }
}

/* Plusieurs étiquettes empilées */
.work .pkgs{ display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.pkg.wip{
  background: rgba(255,179,64,0.14) !important;
  border-color: rgba(255,179,64,0.42) !important;
  color: #FFD79A !important;
  white-space: nowrap;
}

/* Carte « à venir » (sans image) */
.work.soon{
  grid-column: span 12; aspect-ratio: auto; min-height: 200px;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.work.soon .soon-inner{
  position: relative; z-index: 2; max-width: 580px; padding: 44px 28px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.work.soon .pkg.wip{
  padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(255,179,64,0.42);
  font-family: var(--mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
}
.work.soon h4{ font-family: var(--display); font-size: clamp(20px, 2.4vw, 26px); color: var(--ink-100); margin: 0; font-weight: 700; }
.work.soon p{ font-family: var(--body); font-size: 15px; line-height: 1.55; color: var(--ink-300); margin: 0; max-width: 500px; }
