/* ──────────────────────────────────────────────────────────────
   PATRICK ALMEIDA · ESTIMATION LYON
   Art direction: warm "soir lyonnais" — nuit bleu-vert, lumière laiton.
   ────────────────────────────────────────────────────────────── */

:root {
  /* Surfaces — nuit lyonnaise */
  --bg:           #F5F1EA;          /* parchemin chaud */
  --surface:      #FBF8F2;
  --surface-2:    #FFFFFF;
  --ink:          #0E1A14;          /* vert très sombre, presque noir */
  --ink-soft:     #2A3530;
  --muted:        #6B7570;
  --faint:        #B4BAB6;
  --line:         rgba(14, 26, 20, 0.12);
  --line-soft:    rgba(14, 26, 20, 0.06);

  /* Accent — laiton brossé */
  --accent:        #B8894A;
  --accent-hover:  #9D6F33;
  --accent-soft:   rgba(184, 137, 74, 0.10);
  --accent-ring:   rgba(184, 137, 74, 0.35);

  /* Semantic */
  --success: #2E7D5B;
  --danger:  #B04141;

  /* Type — Satoshi everywhere, Gambarino for editorial display */
  --font-sans: 'Satoshi', system-ui, -apple-system, sans-serif;
  --font-display: 'Gambarino', 'Satoshi', serif;

  /* Spacing */
  --gutter: clamp(20px, 5vw, 32px);
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:   180ms var(--ease-out);
  --t-med:    280ms var(--ease-out);

  /* Shadows — warm */
  --shadow-sm: 0 1px 2px rgba(14, 26, 20, 0.05), 0 1px 1px rgba(14, 26, 20, 0.03);
  --shadow-md: 0 8px 24px -8px rgba(14, 26, 20, 0.18), 0 2px 6px rgba(14, 26, 20, 0.04);
  --shadow-lg: 0 24px 60px -20px rgba(14, 26, 20, 0.25);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-feature-settings: 'ss01', 'ss02', 'tnum';
  -webkit-tap-highlight-color: transparent;
}

/* ───── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: radial-gradient(120% 80% at 50% 0%, #1a2c22 0%, #0E1A14 55%, #0a130e 100%);
  color: #F5F1EA;
  padding: 18px var(--gutter) clamp(56px, 12vw, 96px);
  overflow: hidden;
  isolation: isolate;
}
.hero__glow {
  position: absolute;
  inset: -30% -30% auto -30%;
  height: 70%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(184, 137, 74, 0.28), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.hero__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(36px, 8vw, 64px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F5F1EA;
}
.brand__mark {
  color: var(--accent);
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.brand__role { font-size: 11.5px; color: rgba(245, 241, 234, 0.55); letter-spacing: 0.02em; }
.hero__phone {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.08);
  border: 1px solid rgba(245, 241, 234, 0.12);
  color: #F5F1EA;
  transition: background var(--t-fast), transform var(--t-fast);
}
.hero__phone:hover { background: rgba(184, 137, 74, 0.2); transform: translateY(-1px); }
.hero__phone:active { transform: translateY(0); }

.hero__inner { max-width: 640px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(245, 241, 234, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(245, 241, 234, 0.06);
  border: 1px solid rgba(245, 241, 234, 0.1);
  border-radius: 100px;
  margin-bottom: 28px;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(184, 137, 74, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 8.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: clamp(16px, 4.2vw, 18px);
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.75);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__cta { margin-bottom: 40px; }

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 241, 234, 0.1);
}
.hero__trust li {
  display: flex; flex-direction: column; gap: 2px;
}
.hero__trust strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 400;
  color: #F5F1EA;
  letter-spacing: -0.02em;
}
.hero__trust strong span { color: var(--accent); font-size: 0.7em; margin-left: 2px; }
.hero__trust li > span {
  font-size: 11px;
  color: rgba(245, 241, 234, 0.55);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ───── CTA BUTTONS ──────────────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), color var(--t-fast);
  min-height: 52px;
  white-space: nowrap;
}
.cta--primary {
  background: var(--accent);
  color: #0E1A14;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15), 0 12px 32px -8px rgba(184, 137, 74, 0.5);
}
.cta--primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.cta--primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(184, 137, 74, 0.3); }
.cta--ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}
.cta--ghost:hover { background: rgba(14, 26, 20, 0.05); }
.section--dark .cta--ghost:hover { background: rgba(245, 241, 234, 0.06); }
.cta--full { width: 100%; }

/* ───── SECTIONS ─────────────────────────────────────────────── */
.section {
  padding: clamp(64px, 14vw, 104px) var(--gutter);
}
.section--dark {
  background: #0E1A14;
  color: #F5F1EA;
}
.section__head {
  max-width: 620px;
  margin-bottom: clamp(36px, 8vw, 56px);
}
.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section--dark .section__kicker { color: var(--accent); }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 6.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section__lead {
  font-size: 16px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.55;
}
.section--dark .section__lead { color: rgba(245, 241, 234, 0.65); }

