/* ============================================================
   NITROW × BEVEL — Section styles for 3 marketing pages
   Home / Realisations / Tarifs
   Reuses tokens.css + app.css
   ============================================================ */

/* ── HERO variants ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 3; width: 100%; }
.hero__copy { max-width: 760px; }
.hero h1 { margin: 22px 0 0; }
.hero .lede { margin-top: 26px; max-width: 56ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.hero__trust p { margin: 0; font-size: 0.82rem; color: var(--ink-mute); max-width: 32ch; line-height: 1.4; }

/* Home hero: full-width stacked header + avant/après compare row */
.hero--home {
  min-height: auto;
  padding-top: 160px;
  padding-bottom: 100px;
  align-items: flex-start;
}
.hero--home .hero__inner { display: block; }
.hero--home .hero__copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero--home .display {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.02;
}
.hero--home .lede { margin-left: auto; margin-right: auto; max-width: 62ch; }
.hero--home .hero__ctas { justify-content: center; }

/* Avant / Après horizontal compare */
.hero__compare {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.hero__compare__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.hero__compare__label {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 6px 12px;
  border: 1px solid var(--hair);
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
}
.hero__compare__label--accent {
  color: var(--accent);
  border-color: rgba(59,130,246,0.32);
  background: rgba(59,130,246,0.08);
}
.hero__compare__col--after .chatcard {
  box-shadow: 0 30px 70px -30px rgba(59,130,246,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
  border-color: rgba(59,130,246,0.18);
}
.hero__compare__caption {
  font-size: 0.82rem;
  color: var(--ink-dim);
  line-height: 1.5;
  margin: 4px 4px 0;
}
.hero__compare__bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 4px;
  align-self: center;
}
.hero__compare__bridge svg {
  width: 36px; height: 36px; color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(59,130,246,0.55));
}
.hero__compare__bridge-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.hero__compare__bridge-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Trust line centered variant */
.hero__trust--centered {
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero__trust--centered p { max-width: 60ch; text-align: center; }
.hero__trust--centered p strong { color: var(--ink-dim); font-weight: 600; }

@media (max-width: 900px) {
  .hero--home { padding-top: 110px; padding-bottom: 60px; }
  .hero__compare {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }
  .hero__compare__bridge { flex-direction: row; padding: 12px 0; gap: 14px; }
  .hero__compare__bridge svg { width: 28px; height: 28px; transform: rotate(90deg); }
  .hero__compare__label { font-size: 9px; padding: 5px 10px; }
}

/* Realisations / Tarifs hero: centered editorial */
.hero--centered { text-align: center; align-items: center; padding-top: 180px; padding-bottom: 60px; }
.hero--centered .hero__copy { margin: 0 auto; max-width: 880px; }
.hero--centered .lede { margin-left: auto; margin-right: auto; }
.hero--centered .hero__ctas { justify-content: center; }
.hero--centered .hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 760px;
  margin: 56px auto 0;
  padding: 28px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.hero--centered .hero__stats .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.hero--centered .hero__stats .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hero--centered .hero__stats .v .accent { color: var(--accent); }
.hero--centered .hero__stats .v .unit { font-size: 0.45em; color: var(--ink-mute); font-weight: 600; margin-left: 4px; }
@media (max-width: 640px) {
  .hero--centered .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* Accent emphasis utility for h1 */
h1 .accent, h2 .accent { color: var(--accent); }
h1 .strike, h2 .strike {
  position: relative;
  display: inline-block;
}
h1 .strike::after, h2 .strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 50%;
  height: 5px;
  background: var(--accent);
  transform: translateY(-50%) rotate(-1.5deg);
  opacity: 0.85;
}

/* ── PHONE/CHAT MOCK on Home Hero ──────────────────────────── */
.split-mock { display: flex; flex-direction: column; gap: 14px; position: relative; }
.split-mock__bridge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(59,130,246,0.16);
  border: 1px solid rgba(59,130,246,0.35);
  box-shadow: 0 0 32px -8px var(--accent-glow);
  backdrop-filter: blur(14px);
}
.split-mock__bridge svg { width: 24px; height: 24px; color: var(--accent); }
.split-mock__bridge::after {
  content: "NITROW";
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  white-space: nowrap;
}

.chatcard {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-card);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.chatcard--insta { background: linear-gradient(180deg, rgba(225, 48, 108, 0.06), transparent 50%), var(--surface); }
.chatcard--wa    { background: linear-gradient(180deg, rgba(37, 211, 102, 0.07), transparent 50%), var(--surface); }

