/* ============================================================
   LP PAC PARTICULIERS — Neo Energie
   ============================================================ */

* { box-sizing: border-box; }
body { margin: 0; }

img { display: block; max-width: 100%; }

/* ---------- App container ---------- */
.lp {
  min-height: 100vh;
  background: var(--neo-blue-night);
  color: var(--neo-white);
  font-family: var(--font-body);
}

/* ============================================================
   NAV (sticky)
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 26, 45, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  height: 36px;
  width: auto;
  display: block;
}
/* .nav-tabs / .nav-tab : règles centralisées dans tokens.css
   (wrapper invisible au repos, rectangle jaune-vert au hover/actif) */
.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline-strong);
  transition: all var(--t-fast) var(--ease-out);
}
.nav-phone:hover { background: rgba(255,255,255,0.06); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-med) var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--neo-lime);
  color: var(--neo-blue-night);
}
.btn-primary:hover {
  background: var(--neo-white);
  box-shadow: var(--shadow-cta);
  transform: translateY(-1px);
}
.btn-primary:active { transform: scale(0.97); }
.btn-lg {
  font-size: 18px;
  padding: 18px 28px;
}
.btn-xl {
  font-size: 20px;
  padding: 22px 36px;
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--hairline-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--fg);
}
.btn-arrow {
  display: inline-block;
  transition: transform var(--t-med) var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   Section frame
   ============================================================ */
.section {
  padding: 96px 32px;
  position: relative;
}
.section-light {
  background: #F5F5F0;
  color: #1a1a1a;
}
.section-light h1, .section-light h2, .section-light h3 { color: #1a1a1a; }
.section-light p { color: #444444; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-narrow {
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neo-lime);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-light .eyebrow { color: #0D3A66; }

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0 0 24px;
  text-transform: none;
  text-wrap: balance;
}
.section-title em {
  font-style: normal;
  color: var(--neo-lime);
}
.section-light .section-title em { color: #0D3A66; }
.section-subtitle {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 0 48px;
  line-height: 1.5;
}
.section-light .section-subtitle { color: #555; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 32px 110px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% 0%, rgba(204, 244, 7, 0.08), transparent 60%),
    var(--neo-bg-gradient);
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(204, 244, 7, 0.12);
  border: 1px solid rgba(204, 244, 7, 0.28);
  color: var(--neo-lime);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neo-lime);
  box-shadow: 0 0 0 4px rgba(204, 244, 7, 0.2);
  animation: pulse 2s var(--ease-out) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(204, 244, 7, 0.2); }
  50%      { box-shadow: 0 0 0 9px rgba(204, 244, 7, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 1.15;
  margin: 0 0 28px;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: var(--neo-lime);
  display: block;
}
.hero-sub {
  font-size: 20px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0 0 36px;
  max-width: 540px;
}
.hero-sub mark {
  background: transparent;
  color: var(--neo-lime);
  font-weight: 600;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--fg-muted);
  flex-wrap: wrap;
}
.hero-stars { color: var(--neo-gold); letter-spacing: 1px; }
.hero-trust .sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--fg-faint);
}

/* Hero visual / photo card */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  align-self: stretch;
  border-radius: 24px;
  overflow: hidden;
  background: var(--neo-blue-night);
  border: 1.5px solid rgba(204, 244, 7, 0.55);
  box-shadow:
    0 0 0 1px rgba(204, 244, 7, 0.10),
    0 24px 60px -20px rgba(204, 244, 7, 0.18),
    0 30px 80px -30px rgba(0, 0, 0, 0.6);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,26,45,0.35) 0%, rgba(8,26,45,0) 22%, rgba(8,26,45,0) 60%, rgba(8,26,45,0.70) 100%),
    linear-gradient(135deg, rgba(8,26,45,0.20) 0%, rgba(8,26,45,0) 40%);
}

.hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--neo-blue-night);
  border: 1.5px solid var(--neo-lime);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-card);
}
.hero-badge .num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--neo-lime);
}
.hero-badge .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  max-width: 180px;
  line-height: 1.3;
}

.hero-floating {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(8, 26, 45, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.hero-floating .pill {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--neo-lime);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-floating strong { display: block; color: var(--fg); font-size: 14px; }
.hero-floating span { color: var(--fg-muted); font-size: 12px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar {
  background: var(--neo-blue-night);
  padding: 40px 32px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trustbar-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--hairline);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--neo-lime);
  margin-bottom: 8px;
}
.trust-lbl {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.35;
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================================
   SIMULATOR
   ============================================================ */
.simu-wrap {
  background: var(--neo-blue-night);
  padding: 96px 32px;
  position: relative;
}
.simu-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(204, 244, 7, 0.06), transparent 60%);
  pointer-events: none;
}
.simu {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(13, 58, 102, 0.4), rgba(8, 26, 45, 0.6));
  border: 2px solid var(--neo-lime);
  border-radius: var(--r-lg);
  padding: 56px 56px 48px;
  box-shadow: 0 24px 80px rgba(204, 244, 7, 0.08);
}
.simu-head {
  text-align: center;
  margin-bottom: 48px;
}
.simu-head .eyebrow {
  justify-content: center;
}
.simu-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin: 0 0 12px;
}
.simu-title em { color: var(--neo-lime); font-style: normal; }
.simu-sub {
  color: var(--fg-muted);
  font-size: 17px;
  margin: 0;
}