/* ───── PROCESS ──────────────────────────────────────────────── */
.steps {
  display: grid;
  gap: 4px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 24px;
  row-gap: 4px;
  align-items: baseline;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  grid-row: 1 / 3;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  font-feature-settings: 'tnum';
  letter-spacing: -0.02em;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
}

/* ───── FORM ─────────────────────────────────────────────────── */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.65);
}
.field input,
.field select,
.lead-form .select-wrap select {
  width: 100%;
  padding: 16px 18px;
  background: rgba(245, 241, 234, 0.04);
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: var(--radius-sm);
  color: #F5F1EA;
  font-size: 16px;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder { color: rgba(245, 241, 234, 0.3); }
.field input:hover, .field select:hover { background: rgba(245, 241, 234, 0.06); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(184, 137, 74, 0.08);
  box-shadow: 0 0 0 3px var(--accent-ring);
}
.field input:invalid:not(:placeholder-shown) {
  border-color: rgba(176, 65, 65, 0.5);
}
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: '';
  position: absolute;
  right: 18px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid rgba(245, 241, 234, 0.5);
  border-bottom: 2px solid rgba(245, 241, 234, 0.5);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.select-wrap select { padding-right: 40px; }

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chips legend {
  width: 100%;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.65);
  margin-bottom: 4px;
}
.chip { cursor: pointer; }
.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(245, 241, 234, 0.04);
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 999px;
  color: rgba(245, 241, 234, 0.75);
  transition: all var(--t-fast);
}
.chip:hover span { background: rgba(245, 241, 234, 0.08); }
.chip input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: #0E1A14;
  font-weight: 600;
}
.chip input:focus-visible + span { box-shadow: 0 0 0 3px var(--accent-ring); }

/* Estimate panel */
.estimate {
  margin: 12px 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(184, 137, 74, 0.1) 0%, rgba(184, 137, 74, 0.04) 100%);
  border: 1px solid rgba(184, 137, 74, 0.25);
  border-radius: var(--radius);
  transition: opacity var(--t-med), transform var(--t-med);
}
.estimate.is-empty .estimate__range,
.estimate.is-empty .estimate__meta { opacity: 0.4; }
.estimate__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.estimate__kicker {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.estimate__info {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.06);
  border: 1px solid rgba(245, 241, 234, 0.15);
  color: rgba(245, 241, 234, 0.6);
  font-size: 12px;
  font-weight: 600;
  display: grid;
  place-items: center;
  transition: all var(--t-fast);
}
.estimate__info:hover { background: rgba(184, 137, 74, 0.15); color: var(--accent); }

.estimate__range {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.estimate__low, .estimate__high {
  font-family: var(--font-display);
  font-size: clamp(20px, 5.5vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #F5F1EA;
  font-feature-settings: 'tnum';
  white-space: nowrap;
}
.estimate__bar {
  position: relative;
  height: 6px;
  background: rgba(245, 241, 234, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
.estimate__bar-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 600ms var(--ease-out);
}
.estimate.is-live .estimate__bar-fill { transform: scaleX(1); }
.estimate__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(245, 241, 234, 0.65);
  font-feature-settings: 'tnum';
}
.estimate__meta .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.3);
}
.estimate__note {
  font-size: 12.5px;
  color: rgba(245, 241, 234, 0.5);
  line-height: 1.5;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 241, 234, 0.08);
}

/* Consent */
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: rgba(245, 241, 234, 0.7);
  line-height: 1.5;
  cursor: pointer;
  padding: 4px 0;
}
.consent input {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  accent-color: var(--accent);
}
.consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.form__hint {
  font-size: 13px;
  color: rgba(245, 241, 234, 0.5);
  text-align: center;
  margin-top: 4px;
}