.chatcard__head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hair-soft);
  margin-bottom: 14px;
}
.chatcard__head .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045);
  flex-shrink: 0;
}
.chatcard--wa .chatcard__head .av { background: linear-gradient(135deg, #25D366, #128C7E); }
.chatcard__head .nm { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.chatcard__head .src { font: var(--mono-xs); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.16em; font-size: 9px; color: var(--ink-mute); margin-top: 2px; }
.chatcard__head .badge {
  margin-left: auto;
  font: var(--mono-xs); font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  padding: 4px 8px; border-radius: 4px;
}
.chatcard--insta .chatcard__head .badge { color: #FD1D1D; background: rgba(253, 29, 29, 0.1); border: 1px solid rgba(253, 29, 29, 0.22); }
.chatcard--wa .chatcard__head .badge { color: #25D366; background: rgba(37, 211, 102, 0.1); border: 1px solid rgba(37, 211, 102, 0.22); }

.chatcard__bubble {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.4;
  margin-bottom: 8px;
  max-width: 88%;
}
.chatcard__bubble--in  { background: rgba(255,255,255,0.05); color: var(--ink-dim); }
.chatcard__bubble--out { background: rgba(59,130,246,0.18); color: #E6EEFE; margin-left: auto; border: 1px solid rgba(59,130,246,0.22); }
.chatcard__bubble--out.wa { background: rgba(37, 211, 102, 0.15); border-color: rgba(37, 211, 102, 0.25); color: #E5F8EB; }
.chatcard__bubble strong { color: var(--ink); font-weight: 600; }
.chatcard__bubble small { display: block; font-size: 0.66rem; color: var(--ink-mute); margin-top: 4px; }

.chatcard__notif {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.chatcard__notif .ico {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  display: grid; place-items: center;
  color: #25D366;
  flex-shrink: 0;
}
.chatcard__notif__body { flex: 1; min-width: 0; }
.chatcard__notif .nl {
  font: var(--mono-xs); font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase; color: #25D366; font-weight: 700;
  display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap;
}
.chatcard__notif .amt-inline {
  font-family: var(--font-display); font-weight: 800; font-size: 0.92rem;
  color: #25D366; letter-spacing: 0;
}
.chatcard__notif .nb { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 0.92rem; margin-top: 2px; }
.chatcard__notif .nm { font-size: 0.78rem; color: var(--ink-dim); margin-top: 2px; }

.chatcard__checklist {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chatcard__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ink-dim);
}
.chatcard__checklist svg {
  width: 14px; height: 14px;
  color: #25D366;
  padding: 3px;
  background: rgba(37, 211, 102, 0.14);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── TIMELINE ──────────────────────────────────────────────── */
.timeline { padding-block: var(--section-y); }
.timeline__head { margin: 0 auto 64px; max-width: 1100px; text-align: center; }
.timeline__head .h2 { margin-top: 18px; }
.timeline__head .lede { margin-top: 18px; margin-inline: auto; }

.timeline__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline-step {
  position: relative;
  padding: 0 20px;
  text-align: center;
}
.timeline-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 56px;
  left: calc(50% + 56px);
  width: calc(100% - 112px);
  height: 1px;
  background: linear-gradient(90deg, var(--hair) 0%, rgba(59,130,246,0.45) 50%, var(--hair) 100%);
  z-index: 0;
}
.timeline-step__num {
  width: 112px;
  height: 112px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--hair);
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-direction: column;
  gap: 4px;
}
.timeline-step__num .ico {
  width: 28px; height: 28px;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.timeline-step__num::after {
  content: attr(data-num);
  position: absolute;
  top: -4px; right: -4px;
  background: var(--surface-2);
  border: 1px solid var(--hair);
  border-radius: 9999px;
  padding: 3px 8px;
  font-size: 9px;
  color: var(--ink-mute);
}
/* Progressive scroll-activated state — applies to each bubble as it enters viewport */
.timeline-step__num,
.timeline-step__num::after,
.timeline-step__platform {
  transition: background 0.6s var(--ease), border-color 0.6s var(--ease),
              box-shadow 0.6s var(--ease), color 0.6s var(--ease);
}
.timeline-step:not(:last-child)::before {
  transition: background 0.6s var(--ease);
}
.timeline-step.active .timeline-step__num {
  background: rgba(59,130,246,0.12);
  border-color: var(--accent);
  box-shadow: 0 0 32px -6px var(--accent-glow);
  color: var(--accent);
}
.timeline-step.active .timeline-step__num .ico { color: var(--accent); }
.timeline-step.active .timeline-step__num::after { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 700; }
.timeline-step.active:not(:last-child)::before {
  background: linear-gradient(90deg, var(--accent), rgba(59,130,246,0.4) 100%);
}

.timeline-step__platform {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.timeline-step.active .timeline-step__platform { color: var(--accent); }

.timeline-step__t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.timeline-step__d {
  font-size: 0.86rem;
  color: var(--ink-dim);
  line-height: 1.45;
  max-width: 22ch;
  margin: 0 auto;
}
.timeline-step__tag {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--ink-mute);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hair);
}
.timeline-step.active .timeline-step__tag {
  color: var(--accent);
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.25);
}

.timeline__foot {
  margin-top: 80px;
  text-align: center;
  font: var(--mono-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.timeline__foot strong { color: var(--ink); font-weight: 700; }

@media (max-width: 880px) {
  .timeline__steps { grid-template-columns: 1fr; gap: 32px; }
  .timeline__steps::before { display: none; }
  .timeline-step { display: grid; grid-template-columns: 112px 1fr; gap: 24px; text-align: left; align-items: start; padding: 0; }
  .timeline-step__num { margin: 0; }
  .timeline-step__d { margin: 0; max-width: none; }
  .timeline-step__tag { display: inline-flex; }
}

/* ── BIG NUMBERS ────────────────────────────────────────────── */
.numbers { padding-block: var(--section-y); }
.numbers .shead--center { max-width: 1100px; }

/* ── CUSTOMIZATION RULES ───────────────────────────────────── */
.rules { padding-block: var(--section-y); }
.rules .shead--center { max-width: 1100px; }
.rules__mock {
  margin-top: 64px;
  max-width: 1080px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}
.rules__col {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-card);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rules__col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hair-soft);
}
.rules__col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.rules__col-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(15,23,42,0.04);
  border: 1px solid var(--hair);
}
.rules__col-tag--accent {
  color: var(--accent);
  background: rgba(59,130,246,0.08);
  border-color: rgba(59,130,246,0.22);
}
.rules__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rules__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(15,23,42,0.03);
  border: 1px solid var(--hair-soft);
  font-size: 0.92rem;
  color: var(--ink-dim);
  font-weight: 500;
}
.rules__list svg {
  width: 14px;
  height: 14px;
  color: var(--ink-mute);
  flex-shrink: 0;
}
.rules__toggles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rules__toggle {
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(15,23,42,0.02);
  border: 1px solid var(--hair-soft);
  transition: border-color 0.2s, background 0.2s;
}
.rules__toggle-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.rules__toggle-t {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: -0.005em;
}
.rules__toggle-d {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 3px;
}
.rules__toggle__body {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hair-soft);
  overflow: hidden;
  max-height: 320px;
  opacity: 1;
  transition: max-height 0.35s var(--ease), opacity 0.25s var(--ease),
              padding-top 0.25s var(--ease), margin-top 0.25s var(--ease),
              border-top-color 0.25s var(--ease);
}
.rules__toggle[data-active="false"] .rules__toggle__body {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  margin-top: 0;
  border-top-color: transparent;
}
.rules__toggle[data-active="true"] {
  border-color: rgba(59, 130, 246, 0.20);
  background: rgba(59, 130, 246, 0.025);
}
.rules__field-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.rules__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Upload placeholders */
.rules__upload {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px dashed var(--hair);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
}
.rules__upload-ico {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.10);
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.rules__upload-ico svg { width: 16px; height: 16px; }
.rules__upload-body { flex: 1; min-width: 0; }
.rules__upload-t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.rules__upload-d {
  font-size: 0.76rem;
  color: var(--ink-mute);
  margin-top: 2px;
}
.rules__upload-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--hair-soft);
  flex-shrink: 0;
}
.rules__upload-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.rules__upload--half {
  flex-direction: column;
  text-align: center;
  gap: 10px;
  padding: 18px 12px;
}
.rules__upload-half-t {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Age number input with steppers */
.rules__age-input {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--hair);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}
.rules__step {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: none;
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: grid; place-items: center;
  line-height: 1;
}
.rules__step:hover { background: rgba(59, 130, 246, 0.12); color: var(--accent); }
.rules__step:active { transform: scale(0.94); }
.rules__age-input input {
  width: 54px;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-align: center;
  color: var(--ink);
  outline: none;
  -moz-appearance: textfield;
}
.rules__age-input input::-webkit-outer-spin-button,
.rules__age-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.rules__unit {
  padding: 0 10px 0 2px;
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Switch as button — strip default styles */
.switch {
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: none;
}
.switch:focus-visible { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35); }
.radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--hair);
  background: rgba(15,23,42,0.02);
  font-size: 0.8rem;
  color: var(--ink-dim);
  cursor: pointer;
  transition: all 0.2s;
}
.radio input { display: none; }
.radio:hover { border-color: rgba(59,130,246,0.3); }
.radio:has(input:checked) {
  border-color: var(--accent);
  background: rgba(59,130,246,0.08);
  color: var(--ink);
  font-weight: 600;
}
.radio__amt {
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 700;
}