.simu-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.simu-step-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-faint);
}
.simu-step-dot .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-faint);
  transition: all var(--t-med) var(--ease-out);
}
.simu-step-dot.is-done .num,
.simu-step-dot.is-active .num {
  background: var(--neo-lime);
  border-color: var(--neo-lime);
  color: var(--neo-blue-night);
}
.simu-step-dot.is-active { color: var(--fg); }
.simu-step-dot.is-done { color: var(--fg-muted); }
.simu-progress .bar {
  width: 56px;
  height: 1px;
  background: var(--hairline);
}
.simu-progress .bar.is-done { background: var(--neo-lime); }

.simu-question { display: block; }
.simu-question h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 28px;
  text-align: center;
  color: var(--fg);
}
.simu-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.simu-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
  font-size: 16px;
  color: var(--fg);
  text-align: left;
}
.simu-option:hover {
  border-color: var(--neo-lime);
  background: rgba(204, 244, 7, 0.06);
}
.simu-option.is-selected {
  border-color: var(--neo-lime);
  background: rgba(204, 244, 7, 0.10);
}
.simu-option .ico {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(204, 244, 7, 0.12);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--neo-lime);
}
.simu-option.is-selected .ico {
  background: var(--neo-lime);
  color: var(--neo-blue-night);
}

.simu-input-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.simu-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.simu-input {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  font-family: var(--font-body);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  color: var(--fg);
  transition: all var(--t-fast) var(--ease-out);
}
.simu-input:focus {
  outline: none;
  border-color: var(--neo-lime);
  background: rgba(204, 244, 7, 0.04);
}

.simu-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.simu-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
}
.simu-trust span { display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.simu-trust .lock { color: var(--neo-lime); }

/* Result step */
.simu-result {
  text-align: center;
  padding: 16px 0;
}
.simu-result .estimate {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  color: var(--neo-lime);
  margin: 24px 0 8px;
}
.simu-result .estimate-lbl {
  font-size: 15px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}
.simu-result-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 32px;
  text-align: left;
}
.simu-result-card {
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
}
.simu-result-card .lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
  margin-bottom: 6px;
}
.simu-result-card .val {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--fg);
}
.simu-result-card .val.lime { color: var(--neo-lime); }

.simu-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 8px;
}
.simu-form-fields .full { grid-column: 1 / -1; }

/* --- New 5-question simulator additions --- */
.simu-question-sub {
  font-size: 14px;
  color: var(--fg-muted);
  margin: -4px 0 20px;
  max-width: 560px;
}

/* Compact dot-only progress (5 steps) */
.simu-progress-dots {
  gap: 0;
  margin-bottom: 36px;
}
.simu-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.simu-dot .num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--hairline);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  transition: all var(--t-med) var(--ease-out);
}
.simu-dot.is-active .num {
  background: var(--neo-lime);
  border-color: var(--neo-lime);
  color: var(--neo-blue-night);
  box-shadow: 0 0 0 4px rgba(204, 244, 7, 0.18);
}
.simu-dot.is-done .num {
  background: var(--neo-lime);
  border-color: var(--neo-lime);
  color: var(--neo-blue-night);
}
.simu-bar {
  width: 40px;
  height: 2px;
  background: var(--hairline);
  margin: 0 6px;
  border-radius: 2px;
  transition: background var(--t-med) var(--ease-out);
}
.simu-bar.is-done { background: var(--neo-lime); }

/* Radio-style answer list */
.simu-radios {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.simu-radio {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  color: var(--fg);
  font-family: inherit;
  transition: all var(--t-fast) var(--ease-out);
  animation: simuFade 240ms var(--ease-out) both;
}
.simu-radio:hover {
  border-color: var(--neo-lime);
  background: rgba(204, 244, 7, 0.06);
}
.simu-radio-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--hairline);
  flex-shrink: 0;
  position: relative;
  transition: all var(--t-fast) var(--ease-out);
}
.simu-radio:hover .simu-radio-dot { border-color: var(--neo-lime); }
.simu-radio.is-selected {
  border-color: var(--neo-lime);
  background: rgba(204, 244, 7, 0.10);
}
.simu-radio.is-selected .simu-radio-dot {
  border-color: var(--neo-lime);
  background: var(--neo-lime);
  box-shadow: inset 0 0 0 4px var(--neo-blue-night);
}
.simu-radio-lbl { line-height: 1.35; }