/* CTA spinner state */
.cta__spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(14, 26, 20, 0.25);
  border-top-color: #0E1A14;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
.cta.is-loading .cta__label { opacity: 0.5; }
.cta.is-loading .cta__spinner { display: inline-block; }
.cta.is-loading { pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* SUCCESS */
.success {
  max-width: 640px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(46, 125, 91, 0.3);
  background: rgba(46, 125, 91, 0.06);
  border-radius: var(--radius-lg);
  animation: fade-up 500ms var(--ease-out);
}
.success__check {
  color: var(--success);
  margin: 0 auto 20px;
  display: inline-block;
}
.success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.success p { color: rgba(245, 241, 234, 0.7); margin-bottom: 24px; line-height: 1.55; }
.success__dvf {
  margin: 28px 0 24px;
  padding: 20px 18px;
  background: rgba(245, 241, 234, 0.04);
  border: 1px solid rgba(245, 241, 234, 0.1);
  border-radius: var(--radius-md);
  text-align: left;
}
.success__dvf h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: #F5F1EA;
}
.success__dvf-intro {
  font-size: 13.5px;
  color: rgba(245, 241, 234, 0.75);
  margin: 0 0 14px;
  line-height: 1.5;
}
.success__dvf-source {
  font-size: 11.5px;
  color: rgba(245, 241, 234, 0.45);
  margin: 10px 0 0;
  text-align: right;
}
.success__dvf-source a { color: rgba(245, 241, 234, 0.65); text-decoration: underline; }
.success__cta-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 241, 234, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.success__cta-text {
  font-size: 14.5px;
  color: rgba(245, 241, 234, 0.85);
  margin: 0 0 4px;
  line-height: 1.5;
}
.success__cta-text strong { color: #F5F1EA; font-weight: 600; }
.success__cta-block .cta { min-width: 240px; }
.success__cta-or {
  font-size: 13px;
  color: rgba(245, 241, 234, 0.55);
  margin: 4px 0 0;
}
.success__cta-or a { color: var(--accent); font-weight: 500; text-decoration: none; }
.success__cta-or a:hover { text-decoration: underline; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ───── DVF BLOCK (sous estimation live) ───────────────────────── */
.dvf-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 241, 234, 0.08);
  animation: fade-up 400ms var(--ease-out);
}
.dvf-block__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.dvf-block__kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 234, 0.55);
  font-weight: 500;
}
.dvf-block__period {
  font-size: 11.5px;
  color: rgba(245, 241, 234, 0.5);
  font-feature-settings: 'tnum';
}
.dvf-block__summary {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(245, 241, 234, 0.85);
  margin-bottom: 12px;
  line-height: 1.4;
}
.dvf-block__summary strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: #F5F1EA;
  font-feature-settings: 'tnum';
}
.dvf-block__summary .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.3);
}
.dvf-block__source {
  font-size: 11px;
  color: rgba(245, 241, 234, 0.4);
  margin: 10px 0 0;
  text-align: right;
}
.dvf-block__source a { color: rgba(245, 241, 234, 0.6); text-decoration: underline; }

/* Tableau samples DVF — compact, responsive */
.dvf-samples {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  font-feature-settings: 'tnum';
  margin-top: 4px;
}
.dvf-samples thead th {
  text-align: left;
  font-weight: 500;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(245, 241, 234, 0.45);
  padding: 6px 8px;
  border-bottom: 1px solid rgba(245, 241, 234, 0.08);
}
.dvf-samples tbody td {
  padding: 8px 8px;
  color: rgba(245, 241, 234, 0.85);
  border-bottom: 1px solid rgba(245, 241, 234, 0.05);
}
.dvf-samples tbody tr:last-child td { border-bottom: 0; }
.dvf-samples tbody td:last-child {
  text-align: right;
  font-weight: 500;
  color: #F5F1EA;
}
@media (max-width: 480px) {
  .dvf-samples { font-size: 11.5px; }
  .dvf-samples thead th,
  .dvf-samples tbody td { padding: 6px 4px; }
}