/* Switch toggle */
.switch {
  flex-shrink: 0;
  display: inline-block;
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: rgba(15,23,42,0.16);
  position: relative;
  transition: background 0.25s;
}
.switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
  transition: transform 0.25s;
}
.switch--on {
  background: var(--accent);
  box-shadow: 0 0 12px -2px rgba(59,130,246,0.5);
}
.switch--on::after { transform: translateX(16px); }

/* ── V3 — Inline chips (replaces 2-col mock) ───────────────── */
.rules__variant {
  max-width: 900px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rules__group {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 6px 20px -12px rgba(15, 23, 42, 0.08);
}
.rules__group-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 14px;
}
.rules__group-label {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.rules__group-tag {
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink-mute);
  border: 1px solid var(--hair-soft);
}
.rules__group-tag--accent {
  color: var(--accent);
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.22);
}
.rules__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.rules__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-family: inherit;
  font-size: 0.85rem; color: var(--ink-dim);
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, opacity 0.2s;
}
.rules__chip svg { width: 12px; height: 12px; color: var(--ink-mute); flex-shrink: 0; }
.rules__chip:hover { border-color: rgba(15, 23, 42, 0.18); }
.rules__chip:focus-visible { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3); }
.rules__chip:active { transform: scale(0.97); }

/* Locked (mandatory) — non-interactive */
.rules__chip--locked {
  background: rgba(15, 23, 42, 0.03);
  cursor: not-allowed;
}
.rules__chip--locked:hover { border-color: rgba(15, 23, 42, 0.08); }

/* ON state */
.rules__chip--on {
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.22);
  color: var(--ink);
  font-weight: 600;
}
.rules__chip--on:hover {
  border-color: rgba(59, 130, 246, 0.40);
  background: rgba(59, 130, 246, 0.10);
}
.rules__chip--on::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
  transition: background 0.2s, box-shadow 0.2s, border 0.2s;
}
.rules__chip--on .rules__chip-val {
  font-family: var(--font-mono); font-weight: 700;
  color: var(--accent);
  background: rgba(59, 130, 246, 0.12);
  padding: 3px 7px; border-radius: 4px;
  font-size: 0.74rem; letter-spacing: 0.04em;
  margin-left: 2px;
  transition: color 0.2s, background 0.2s, opacity 0.2s;
}

/* OFF state */
.rules__chip--off {
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(15, 23, 42, 0.08);
  color: var(--ink-mute);
  font-weight: 500;
  opacity: 0.75;
}
.rules__chip--off:hover { opacity: 1; border-color: rgba(15, 23, 42, 0.20); }
.rules__chip--off::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(15, 23, 42, 0.20);
}
.rules__chip--off .rules__chip-val {
  font-family: var(--font-mono); font-weight: 700;
  color: var(--ink-mute);
  background: rgba(15, 23, 42, 0.04);
  padding: 3px 7px; border-radius: 4px;
  font-size: 0.74rem; letter-spacing: 0.04em;
  margin-left: 2px;
  text-decoration: line-through;
  opacity: 0.6;
}