/* Final form: callback time slots */
.simu-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.simu-slot {
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-md);
  color: var(--fg);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  transition: all var(--t-fast) var(--ease-out);
}
.simu-slot:hover {
  border-color: var(--neo-lime);
  background: rgba(204, 244, 7, 0.06);
}
.simu-slot.is-selected {
  border-color: var(--neo-lime);
  background: rgba(204, 244, 7, 0.14);
  color: var(--fg);
  font-weight: 600;
}

.simu-final-head { text-align: center; margin-bottom: 28px; }
.simu-final-head h4 { font-size: 24px; margin-bottom: 10px; }
.simu-final-head .simu-question-sub { margin-inline: auto; }

.simu-rgpd {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}
.simu-rgpd .lock { color: var(--neo-lime); flex-shrink: 0; }

/* Thank-you state */
.simu-thanks {
  text-align: center;
  padding: 24px 0 8px;
  animation: simuFade 320ms var(--ease-out) both;
}
.simu-thanks-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--neo-lime);
  color: var(--neo-blue-night);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px rgba(204, 244, 7, 0.18);
}
.simu-thanks h4 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--fg);
}
.simu-thanks p {
  color: var(--fg-muted);
  font-size: 16px;
  margin: 0 auto 8px;
  max-width: 520px;
  line-height: 1.55;
}
.simu-thanks-meta { font-size: 13px !important; color: var(--fg-faint) !important; }

/* Soft transitions between questions */
.simu-question { animation: simuFade 280ms var(--ease-out) both; }
@keyframes simuFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   3 BENEFITS
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  padding: 40px 32px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(8, 26, 45, 0.12);
}
.benefit-card .num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: rgba(8, 26, 45, 0.08);
  margin-bottom: 16px;
}
.benefit-card .num strong {
  color: var(--neo-blue-night);
  font-weight: 400;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--neo-blue-night);
}
.benefit-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.benefit-card .ico {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--neo-lime);
  display: grid;
  place-items: center;
  color: var(--neo-blue-night);
}
.benefit-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neo-blue-night);
  background: var(--neo-lime);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* ============================================================
   PROCESS — 4 steps
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 56px;
  position: relative;
  margin-top: 56px;
  max-width: 1080px;
  margin-inline: auto;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--neo-blue-night);
  opacity: 0.1;
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.process-step .circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--neo-blue-night);
  color: var(--neo-lime);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 24px;
  border: 4px solid #F5F5F0;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
  margin: 0 0 8px;
  color: var(--neo-blue-night);
}
.process-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  margin: 0 0 12px;
}
.process-step .duration {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neo-blue-night);
  background: var(--neo-lime);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  display: inline-block;
}
.process-banner {
  margin-top: 56px;
  padding: 22px 28px;
  background: var(--neo-blue-night);
  color: var(--fg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  font-size: 16px;
}
.process-banner .ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--neo-lime);
  color: var(--neo-blue-night);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.process-banner strong { color: var(--neo-lime); }

/* ============================================================
   REALISATIONS
   ============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.case-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-med) var(--ease-out);
}
.case-card:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-2px);
}
.case-photo {
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, rgba(13, 58, 102, 0.8), rgba(8, 26, 45, 0.95)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px);
  position: relative;
  display: grid;
  place-items: center;
  color: var(--fg-faint);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case-photo .case-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--neo-lime);
  color: var(--neo-blue-night);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.case-photo.has-image {
  background: var(--neo-blue-night);
}
.case-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.case-photo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8,26,45,0) 50%, rgba(8,26,45,0.65) 100%);
  z-index: 1;
}
.case-photo .case-num {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: rgba(255,255,255,0.06);
}
.case-body {
  padding: 28px;
}
.case-body h4 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
  margin: 0 0 4px;
  color: var(--fg);
}
.case-body .case-profile {
  font-size: 15px;
  color: var(--fg-muted);
  margin: 0 0 12px;
  font-weight: 500;
}
.case-body .meta {
  font-size: 13px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.case-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 20px;
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.case-specs .row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.case-specs .row .lbl { color: var(--fg-muted); }
.case-specs .row .val { color: var(--fg); font-weight: 600; }
.case-specs .row .val.lime { color: var(--neo-lime); }
.case-quote {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-muted);
  font-style: italic;
  position: relative;
  padding-left: 16px;
}
.case-quote::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--neo-lime);
}

/* ============================================================
   TESTIMONIALS — auto-scroll marquee
   ============================================================ */