/* ───── MARKET ───────────────────────────────────────────────── */
.market__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.market__card {
  background: var(--surface);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.market__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.market__sources {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-muted, #6b6357);
  font-style: italic;
  text-align: center;
}
.market__sources a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.market__sources a:hover { color: var(--accent, #c8932c); }
.metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.metric__value {
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 36px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-feature-settings: 'tnum';
  line-height: 1;
}
.metric__value small { font-size: 0.45em; color: var(--muted); margin-left: 4px; font-family: var(--font-sans); font-weight: 500; }
.metric__trend {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--line-soft);
}
.metric__trend.up { background: rgba(46, 125, 91, 0.1); color: var(--success); }
.metric__trend.down { background: rgba(176, 65, 65, 0.1); color: var(--danger); }
.market__card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.market__card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ───── REVIEWS ──────────────────────────────────────────────── */
.reviews__rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 24px;
  margin: 0 calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  scrollbar-width: none;
}
.reviews__rail::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 min(320px, 80vw);
  scroll-snap-align: start;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review__stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}
.review__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
  flex: 1;
}
.review__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.review__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #1a2c22, #0E1A14);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.review__author strong { font-size: 14px; display: block; }
.review__author small { font-size: 12.5px; color: var(--muted); }
.reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--t-fast);
}
.reviews__link:hover { color: var(--accent-hover); }

/* ───── BOOKING ──────────────────────────────────────────────── */
.booking { padding-top: 0; }
.booking__card {
  background: linear-gradient(160deg, #1a2c22 0%, #0E1A14 100%);
  color: #F5F1EA;
  padding: clamp(40px, 9vw, 64px) clamp(28px, 7vw, 56px);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.booking__card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80%; height: 200%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(184, 137, 74, 0.18), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.booking__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 6.5vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 12px 0 12px;
}
.booking__lead {
  font-size: 15.5px;
  color: rgba(245, 241, 234, 0.7);
  max-width: 480px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.booking__actions {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.booking__actions .cta--ghost {
  color: #F5F1EA;
  border-color: rgba(245, 241, 234, 0.45);
}
.booking__actions .cta--ghost:hover {
  background: rgba(245, 241, 234, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}

/* ───── FAQ ──────────────────────────────────────────────────── */
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.005em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--t-med);
  flex-shrink: 0;
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 620px;
}

/* ───── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #0E1A14;
  color: rgba(245, 241, 234, 0.7);
  padding: 40px var(--gutter);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F5F1EA;
}
.footer__brand svg { color: var(--accent); }
.footer__brand strong { display: block; font-size: 15px; }
.footer__brand small { font-size: 12.5px; color: rgba(245, 241, 234, 0.55); }
.footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(245, 241, 234, 0.75);
  flex-wrap: wrap;
}
.footer__contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t-fast);
}
.footer__contact a:hover { color: #F5F1EA; }
.footer__contact span { color: rgba(245, 241, 234, 0.3); }
.footer__legal {
  font-size: 11.5px;
  color: rgba(245, 241, 234, 0.45);
  line-height: 1.65;
  max-width: 560px;
}

/* ───── TOAST ────────────────────────────────────────────────── */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 100px);
  background: var(--ink);
  color: #F5F1EA;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: transform var(--t-med), opacity var(--t-med);
  opacity: 0;
  z-index: 100;
  max-width: calc(100vw - 32px);
  pointer-events: none;
}
.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.toast.is-error { background: var(--danger); }