/* Footer status line */
.rules__foot {
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 9999px;
  border: 1px solid rgba(34,197,94,0.25);
  background: rgba(34,197,94,0.08);
  color: var(--ink-dim);
  font-size: 0.88rem;
  width: fit-content;
  max-width: 100%;
}
.rules__foot svg {
  width: 16px;
  height: 16px;
  color: #22c55e;
  padding: 3px;
  background: rgba(34,197,94,0.18);
  border-radius: 50%;
  flex-shrink: 0;
}
.rules__foot strong { color: var(--ink); font-weight: 700; }

@media (max-width: 900px) {
  .rules__mock { grid-template-columns: 1fr; }
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.numbers__cell {
  padding: 56px 32px;
  border-right: 1px solid var(--hair);
  position: relative;
}
.numbers__cell:last-child { border-right: none; }
.numbers__cell .k {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.numbers__cell .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.numbers__cell .v .accent { color: var(--accent); }
.numbers__cell .v .unit { font-size: 0.4em; color: var(--ink-mute); font-weight: 600; }
.numbers__cell .d {
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 28ch;
}
@media (max-width: 880px) {
  .numbers__grid { grid-template-columns: 1fr; }
  .numbers__cell { border-right: none; border-bottom: 1px solid var(--hair); padding: 40px 0; }
  .numbers__cell:last-child { border-bottom: none; }
}

/* ── STUDIO BAND (Lead Magnet) ──────────────────────────────── */
.studioband { padding-block: clamp(40px, 6vw, 80px); }
.studioband__card {
  background:
    radial-gradient(ellipse 80% 60% at 100% 50%, rgba(59,130,246,0.12), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0) 40%),
    var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-card);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.studioband__card::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(59,130,246,0.10), transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}
.studioband__copy { position: relative; z-index: 2; }
.studioband__t {
  margin-top: 18px;
  max-width: 24ch;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.studioband__sub { margin-top: 18px; color: var(--ink-dim); font-size: 1rem; line-height: 1.6; max-width: 44ch; }
.studioband__cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.studioband__micro {
  font: var(--mono-sm); font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 10px;
  color: var(--ink-mute);
}
.studioband__shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2;
}
.studioband__shot {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hair);
}
.studioband__shot:nth-child(2) { transform: translateY(-20px); }
.studioband__shot:nth-child(3) { transform: translateY(10px); }
.studioband__shot img { width: 100%; height: 100%; object-fit: cover; }
.studioband__shot span {
  position: absolute;
  bottom: 10px; left: 10px;
  font: var(--mono-xs); font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; font-weight: 700;
  background: rgba(0,0,0,0.6);
  padding: 4px 8px; border-radius: 4px;
  backdrop-filter: blur(4px);
}
@media (max-width: 900px) {
  .studioband__card { grid-template-columns: 1fr; gap: 32px; }
  .studioband__shot:nth-child(2), .studioband__shot:nth-child(3) { transform: none; }
}

/* ── DEMO PAGE — hero + viewport toggle (desktop ↔ mobile) ───── */
.hero--demo { min-height: auto; padding-top: 160px; padding-bottom: 40px; }
.hero--demo .display { font-size: clamp(1.7rem, 3.4vw, 2.8rem); line-height: 1.1; }
.hero--demo .lede { max-width: 60ch; }

.liveshop {
  padding-block: 0 24px;
  max-width: 1280px;
  margin-inline: auto;
}

/* Toggle Desktop / Mobile */
.liveshop__toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  margin: 0 auto 24px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--hair);
  border-radius: 9999px;
  width: fit-content;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.liveshop__toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: var(--ink-mute);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.liveshop__toggle-btn:hover { color: var(--ink); }
.liveshop__toggle-btn svg { width: 14px; height: 14px; }
.liveshop__toggle-btn--active {
  background: #FFFFFF;
  color: var(--accent);
  box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.10);
}

/* Viewport — generic */
.liveshop__viewport {
  position: relative;
  margin: 0 auto;
  background: #FFFFFF;
  overflow: hidden;
  transition: max-width 0.45s var(--ease), aspect-ratio 0.45s var(--ease),
              border-radius 0.45s var(--ease), border-width 0.45s var(--ease),
              box-shadow 0.45s var(--ease);
}
.liveshop__viewport iframe {
  position: absolute;
  left: 0;
  width: 100%;
  border: none;
  background: #FFFFFF;
  transition: top 0.45s var(--ease), height 0.45s var(--ease);
}

/* Desktop mode */
.liveshop__viewport[data-mode="desktop"] {
  max-width: 1280px;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--hair);
  border-radius: 16px;
  box-shadow: 0 30px 80px -40px rgba(15, 23, 42, 0.22);
}
.liveshop__viewport[data-mode="desktop"] iframe {
  top: 38px;
  height: calc(100% - 38px);
}
.liveshop__viewport[data-mode="desktop"] .liveshop__chrome { display: flex; }
.liveshop__viewport[data-mode="desktop"] .liveshop__notch { display: none; }

