/* SubventionPilot — Dispositifs hub + fiche dispositif + simulateur + contact */

/* ========== DISPOSITIFS HUB ========== */
.hub-hero {
  padding: clamp(48px, 6vw, 96px) 0 clamp(40px, 4vw, 56px);
  border-bottom: 1px solid var(--rule);
}
.hub-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.hub-hero h1 { margin: 0; max-width: 16ch; }
.hub-hero .lead { max-width: 48ch; margin-top: 20px; }
.hub-hero .anchors {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hub-hero .anchors a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  transition: border-color .12s, color .12s, background .12s;
  background: var(--surface);
}
.hub-hero .anchors a:hover { border-color: var(--brand); color: var(--brand); }
@media (max-width: 900px) { .hub-hero-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Comparative table */
.compare-table-wrap {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table thead th {
  text-align: left;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--bg-sunken);
  border-bottom: 1px solid var(--rule);
  font-weight: 500;
}
.compare-table tbody td {
  padding: 18px 16px;
  border-top: 1px solid var(--rule);
  vertical-align: middle;
}
.compare-table tbody tr:first-child td { border-top: 0; }
.compare-table tbody tr:hover { background: var(--bg-sunken); }
.compare-table .code-cell { font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); }
.compare-table .name-cell b { font-weight: 600; letter-spacing: -0.005em; }
.compare-table .rate-cell { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.compare-table .rate-cell b { color: var(--brand); font-size: 15px; }
.compare-table .rate-cell .vs { color: var(--ink-muted); font-size: 11px; display: block; margin-top: 2px; }
.compare-table .amount-cell b { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 14px; }
.compare-table td .icocell { display: inline-flex; align-items: center; gap: 10px; }
.compare-table td .icocell .ico {
  width: 28px; height: 28px; border-radius: 4px;
  background: var(--brand-bg); color: var(--brand);
  display: grid; place-items: center;
}
.compare-table td .icocell .ico svg { width: 14px; height: 14px; }
.compare-table .link-cell a { color: var(--brand); display: inline-flex; gap: 4px; align-items: center; font-weight: 500; }

@media (max-width: 780px) {
  .compare-table-wrap { overflow-x: auto; }
  .compare-table { min-width: 720px; }
}

/* Full list cards (repeated from landing but richer) */
.hub-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.hub-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  transition: border-color .15s, box-shadow .15s;
  color: inherit;
}
.hub-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-2); }
.hub-card .left { display: flex; flex-direction: column; }
.hub-card .cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.hub-card h3 { margin: 0; font-size: 19px; letter-spacing: -0.01em; }
.hub-card p { margin: 10px 0 20px; font-size: 14px; color: var(--ink-soft); line-height: 1.5; max-width: 44ch; }
.hub-card .meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.hub-card .right {
  text-align: right;
  border-left: 1px solid var(--rule);
  padding-left: 24px;
  min-width: 140px;
}
.hub-card .right .num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hub-card .right .num small {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-left: 2px;
}
.hub-card .right .sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-top: 8px;
}
.hub-card .right .link {
  margin-top: 16px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
@media (max-width: 820px) {
  .hub-cards { grid-template-columns: 1fr; }
  .hub-card { grid-template-columns: 1fr; }
  .hub-card .right { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 20px; text-align: left; }
}

/* ========== FICHE DISPOSITIF ========== */
.fiche-hero {
  padding: clamp(48px, 6vw, 80px) 0 clamp(36px, 4vw, 56px);
  border-bottom: 1px solid var(--rule);
}
.fiche-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.fiche-breadcrumb a { color: var(--ink-muted); }
.fiche-breadcrumb a:hover { color: var(--brand); }
.fiche-breadcrumb svg { width: 10px; height: 10px; opacity: 0.6; }
.fiche-breadcrumb .current { color: var(--ink); }

.fiche-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: end;
}
.fiche-hero h1 { margin: 0 0 20px; max-width: 18ch; }
.fiche-hero .code {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.fiche-hero .lead { max-width: 52ch; }
.fiche-hero .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.fiche-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}
.fiche-kpis > div {
  padding: 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.fiche-kpis > div:nth-child(2n) { border-right: 0; }
.fiche-kpis > div:nth-last-child(-n+2) { border-bottom: 0; }
.fiche-kpis .l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fiche-kpis .n {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.fiche-kpis .n small {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  margin-left: 4px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.fiche-kpis .d { margin-top: 6px; font-size: 12px; color: var(--ink-muted); font-family: var(--font-mono); }
@media (max-width: 900px) { .fiche-hero-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Fiche body: sticky TOC + content */
.fiche-body {
  padding: 64px 0 120px;
}
.fiche-body-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}
.fiche-toc {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.fiche-toc .eyebrow { display: block; margin-bottom: 16px; }
.fiche-toc ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.fiche-toc a {
  display: block;
  padding: 8px 12px;
  border-left: 2px solid transparent;
  font-size: 13px;
  color: var(--ink-soft);
  transition: color .12s, border-color .12s, background .12s;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.fiche-toc a:hover { color: var(--ink); background: var(--bg-sunken); }
.fiche-toc a.active {
  color: var(--brand);
  border-left-color: var(--brand);
  background: var(--brand-bg);
  font-weight: 500;
}
.fiche-toc .cta-box {
  margin-top: 24px;
  padding: 16px;
  background: var(--bg-sunken);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.fiche-toc .cta-box p { margin: 0 0 12px; font-size: 12px; color: var(--ink-soft); line-height: 1.5; }
.fiche-toc .cta-box .btn { width: 100%; justify-content: center; }

.fiche-content section { margin-bottom: 64px; scroll-margin-top: 88px; }
.fiche-content section:last-child { margin-bottom: 0; }
.fiche-content h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin: 0 0 24px;
}
.fiche-content h2 .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  font-weight: 500;
  margin-right: 14px;
  vertical-align: 4px;
  text-transform: uppercase;
}
.fiche-content p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 16px; max-width: 62ch; }
.fiche-content ul.check-list { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 12px; }
.fiche-content ul.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}
.fiche-content ul.check-list li svg {
  width: 16px; height: 16px;
  color: var(--positive);
  margin-top: 3px;
}

/* Highlight box (chiffre clé) */
.highlight-box {
  margin: 28px 0;
  padding: 24px 28px;
  background: var(--brand-bg);
  border: 1px solid color-mix(in oklch, var(--brand) 30%, transparent);
  border-left: 3px solid var(--brand);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.highlight-box .n {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--brand);
}
.highlight-box .n small {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-left: 4px;
  vertical-align: top;
  font-weight: 500;
  color: var(--brand);
}
.highlight-box .txt { font-size: 15px; color: var(--ink); line-height: 1.5; }
.highlight-box .txt b { color: var(--brand); font-weight: 600; }

/* Warning box */
.warn-box {
  margin: 28px 0;
  padding: 20px 24px;
  background: color-mix(in oklch, var(--warning) 10%, var(--bg-sunken));
  border: 1px solid color-mix(in oklch, var(--warning) 40%, transparent);
  border-left: 3px solid var(--warning);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 16px;
  align-items: start;
}
.warn-box svg { width: 18px; height: 18px; color: var(--warning); margin-top: 2px; }
.warn-box b { color: var(--ink); font-weight: 600; display: block; margin-bottom: 4px; font-size: 14px; letter-spacing: 0.02em; text-transform: uppercase; font-family: var(--font-mono); letter-spacing: 0.08em; }
.warn-box p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* Process timeline */
.process-tl { list-style: none; padding: 0; margin: 16px 0 24px; display: grid; gap: 0; }
.process-tl li {
  position: relative;
  padding: 0 0 20px 40px;
  border-left: 1px solid var(--rule);
  margin-left: 12px;
}
.process-tl li:last-child { border-left: 1px solid transparent; padding-bottom: 0; }
.process-tl li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: -13px; top: -2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}
.process-tl { counter-reset: step; }
.process-tl li b { font-size: 15px; color: var(--ink); display: block; margin-bottom: 4px; }
.process-tl li span { font-size: 13px; color: var(--ink-muted); font-family: var(--font-mono); }
.process-tl li p { font-size: 14px; color: var(--ink-soft); margin: 6px 0 0; }

/* Floating CTA */
.fiche-float-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 40;
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid var(--accent-deep);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex; gap: 14px; align-items: center;
  box-shadow: var(--shadow-3);
  font-size: 14px;
  font-weight: 500;
}
.fiche-float-cta .btn { height: 36px; padding: 0 14px; font-size: 13px; background: var(--accent-ink); color: var(--accent); border-color: var(--accent-ink); }
.fiche-float-cta .btn:hover { background: #fff; }

@media (max-width: 900px) {
  .fiche-body-grid { grid-template-columns: 1fr; gap: 32px; }
  .fiche-toc { position: relative; top: 0; max-height: none; padding-bottom: 16px; border-bottom: 1px solid var(--rule); }
  .fiche-toc ol { display: flex; gap: 4px; overflow-x: auto; padding-bottom: 8px; }
  .fiche-toc a { white-space: nowrap; border-left: 0; border-bottom: 2px solid transparent; border-radius: 0; padding: 8px 10px; }
  .fiche-toc a.active { border-left: 0; border-bottom-color: var(--brand); background: transparent; }
  .fiche-toc .cta-box { display: none; }
  .fiche-float-cta { bottom: 16px; right: 16px; left: 16px; justify-content: space-between; }
}

/* ========== SIMULATEUR ========== */
.sim-wrap {
  padding: 56px 0 96px;
  min-height: calc(100vh - 64px);
}
.sim-shell {
  max-width: 720px;
  margin: 0 auto;
}
.sim-progress {
  margin-bottom: 40px;
}
.sim-progress .head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.sim-progress .head .step { color: var(--ink); font-weight: 600; }
.sim-progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.sim-progress-bar .fill {
  height: 100%;
  background: var(--brand);
  border-radius: 2px;
  transition: width .4s cubic-bezier(.2,.8,.2,1);
}

.sim-screen-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sim-screen h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 8px;
  font-variation-settings: "opsz" 144;
}
.sim-screen p.sub { color: var(--ink-soft); font-size: 16px; margin: 0 0 40px; max-width: 54ch; }