/* ───── RESPONSIVE ───────────────────────────────────────────── */
@media (min-width: 640px) {
  .market__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { flex-direction: row; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; }
  .footer__legal { text-align: right; }
}
@media (min-width: 880px) {
  :root { --gutter: clamp(40px, 8vw, 80px); }
  .market__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .step { border-top: none; border-left: 1px solid var(--line); padding: 0 28px; }
  .step:last-child { border-bottom: none; border-right: 1px solid var(--line); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .eyebrow__dot { animation: none; }
}

/* ───── CONSENT BANNER ─────────────────────────────────────── */
.pa-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: #0E1A14;
  color: #F5F1EA;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(245, 241, 234, 0.08);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 320ms ease-out, opacity 320ms ease-out;
}
.pa-consent.is-visible { transform: translateY(0); opacity: 1; }
.pa-consent__inner {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.pa-consent__text {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.85);
}
.pa-consent__actions { display: flex; gap: 10px; }
.pa-consent__btn {
  flex: 1;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.pa-consent__btn--primary { background: var(--accent); color: #0E1A14; }
.pa-consent__btn--primary:hover { background: #D4A668; }
.pa-consent__btn--ghost { background: transparent; color: #F5F1EA; border-color: rgba(245, 241, 234, 0.2); }
.pa-consent__btn--ghost:hover { border-color: rgba(245, 241, 234, 0.45); }
@media (min-width: 640px) {
  .pa-consent { left: auto; right: 24px; bottom: 24px; max-width: 480px; }
  .pa-consent__inner { padding: 22px 24px; }
  .pa-consent__actions { flex-direction: row-reverse; justify-content: flex-start; }
  .pa-consent__btn { flex: 0 0 auto; padding: 11px 22px; }
}

/* ──────────────────────────────────────────────────────────────
   AUTOCOMPLETE ADRESSE (BAN)
   Dropdown au-dessous du champ adresse. Fond sombre cohérent
   avec le formulaire (#0E1A14 / #1a2c22), texte parchemin clair.
   ────────────────────────────────────────────────────────────── */
.address-autocomplete {
  position: relative;
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 50;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #15241c;
  border: 1px solid rgba(245, 241, 234, 0.14);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32), 0 2px 6px rgba(0, 0, 0, 0.2);
  max-height: 280px;
  overflow-y: auto;
  color: #F5F1EA;
  font-size: 14px;
  animation: addr-fade 140ms ease-out;
}

@keyframes addr-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.address-suggestions li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 120ms ease;
  border-left: 2px solid transparent;
}

.address-suggestions li:hover,
.address-suggestions li.is-active {
  background: rgba(212, 165, 116, 0.14); /* doré subtil */
  border-left-color: #D4A574;
}

.address-suggestions .addr-label {
  color: #F5F1EA;
  font-weight: 500;
  line-height: 1.3;
}

.address-suggestions .addr-ctx {
  color: rgba(245, 241, 234, 0.55);
  font-size: 12px;
  line-height: 1.2;
}

/* Champs étage/ascenseur masqués proprement quand non-appartement */
#floor-field[style*="display: none"],
#elevator-field[style*="display: none"] {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────
   SECTION "VOTRE INTERLOCUTEUR"
   Carte deux colonnes (photo + texte) sur fond clair parchemin.
   Mobile : empilement vertical, photo cadrée au-dessus.
   ────────────────────────────────────────────────────────────── */
.section.consultant {
  padding-block: 80px;
}

.consultant__card {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 56px;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px;
  background: #FAF6EE;
  border: 1px solid rgba(14, 26, 20, 0.08);
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(14, 26, 20, 0.04),
    0 12px 32px -16px rgba(14, 26, 20, 0.12);
}

.consultant__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.consultant__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px -10px rgba(14, 26, 20, 0.28);
}

.consultant__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.consultant__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 10px;
  background: rgba(14, 26, 20, 0.88);
  color: #F5F1EA;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.consultant__badge svg {
  color: #D4A574;
  flex: none;
}

.consultant__body .section__kicker {
  margin-bottom: 8px;
}

.consultant__name {
  font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #0E1A14;
  margin: 0 0 4px;
}

.consultant__role {
  color: rgba(14, 26, 20, 0.65);
  font-size: 15px;
  margin: 0 0 20px;
}

/* Signature — phrase d'accroche en gros, italique serif */
.consultant__signature {
  font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  color: #0E1A14;
  margin: 4px 0 20px;
  padding: 0 0 0 14px;
  border-left: 2px solid #D4A574;
  max-width: 44ch;
  quotes: none;
}

.consultant__pitch {
  color: rgba(14, 26, 20, 0.78);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 56ch;
}

/* Ligne ancrage local : pin + arrondissements */
.consultant__zones {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 24px;
  padding: 10px 14px;
  background: rgba(212, 165, 116, 0.10);
  border: 1px solid rgba(212, 165, 116, 0.28);
  border-radius: 999px;
  color: rgba(14, 26, 20, 0.78);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: 100%;
}

.consultant__zones-icon {
  color: #B48653;
  flex: none;
  margin-top: 2px;
}

.consultant__zones span {
  line-height: 1.4;
}