/* Mobile mode — phone frame */
.liveshop__viewport[data-mode="mobile"] {
  max-width: 380px;
  aspect-ratio: 9 / 19.5;
  border: 10px solid #1A1A1F;
  border-radius: 42px;
  box-shadow:
    0 30px 80px -30px rgba(15, 23, 42, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.liveshop__viewport[data-mode="mobile"] iframe {
  top: 0;
  height: 100%;
  border-radius: 32px;
}
.liveshop__viewport[data-mode="mobile"] .liveshop__chrome { display: none; }
.liveshop__viewport[data-mode="mobile"] .liveshop__notch {
  display: block;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #1A1A1F;
  border-radius: 14px;
  z-index: 3;
}

/* Desktop chrome bar */
.liveshop__chrome {
  position: absolute; top: 0; left: 0; right: 0;
  height: 38px;
  display: flex; align-items: center; gap: 10px;
  padding: 0 12px;
  background: rgba(248, 248, 250, 0.96);
  border-bottom: 1px solid var(--hair);
  z-index: 2;
  backdrop-filter: blur(8px);
}
.liveshop__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  flex-shrink: 0;
}
.liveshop__url {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.liveshop__tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #16a34a;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.30);
}
.liveshop__expand {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--hair);
  color: var(--ink-mute);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.liveshop__expand:hover {
  color: var(--accent);
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.05);
}
.liveshop__expand svg { width: 14px; height: 14px; }

.liveshop__caption {
  margin: 32px auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-dim);
  max-width: 60ch;
  line-height: 1.55;
}
.liveshop__caption a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Mobile screen — auto-fold to phone frame, hide toggle */
@media (max-width: 700px) {
  .liveshop__toggle { display: none; }
  .liveshop__viewport[data-mode] {
    max-width: min(340px, calc(100vw - 32px));
    aspect-ratio: 9 / 19.5;
    border: 8px solid #1A1A1F;
    border-radius: 38px;
    box-shadow: 0 20px 60px -24px rgba(15, 23, 42, 0.30);
  }
  .liveshop__viewport[data-mode] iframe {
    top: 0;
    height: 100%;
    border-radius: 30px;
  }
  .liveshop__viewport[data-mode] .liveshop__chrome { display: none; }
  .liveshop__viewport[data-mode] .liveshop__notch {
    display: block;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: #1A1A1F;
    border-radius: 12px;
    z-index: 3;
  }
}

/* ── REALISATIONS — bande de preuve ────────────────────────── */
.real-proof {
  max-width: 920px;
  margin: -16px auto 0;
  padding: 14px 24px;
  border-radius: 9999px;
  border: 1px solid var(--hair);
  background: var(--surface);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 8px 28px -16px rgba(15, 23, 42, 0.10);
}
.real-proof__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 4px;
}
.real-proof__sep {
  color: var(--ink-mute);
  opacity: 0.4;
  font-size: 0.75rem;
}
.real-proof__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}
.real-proof__chip--accent {
  color: var(--accent);
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.22);
}

/* ── REALISATIONS GRID ─────────────────────────────────────── */
.real-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding-block: clamp(40px, 6vw, 80px);
}
.real-card {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.real-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8);
}
.real-card:hover .real-card__vis img { transform: scale(1.04); }
.real-card:hover .real-card__arr { transform: translate(6px, -6px); color: var(--accent); }

.real-card__vis {
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
}
.real-card__vis img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform .8s var(--ease);
}
.real-card__num {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: rgba(10,10,14,0.7);
  border: 1px solid var(--hair);
  padding: 4px 9px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}
.real-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 9px;
  border-radius: 4px;
  background: rgba(10,10,14,0.7);
  border: 1px solid var(--hair);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.real-card__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--nitrow-success); box-shadow: 0 0 8px rgba(34,197,94,0.7); animation: pulse 2s ease-in-out infinite; }

.real-card__body { padding: 28px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.real-card__loc {
  font: var(--mono-sm); font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.real-card__loc::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
.real-card__t {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.real-card__t i { font-style: italic; font-weight: 400; color: var(--accent); }
.real-card__d { font-size: 0.95rem; line-height: 1.55; color: var(--ink-dim); }

.real-card__specs {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
}
.real-card__specs .row { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.real-card__specs .k {
  font: var(--mono-xs); font-family: var(--font-mono);
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.real-card__specs .v { font-size: 13px; font-weight: 500; color: var(--ink); line-height: 1.3; }

.real-card__foot {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.real-card__url {
  font: var(--mono-sm); font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  min-width: 0;
}
.real-card__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font: var(--mono-sm); font-family: var(--font-mono);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.real-card__arr { display: inline-block; transition: transform .35s var(--ease), color .25s; font-family: var(--font-mono); }

@media (max-width: 800px) {
  .real-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-block: clamp(40px, 6vw, 80px);
  max-width: 920px;
  margin-inline: auto;
}
.tier {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-card);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.tier--featured {
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(59,130,246,0.12), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0) 40%),
    var(--surface);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 30px 80px -20px rgba(59,130,246,0.18), 0 0 0 1px rgba(59,130,246,0.18);
  transform: translateY(-12px);
}
.tier--featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.tier__badge {
  position: absolute;
  top: 16px; right: 16px;
  font: var(--mono-xs); font-family: var(--font-mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  color: var(--accent);
  background: rgba(59,130,246,0.14);
  border: 1px solid rgba(59,130,246,0.3);
}
.tier__head .eyebrow { font-size: 11px; letter-spacing: 0.24em; }
.tier__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 12px;
}
.tier__tag {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--ink-dim);
  line-height: 1.45;
  max-width: 28ch;
}
.tier__price {
  padding: 20px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.tier__price .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.tier__price .amount .unit { font-size: 0.45em; color: var(--ink-mute); font-weight: 500; margin-left: 6px; }
.tier__price .extra {
  margin-top: 10px;
  font: var(--mono-sm); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
}
.tier__price .extra strong { color: var(--ink); }
.tier__price .onquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.tier__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.tier__features li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-dim);
  line-height: 1.4;
}
.tier__features li::before {
  content: "";
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233B82F6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.tier__cta { margin-top: auto; }
.tier__cta .btn { width: 100%; justify-content: center; }

@media (max-width: 940px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }
}

/* SEO Prestige callout */
.seo-callout {
  background:
    radial-gradient(ellipse 70% 50% at 90% 50%, rgba(59,130,246,0.16), transparent 65%),
    var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-card);
  padding: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.seo-callout__copy { position: relative; z-index: 2; }
.seo-callout__t { margin-top: 18px; max-width: 18ch; }
.seo-callout__sub { margin-top: 18px; color: var(--ink-dim); line-height: 1.6; max-width: 42ch; }
.seo-callout__price {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.seo-callout__price .amt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.seo-callout__price .lbl {
  font: var(--mono-sm); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
}
.seo-callout__viz {
  display: flex; flex-direction: column; gap: 10px;
  position: relative; z-index: 2;
}
.seo-url {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  color: var(--ink);
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hair);
  border-radius: 10px;
  display: flex; align-items: center; gap: 12px;
}
.seo-url .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); flex-shrink: 0; }
.seo-url .domain { color: var(--ink-mute); }
.seo-url .path { color: var(--ink); }
.seo-url .accent { color: var(--accent); }
.seo-url .meta { margin-left: auto; font-size: 0.72rem; color: var(--ink-mute); }
@media (max-width: 900px) {
  .seo-callout { grid-template-columns: 1fr; gap: 32px; }
}