.sim-q { margin-bottom: 32px; }
.sim-q .label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.sim-q .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-right: 12px;
  display: inline-block;
}
.sim-q .hint { font-size: 13px; color: var(--ink-muted); margin-bottom: 12px; }

.sim-choices {
  display: grid;
  gap: 8px;
}
.sim-choices.cols-2 { grid-template-columns: 1fr 1fr; }
.sim-choices.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 560px) {
  .sim-choices.cols-2, .sim-choices.cols-3 { grid-template-columns: 1fr; }
}
.sim-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  background: var(--surface);
  cursor: pointer;
  transition: all .12s;
  font-size: 14px;
  color: var(--ink);
  text-align: left;
  font-family: inherit;
}
.sim-choice:hover { border-color: var(--brand); background: var(--brand-bg); }
.sim-choice.selected {
  border-color: var(--brand);
  background: var(--brand-bg);
  color: var(--brand);
  font-weight: 500;
}
.sim-choice .radio {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
  position: relative;
  transition: border-color .12s;
}
.sim-choice.selected .radio { border-color: var(--brand); }
.sim-choice.selected .radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--brand);
}

.sim-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

/* Simulateur — map zones */
.zone-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.zone-map .zone {
  padding: 20px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  background: var(--surface);
  cursor: pointer;
  text-align: center;
  transition: all .12s;
  font-family: inherit;
}
.zone-map .zone:hover { border-color: var(--brand); background: var(--brand-bg); }
.zone-map .zone.selected { border-color: var(--brand); background: var(--brand-bg); }
.zone-map .zone-svg { margin: 0 auto 8px; width: 46px; height: 46px; color: var(--ink-soft); }
.zone-map .zone.selected .zone-svg { color: var(--brand); }
.zone-map .zone-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.zone-map .zone-desc { font-size: 11px; color: var(--ink-muted); margin-top: 2px; font-family: var(--font-mono); letter-spacing: 0.04em; }