.consultant__zones sup {
  font-size: 0.65em;
  vertical-align: super;
  margin-left: 1px;
}

.consultant__zones strong {
  font-weight: 600;
  color: #0E1A14;
}

/* Mention discrète : secteurs limitrophes */
.consultant__zones-more {
  margin: 8px 2px 22px;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(14, 26, 20, 0.58);
  font-style: italic;
}

.consultant__zones-more sup {
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 1px;
  font-style: normal;
}

/* Bande facts avec icon dorée */
.consultant__facts {
  list-style: none;
  margin: 0 0 26px;
  padding: 20px 0;
  border-top: 1px solid rgba(14, 26, 20, 0.1);
  border-bottom: 1px solid rgba(14, 26, 20, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.consultant__facts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consultant__fact-icon {
  color: #D4A574;
  flex: none;
  margin-top: 2px;
}

.consultant__facts li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.consultant__facts strong {
  color: #0E1A14;
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}

.consultant__facts span {
  color: rgba(14, 26, 20, 0.55);
  font-size: 12px;
  line-height: 1.3;
}

.consultant__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

@media (max-width: 760px) {
  .section.consultant {
    padding-block: 48px;
  }
  .consultant__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .consultant__media {
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
  }
  .consultant__name {
    font-size: 30px;
  }
  .consultant__signature {
    font-size: 19px;
    padding-left: 12px;
  }
  .consultant__zones {
    border-radius: 14px;
    align-items: flex-start;
  }

  .consultant__zones-more {
    font-size: 12px;
    margin: 6px 2px 18px;
  }
  .consultant__facts {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 0;
  }
}

/* ──────────────────────────────────────────────────────────────
   FIX BUG : OPTIONS DE SELECT NATIVES INVISIBLES
   Sur fond sombre, les <option> héritaient parfois du fond
   sombre sans contraste de texte. On force des couleurs natives
   propres sur tous les select de la page.
   ────────────────────────────────────────────────────────────── */
.select-wrap select option,
select option {
  background-color: #1a2c22;
  color: #F5F1EA;
  padding: 8px 10px;
}
/* Pour les selects qui pourraient être sur fond clair (rare ici) */
.section:not(.section--dark) .select-wrap select option,
.section:not(.section--dark) select option {
  background-color: #FAF6EE;
  color: #0E1A14;
}

/* ──────────────────────────────────────────────────────────────
   STEP INDICATOR (progression du formulaire)
   Quatre étapes : Localisation → Caractéristiques → État → Coordonnées
   ────────────────────────────────────────────────────────────── */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 36px;
  padding: 18px 22px;
  background: rgba(245, 241, 234, 0.04);
  border: 1px solid rgba(245, 241, 234, 0.08);
  border-radius: 12px;
  position: relative;
}

.form-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}

.form-step__bullet {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background: rgba(245, 241, 234, 0.08);
  color: rgba(245, 241, 234, 0.55);
  border: 1px solid rgba(245, 241, 234, 0.12);
  transition: all 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-step__bullet svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 200ms ease, transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-step.is-done .form-step__bullet {
  background: #D4A574;
  color: #0E1A14;
  border-color: #D4A574;
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.12);
}

.form-step.is-done .form-step__bullet .num {
  display: none;
}

.form-step.is-done .form-step__bullet svg {
  opacity: 1;
  transform: scale(1);
}

.form-step.is-active .form-step__bullet {
  background: rgba(212, 165, 116, 0.12);
  color: #D4A574;
  border-color: #D4A574;
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.08);
  animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.08); }
  50%      { box-shadow: 0 0 0 8px rgba(212, 165, 116, 0.04); }
}

.form-step__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(245, 241, 234, 0.55);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 220ms ease;
}

.form-step.is-active .form-step__label,
.form-step.is-done .form-step__label {
  color: #F5F1EA;
}

.form-step__connector {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(245, 241, 234, 0.1);
  margin: 0 6px;
  position: relative;
  overflow: hidden;
  min-width: 16px;
}

.form-step__connector::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #D4A574;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 480ms cubic-bezier(0.65, 0, 0.35, 1);
}

.form-step__connector.is-done::after {
  transform: scaleX(1);
}

@media (max-width: 720px) {
  .form-steps {
    padding: 14px 12px;
    gap: 4px;
  }
  .form-step__label {
    display: none;
  }
  .form-step__connector {
    min-width: 6px;
  }
}