/* ── CAMPAGNES SUR MESURE ──────────────────────────────────── */
.campagnes {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-card);
  padding: clamp(28px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
.campagnes::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(244,114,182,0.18), transparent 70%);
  pointer-events: none;
}
.campagnes__copy { position: relative; z-index: 2; }
.campagnes__t { margin-top: 18px; max-width: 16ch; }
.campagnes__sub {
  margin-top: 18px;
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 50ch;
}
.campagnes__bullets {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink-dim);
}
.campagnes__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.campagnes__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.campagnes__form {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--hair);
  border-radius: var(--r-card);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.campagnes__form-head { margin-bottom: 4px; }
.campagnes__form-t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  margin: 8px 0 0;
  color: var(--ink);
}
.quote-field { display: flex; flex-direction: column; gap: 6px; }
.quote-field label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--ink-mute);
}
.quote-field input,
.quote-field textarea {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--hair);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.quote-field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.quote-field input:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,0,0,0.5);
}
.quote-error {
  color: #fda4af;
  background: rgba(244,63,94,0.12);
  border: 1px solid rgba(244,63,94,0.3);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.85rem;
}
.quote-success {
  color: #86efac;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.9rem;
}
.quote-submit { width: 100%; justify-content: center; }
.quote-micro {
  text-align: center;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9.5px;
  color: var(--ink-mute);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .campagnes { grid-template-columns: 1fr; gap: 32px; }
}

/* ── COMPARE TABLE ─────────────────────────────────────────── */
.compare {
  padding-block: clamp(40px, 6vw, 80px);
}
.compare__table {
  border: 1px solid var(--hair);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--surface);
}
.compare__row {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  border-top: 1px solid var(--hair-soft);
}
.compare__row:first-child { border-top: none; }
.compare__row:first-child .compare__cell {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--surface-2);
}
.compare__cell {
  padding: 18px 22px;
  border-left: 1px solid var(--hair-soft);
  font-size: 0.92rem;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare__cell:first-child { border-left: none; }
.compare__cell .yes {
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233B82F6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.compare__cell .no { color: var(--ink-mute); opacity: 0.4; font-size: 1.1rem; }
.compare__cell strong { color: var(--ink); font-weight: 600; }
@media (max-width: 760px) {
  .compare__row { grid-template-columns: 1.6fr 1fr 1fr; }
  .compare__row .compare__cell:nth-child(3) { display: none; }
  .compare__row .compare__cell:nth-child(4) { border-left: 1px solid var(--hair-soft); }
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { padding-block: var(--section-y); }
.faq__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.faq__head .h2 { margin-top: 18px; }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--hair-soft);
  padding: 22px 0;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border: 1px solid var(--hair);
  border-radius: 50%;
  color: var(--ink-mute);
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 400;
  transition: transform .3s var(--ease), border-color .3s var(--ease), color .3s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.faq__item p {
  margin-top: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 64ch;
}

/* ── END CTA ───────────────────────────────────────────────── */
.endcta {
  position: relative;
  padding: clamp(120px, 16vw, 200px) 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--hair);
}
.endcta__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.35; }
.endcta__bg img { width: 100%; height: 100%; object-fit: cover; }
.endcta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,7,0.95), rgba(5,5,7,0.4) 40%, rgba(5,5,7,0.95) 100%);
}
.endcta__inner { position: relative; z-index: 2; }
.endcta h2 { margin-top: 22px; max-width: 22ch; margin-inline: auto; }
.endcta--demo h2 {
  max-width: none;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.08;
}
.endcta--demo .endcta__sub { max-width: 64ch; }

/* ============================================================
   COCKPIT MOCKUP — Pilotez votre agence (realisations.html)
   ============================================================ */