/* Results screen */
.sim-results {
  max-width: 980px;
  margin: 0 auto;
}
.sim-results-head {
  text-align: left;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 40px;
}
.sim-results-head .badge-positive { margin-bottom: 16px; }
.sim-results-head h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  line-height: 1.05;
  font-variation-settings: "opsz" 144;
}
.sim-results-head .total {
  display: flex; align-items: baseline; gap: 14px; margin-top: 20px;
}
.sim-results-head .total .n {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--brand);
  font-variation-settings: "opsz" 144;
}
.sim-results-head .total .l {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-transform: uppercase;
  max-width: 20ch;
  line-height: 1.4;
}

.result-list { display: grid; gap: 12px; margin-bottom: 48px; }
.result-card {
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
}
.result-card .ico {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--brand-bg); color: var(--brand);
  display: grid; place-items: center;
}
.result-card .ico svg { width: 20px; height: 20px; }
.result-card .text .name { font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.result-card .text .code { font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); letter-spacing: 0.08em; margin-top: 2px; }
.result-card .amount {
  text-align: right;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--brand);
  font-variation-settings: "opsz" 144;
}
.result-card .amount small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}
@media (max-width: 720px) {
  .result-card { grid-template-columns: auto 1fr; gap: 16px; }
  .result-card .amount { grid-column: 1 / -1; text-align: left; border-top: 1px solid var(--rule); padding-top: 12px; }
}