.testi-wrap {
  overflow: hidden;
  margin: 0 -32px;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testi-card {
  width: 360px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 24px;
}
.testi-card .stars {
  color: var(--neo-gold);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}
.testi-card p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 16px;
  color: var(--fg);
}
.testi-card .who {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.testi-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.testi-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--fg-muted);
}
.testi-trust .big {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--neo-lime);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border-bottom: 1px solid rgba(8, 26, 45, 0.12);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 8px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--neo-blue-night);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: color var(--t-fast) var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--neo-blue-marine); }
.faq-item summary .plus {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--neo-blue-night);
  color: var(--neo-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  font-family: system-ui, sans-serif;
  text-indent: 0;
  padding: 0;
  transition: transform var(--t-med) var(--ease-out);
}
.faq-item summary .plus > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 22px;
  font-weight: 400;
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-answer {
  padding: 0 8px 28px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  max-width: 720px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  text-align: center;
  background:
    radial-gradient(1000px 500px at 50% 100%, rgba(204, 244, 7, 0.10), transparent 60%),
    var(--neo-bg-gradient);
  padding: 120px 32px;
}
.final h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.96;
  margin: 0 0 20px;
  text-wrap: balance;
}
.final h2 em { font-style: normal; color: var(--neo-lime); }
.final p {
  font-size: 19px;
  color: var(--fg-muted);
  margin: 0 0 36px;
}
.final-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-phone {
  font-size: 14px;
  color: var(--fg-muted);
}
.final-phone a {
  color: var(--neo-lime);
  text-decoration: none;
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: #050F1B;
  padding: 80px 32px 32px;
  color: var(--fg-muted);
}
.foot-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline);
}
.foot-brand img { height: 32px; width: auto; display: block; margin-bottom: 16px; }
.foot-brand p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-faint);
  max-width: 280px;
}
.foot-col h5 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 18px;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot-col a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--t-fast) var(--ease-out);
}
.foot-col a:hover { color: var(--neo-lime); }
.foot-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-faint);
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bottom .badges {
  display: flex;
  gap: 16px;
  align-items: center;
}
.foot-bottom .badges img { height: 28px; opacity: 0.7; }

/* ============================================================
   Tweaks panel polish (works alongside starter)
   ============================================================ */
.tw-help {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .section { padding: 72px 24px; }
  .hero { padding: 56px 24px 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 1 / 1; max-width: 560px; align-self: center; }
  .nav-inner { grid-template-columns: auto auto; }
  .nav-tabs { grid-column: 1 / -1; order: 3; margin: 0; }
  .trustbar-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .trust-item:nth-child(2) { border-right: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .process-grid::before { display: none; }
  .cases-grid { grid-template-columns: 1fr; }
  .simu { padding: 32px 24px; }
  .simu-options { grid-template-columns: 1fr; }
  .simu-result-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .nav-actions .nav-phone span { display: none; }
  .hero-title { font-size: 44px; }
  .trustbar-grid { grid-template-columns: 1fr 1fr; }
  .trust-num { font-size: 40px; }
  .foot-grid { grid-template-columns: 1fr; }
  .simu { padding: 28px 20px; }
  .simu-form-fields { grid-template-columns: 1fr; }
  .simu-slots { grid-template-columns: 1fr; }
  .simu-bar { width: 20px; margin: 0 4px; }
  .simu-dot .num { width: 28px; height: 28px; font-size: 12px; }
  .simu-radio { padding: 14px 14px; font-size: 15px; }
  .simu-thanks h4 { font-size: 24px; }
  .simu-final-head h4 { font-size: 20px; }
  /* #4 — boutons navigation simu : éviter le débordement du cadre vert */
  .simu-actions {
    flex-wrap: wrap;
    gap: 12px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .simu-actions .btn {
    flex: 1 1 100% !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: break-word;
    box-sizing: border-box;
  }
  /* Bouton submit : éviter le débordement sur petits écrans */
  .simu-actions [data-simu-submit] {
    font-size: 13px !important;
    padding: 14px 12px !important;
    line-height: 1.25 !important;
    gap: 6px !important;
  }
  .simu-actions [data-simu-submit] .btn-arrow { font-size: 1em; }
}

/* ============================================================
   MOBILE TOUCH TARGETS — WCAG / Apple HIG (>= 44px)
   Toutes les cibles cliquables doivent atteindre 44px de hauteur
   sur mobile. On ne touche pas aux paddings d'équilibre visuel,
   on ajoute uniquement un min-height de sécurité.
   ============================================================ */
@media (max-width: 768px) {
  .nav-tab,
  .nav-phone,
  .btn,
  .simu-option,
  .simu-radio,
  .simu-slot,
  .home-pro-cta,
  .faq-item summary {
    min-height: 44px;
  }
  /* Inputs et selects au pouce */
  .simu-input,
  .simu-postcode-input,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    min-height: 44px;
  }
}