.cockpit {
  background: #0A0E1A;
  background-image: radial-gradient(ellipse at top, rgba(59,130,246,0.06) 0%, rgba(10,14,26,0) 60%);
  padding: clamp(60px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.cockpit__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cockpit__h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cockpit__h2 .accent {
  color: var(--accent);
  display: inline-block;
}
.cockpit__caret {
  display: inline-block;
  color: var(--accent);
  opacity: 0.7;
  animation: cockpit-caret 1s steps(2) infinite;
  margin-left: 2px;
}
@keyframes cockpit-caret { 50% { opacity: 0; } }
.cockpit__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  max-width: 46ch;
  margin: 0 auto 48px;
  line-height: 1.55;
}

.cockpit__frame {
  max-width: 1180px;
  margin: 0 auto;
  background: #F8FAFC;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  text-align: left;
}
.cockpit__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.cockpit__dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.cockpit__dot--r { background: #ff5f57; }
.cockpit__dot--y { background: #febc2e; }
.cockpit__dot--g { background: #28c840; }
.cockpit__url {
  margin-left: 14px;
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  background: #F1F5F9;
  border-radius: 6px;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 280px;
}
.cockpit__status {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10B981;
  display: inline-block;
}

.cockpit__body {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 1px;
  background: #E2E8F0;
}
.cockpit__col {
  background: #FFFFFF;
  padding: 20px 18px;
  min-height: 460px;
}
.cockpit__col--planning { background: #FFFFFF; }
.cockpit__col--today { background: #FAFBFC; }

.cockpit__col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cockpit__col-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.cockpit__col-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: var(--accent);
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 22px;
  text-align: center;
}
.cockpit__nav {
  display: flex;
  gap: 6px;
}
.cockpit__nav button {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,0.08);
  background: #FFFFFF;
  display: grid; place-items: center;
  color: var(--ink-mute);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cockpit__nav button:hover { background: #F1F5F9; color: var(--ink); }
.cockpit__nav svg { width: 14px; height: 14px; }

/* ── Réservations cards ── */
.res-card {
  background: #FFFFFF;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.res-card--pending { border-color: rgba(15,23,42,0.10); }
.res-card--confirmed { background: #F0FDF4; border-color: #BBF7D0; }
.res-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.res-card__veh {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}
.res-card__client {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 2px;
}
.res-card__amt {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.res-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.btn-accept, .btn-reject {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 7px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.btn-accept svg, .btn-reject svg { width: 12px; height: 12px; }
.btn-accept {
  background: #10B981;
  color: #FFFFFF;
}
.btn-accept:hover { background: #059669; }
.btn-reject {
  background: #F1F5F9;
  color: var(--ink-mute);
}
.btn-reject:hover { background: #E2E8F0; color: var(--ink); }
.res-card__confirmed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #10B981;
  font-weight: 700;
  font-size: 0.84rem;
}
.res-card__confirmed svg { width: 14px; height: 14px; }

/* ── Planning ── */
.planning {
  font-size: 0.78rem;
}
.planning__row {
  display: grid;
  grid-template-columns: 110px repeat(7, 1fr);
  align-items: center;
  padding: 8px 0;
  min-height: 44px;
  border-bottom: 1px solid rgba(15,23,42,0.04);
}
.planning__row--head { padding: 6px 0 10px; min-height: 0; border-bottom: 1px solid rgba(15,23,42,0.08); }
.planning__row:last-child { border-bottom: none; }
.planning__cell-veh {
  display: flex;
  flex-direction: column;
  font-size: 0.76rem;
}
.planning__cell-veh strong {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
}
.planning__cell-veh span {
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.planning__day {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-mono);
}
.planning__day .d {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 700;
}
.planning__day .n {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}
.planning__day--today .n {
  background: var(--accent);
  color: #FFFFFF;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.planning__lane {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  position: relative;
}
.planning__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
  justify-content: center;
}
.planning__pill .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.planning__pill svg { width: 11px; height: 11px; }
.planning__pill--pending {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FDE68A;
}
.planning__pill--confirmed {
  background: #D1FAE5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

/* ── Today (Aujourd'hui) ── */
.today-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  background: #F1F5F9;
  border-radius: 10px;
  margin-bottom: 14px;
}
.today-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 7px;
  background: transparent;
  color: var(--ink-mute);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.today-tab svg { width: 12px; height: 12px; }
.today-tab--active {
  background: #FFFFFF;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(15,23,42,0.08);
}
.today-tab .badge {
  background: #F59E0B;
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 8px;
  min-width: 16px;
  text-align: center;
}
.today-tab--active .badge { background: #F59E0B; }

.today-card {
  background: #FFFFFF;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.today-card--active { border-color: rgba(59,130,246,0.30); box-shadow: 0 0 0 3px rgba(59,130,246,0.06); }
.today-card--pending { background: #FFFBEB; border-color: #FDE68A; }
.today-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.today-card__title { flex: 1; }
.today-card__title strong {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}
.today-card__title span {
  display: block;
  font-size: 0.76rem;
  color: var(--ink-mute);
  margin-top: 2px;
}
.today-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 5px;
}
.today-tag svg { width: 10px; height: 10px; }
.today-tag--out {
  background: var(--ink);
  color: #FFFFFF;
}
.today-tag--time {
  background: #FEF3C7;
  color: #B45309;
}
.today-card__reload {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,0.08);
  background: #FFFFFF;
  display: grid; place-items: center;
  color: var(--ink-mute);
  cursor: pointer;
}
.today-card__reload svg { width: 14px; height: 14px; }
.today-card__km-label {
  font-size: 0.74rem;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.today-card__km-now {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 9px;
  padding: 8px 12px;
  margin-bottom: 12px;
}
.today-card__km-now svg { width: 14px; height: 14px; color: var(--ink-mute); }
.today-card__km-now strong {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.today-card__overage {
  margin-left: auto;
  background: #FEF3C7;
  color: #B45309;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
}
.today-card__photos-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.today-card__bullets {
  display: inline-flex;
  gap: 4px;
}
.today-card__bullets i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10B981;
  display: inline-block;
}
.today-card__photos-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.today-card__thumb {
  width: 44px; height: 36px;
  border-radius: 6px;
  overflow: hidden;
  background: #F1F5F9;
  flex-shrink: 0;
}
.today-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.btn-checkout {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-checkout:hover { background: var(--accent-hover); }
.btn-checkout svg { width: 12px; height: 12px; }
.today-card__docs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.today-card__doc-ok {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #10B981;
  font-weight: 600;
}
.today-card__doc-ok svg { width: 11px; height: 11px; }

@media (max-width: 980px) {
  .cockpit__body { grid-template-columns: 1fr; }
  .cockpit__col { min-height: auto; padding: 24px 20px; border-bottom: 1px solid #E2E8F0; }
  .cockpit__col:last-child { border-bottom: none; }
  .planning__row { grid-template-columns: 90px repeat(7, 1fr); }
}
.endcta__sub { margin-top: 24px; max-width: 46ch; margin-inline: auto; color: var(--ink-dim); font-size: 1.05rem; line-height: 1.6; }
.endcta__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.endcta__micro {
  margin-top: 24px;
  font: var(--mono-sm); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   LIGHT THEME — scoped to html[data-theme="light"]
   Activated only on index.html for now.
   ============================================================ */
html[data-theme="light"] {
  --surface: #FFFFFF;
  --surface-2: #F7F7FA;
  --hair: rgba(15, 23, 42, 0.10);
  --hair-soft: rgba(15, 23, 42, 0.05);
  --ink: #0A0A12;
  --ink-dim: #3F3F4A;
  --ink-mute: #6C6C78;
}
html[data-theme="light"] body { background: #FFFFFF; color: var(--ink-dim); }

/* Veil — hide on light (the dark gradient + blue blobs clash) */
html[data-theme="light"] .veil { display: none; }

/* Page text default */
html[data-theme="light"] p { color: var(--ink-dim); }

/* Nav pill — white glass */
html[data-theme="light"] .nav {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .nav[data-scrolled="true"] {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.18);
  border-color: rgba(15, 23, 42, 0.10);
}
html[data-theme="light"] .nav__name { color: var(--ink); }
html[data-theme="light"] .lang { background: rgba(15, 23, 42, 0.03); border-color: rgba(15, 23, 42, 0.08); }

/* Buttons — ghost needs dark on light */
html[data-theme="light"] .btn--ghost {
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink);
  border-color: rgba(15, 23, 42, 0.12);
}
html[data-theme="light"] .btn--ghost:hover { background: rgba(15, 23, 42, 0.08); }

/* Chatcards — bubbles need dark-tint bg on white surface */
html[data-theme="light"] .chatcard {
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.15);
}
html[data-theme="light"] .chatcard__bubble--in {
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink-dim);
}
html[data-theme="light"] .chatcard--insta {
  background: linear-gradient(180deg, rgba(225, 48, 108, 0.05), transparent 50%), #FFFFFF;
}
html[data-theme="light"] .chatcard--wa {
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.06), transparent 50%), #FFFFFF;
}

/* Hero compare — after card glow recalibrated */
html[data-theme="light"] .hero__compare__col--after .chatcard {
  box-shadow: 0 30px 60px -30px rgba(59, 130, 246, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(59, 130, 246, 0.30);
}
html[data-theme="light"] .hero__compare__label {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.10);
}

/* Timeline — bubble surface + action highlight */
html[data-theme="light"] .timeline-step__num {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.10);
  box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.10);
}
html[data-theme="light"] .timeline-step.active .timeline-step__num {
  background: rgba(59, 130, 246, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 32px -6px var(--accent-glow);
}
html[data-theme="light"] .timeline-step__tag {
  background: rgba(15, 23, 42, 0.03);
}
html[data-theme="light"] .timeline-step__num::after {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.10);
}

/* Numbers cells */
html[data-theme="light"] .numbers__cell {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.08);
}

/* Studio band card */
html[data-theme="light"] .studioband__card {
  background:
    radial-gradient(ellipse 80% 60% at 100% 50%, rgba(59,130,246,0.08), transparent 65%),
    #FFFFFF;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 30px 70px -30px rgba(15, 23, 42, 0.15);
}
html[data-theme="light"] .studioband__shot { border-color: rgba(15, 23, 42, 0.10); }

/* End CTA — light overlay over the bg image */
html[data-theme="light"] .endcta {
  border-top-color: rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .endcta__bg { opacity: 0.18; }
html[data-theme="light"] .endcta__bg::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.55) 40%, rgba(255, 255, 255, 0.96) 100%);
}

/* Footer */
html[data-theme="light"] .foot {
  border-top-color: rgba(15, 23, 42, 0.08);
  background: #FAFAFB;
}
html[data-theme="light"] .foot__bar { border-top-color: rgba(15, 23, 42, 0.05); }

/* Mobile sticky bar */
html[data-theme="light"] .mbar {
  background: rgba(255, 255, 255, 0.96);
  border-top-color: rgba(15, 23, 42, 0.10);
  box-shadow: 0 -20px 50px -24px rgba(15, 23, 42, 0.15);
}

/* dim helper recalibrated for light contrast */
html[data-theme="light"] .dim { color: #9A9AA5; }

/* Realisations grid — card hover + badges on light */
html[data-theme="light"] .real-card {
  box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .real-card:hover {
  border-color: rgba(59, 130, 246, 0.30);
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.22);
}
html[data-theme="light"] .real-card__num {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.10);
}
html[data-theme="light"] .real-card__badge {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.10);
}
html[data-theme="light"] .hero--centered .hero__stats .k { color: var(--ink-mute); }