.sim-results-cta {
  padding: 40px;
  background: var(--brand);
  color: var(--brand-ink);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
}
.sim-results-cta h2 { font-family: var(--font-display); font-size: 28px; margin: 0 0 8px; letter-spacing: -0.018em; font-weight: 500; }
.sim-results-cta p { margin: 0; opacity: 0.85; font-size: 15px; }
.sim-results-cta .actions { display: flex; gap: 10px; }
.sim-results-cta .btn-primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent-deep); }
.sim-results-cta .btn-ghost { color: var(--brand-ink); border-color: color-mix(in oklch, var(--brand-ink) 30%, transparent); }
.sim-results-cta .btn-ghost:hover { background: color-mix(in oklch, var(--brand-ink) 10%, transparent); border-color: var(--brand-ink); }
@media (max-width: 720px) { .sim-results-cta { grid-template-columns: 1fr; } }

/* Gated form */
.gated-form {
  display: grid;
  gap: 16px;
  max-width: 480px;
}

/* ========== CONTACT ========== */
.contact-wrap {
  padding: 64px 0 96px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
}
.contact-intro h1 { margin: 0 0 20px; max-width: 16ch; }
.contact-intro .lead { max-width: 40ch; }
.contact-info {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}
.contact-info-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
}
.contact-info-item .ico {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--brand-bg);
  color: var(--brand);
  display: grid; place-items: center;
}
.contact-info-item .ico svg { width: 14px; height: 14px; }
.contact-info-item .l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-muted); text-transform: uppercase; margin-bottom: 2px; }
.contact-info-item .v { font-size: 15px; color: var(--ink); }

.contact-form {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: grid;
  gap: 20px;
}
.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form .row2 { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
}

.contact-sent {
  padding: 56px 40px;
  background: var(--positive-bg);
  border: 1px solid color-mix(in oklch, var(--positive) 30%, transparent);
  border-radius: var(--r-lg);
  text-align: center;
  display: grid; gap: 12px;
  justify-items: center;
}
.contact-sent .ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--positive);
  color: #fff;
  display: grid; place-items: center;
}
.contact-sent h2 { margin: 0; font-size: 24px; letter-spacing: -0.015em; }
.contact-sent p { margin: 0; color: var(--ink-soft); max-width: 40ch; }

/* ========== FAQ — version épurée 2026-04-25 ========== */
.faq-hero {
  padding: clamp(40px, 5vw, 72px) 0 clamp(28px, 3vw, 40px);
  border-bottom: 1px solid var(--rule);
}
.faq-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.faq-breadcrumb a { color: var(--ink-muted); }
.faq-breadcrumb a:hover { color: var(--brand); }
.faq-breadcrumb svg { width: 9px; height: 9px; opacity: 0.55; }
.faq-breadcrumb .current { color: var(--ink); }

.faq-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.faq-hero h1 {
  margin: 0 0 14px;
  max-width: 22ch;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.faq-hero .lead {
  max-width: 56ch;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
}
.faq-hero .lead a {
  color: var(--brand);
  border-bottom: 1px solid color-mix(in oklab, var(--brand) 35%, transparent);
}
.faq-hero .lead a:hover { border-bottom-color: var(--brand); }

.faq-body {
  padding: clamp(32px, 4vw, 56px) 0 clamp(48px, 6vw, 80px);
}
.faq-cat { margin-bottom: clamp(32px, 4vw, 56px); }
.faq-cat:last-child { margin-bottom: 0; }
.faq-cat-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0 0 8px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.faq-cat-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  font-weight: 500;
}
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ""; }
.faq-item summary:hover { color: var(--brand); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
  border-radius: 2px;
}
.faq-q {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: inherit;
  flex: 1;
}
.faq-toggle {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  position: relative;
  transition: transform 0.25s ease;
  opacity: 0.5;
}
.faq-item summary:hover .faq-toggle { opacity: 1; }
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.faq-toggle::before {
  width: 10px;
  height: 1px;
}
.faq-toggle::after {
  width: 1px;
  height: 10px;
}
.faq-item[open] .faq-toggle { opacity: 1; }
.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  padding: 0 0 22px;
  max-width: 70ch;
  animation: faqSlide 0.25s ease-out;
}
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-a p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 600px) {
  .faq-hero { padding: 32px 0 24px; }
  .faq-hero h1 { font-size: 24px; line-height: 1.15; }
  .faq-hero .lead { font-size: 14px; }
  .faq-eyebrow { font-size: 10px; margin-bottom: 10px; }
  .faq-breadcrumb { margin-bottom: 14px; font-size: 10px; }
  .faq-cat { margin-bottom: 32px; }
  .faq-cat-title { gap: 8px; font-size: 16px; }
  .faq-cat-num { font-size: 10px; }
  .faq-item summary { padding: 16px 0; gap: 14px; }
  .faq-q { font-size: 14px; line-height: 1.4; }
  .faq-toggle { width: 11px; height: 11px; margin-top: 4px; }
  .faq-a p { font-size: 13.5px; }
  .faq-a { padding-bottom: 18px; }
}