/* ──────────────────────────────────────────────────────────────
   MICRO-FEEDBACK : check vert sur les labels remplis
   ────────────────────────────────────────────────────────────── */
.field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.field__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4CB575;
  color: #FFFFFF;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
  flex: none;
}

.field__check svg {
  width: 10px;
  height: 10px;
}

.field.is-filled .field__check {
  opacity: 1;
  transform: scale(1);
}

/* ──────────────────────────────────────────────────────────────
   SUGGESTION CONTEXTUELLE (sous surface : ≈ T3 dans votre zone)
   ────────────────────────────────────────────────────────────── */
.field__hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(245, 241, 234, 0.55);
  min-height: 16px;
  transition: color 200ms ease;
}

.field__hint.is-visible {
  color: #D4A574;
}

.field__hint .hint-icon {
  display: inline-block;
  margin-right: 4px;
  vertical-align: -2px;
}

/* ──────────────────────────────────────────────────────────────
   SLIDER SURFACE — habillé en doré, snap fluide
   ────────────────────────────────────────────────────────────── */
.surface-control {
  display: flex;
  align-items: center;
  gap: 14px;
}

.surface-control input[type="number"] {
  width: 100px;
  flex: none;
}

.surface-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    #D4A574 0%,
    #D4A574 var(--pct, 30%),
    rgba(245, 241, 234, 0.12) var(--pct, 30%),
    rgba(245, 241, 234, 0.12) 100%
  );
  outline: none;
  cursor: pointer;
}

.surface-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F5F1EA;
  border: 3px solid #D4A574;
  cursor: grab;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.surface-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(212, 165, 116, 0.4);
}

.surface-slider:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.2);
}

.surface-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F5F1EA;
  border: 3px solid #D4A574;
  cursor: grab;
}

/* ──────────────────────────────────────────────────────────────
   ESTIMATE PULSE — quand la fourchette s'actualise
   ────────────────────────────────────────────────────────────── */
@keyframes estimatePulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.4); }
  60%  { box-shadow: 0 0 0 14px rgba(212, 165, 116, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 165, 116, 0); }
}

.estimate.is-pulse {
  animation: estimatePulse 800ms ease-out;
}

/* Petits chips de raccourci pour saisie rapide */
.quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.quick-chip {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245, 241, 234, 0.06);
  border: 1px solid rgba(245, 241, 234, 0.12);
  color: rgba(245, 241, 234, 0.75);
  cursor: pointer;
  transition: all 160ms ease;
}

.quick-chip:hover {
  background: rgba(212, 165, 116, 0.14);
  border-color: #D4A574;
  color: #F5F1EA;
}

/* ─── Analyse en cours — stepper "vrai logiciel" ──────────── */
.analyze-status {
  margin: 14px 0 4px;
  padding: 14px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(212, 165, 116, 0.02));
  border: 1px solid rgba(212, 165, 116, 0.18);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 240ms ease, transform 240ms ease;
}
.analyze-status.is-active {
  opacity: 1;
  transform: translateY(0);
}
.analyze-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.analyze-step {
  font-size: 13px;
  color: rgba(245, 241, 234, 0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-left: 24px;
  transition: color 320ms ease;
}
.analyze-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.18);
  border: 2px solid rgba(212, 165, 116, 0.35);
  box-sizing: border-box;
  transition: all 320ms ease;
}
/* Animation séquentielle : chaque step "s'allume" à tour de rôle */
.analyze-status.is-active .analyze-step {
  animation: analyze-pulse 1.6s ease-in-out infinite;
}
.analyze-status.is-active .analyze-step:nth-child(1) { animation-delay: 0ms; }
.analyze-status.is-active .analyze-step:nth-child(2) { animation-delay: 200ms; }
.analyze-status.is-active .analyze-step:nth-child(3) { animation-delay: 400ms; }
.analyze-status.is-active .analyze-step:nth-child(4) { animation-delay: 600ms; }
@keyframes analyze-pulse {
  0%, 100% { color: rgba(245, 241, 234, 0.55); }
  50% { color: #D4A574; }
}
.analyze-status.is-active .analyze-step::before {
  background: #D4A574;
  border-color: #D4A574;
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.18);
}
