/* ============================================================
   ALTERNATIVE UBER & BOLT — page-specific styles
   Direction : comparatif factuel — tableau, VS, landing produit
   ============================================================ */

.alt-hero {
  padding: calc(var(--header-h) + 56px) 0 60px;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--stroke);
}
.alt-hero .eyebrow { margin: 0 auto 22px; }
.alt-hero h1 { max-width: 760px; margin: 0 auto 18px; }
.alt-hero .lead {
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 30px;
}
.alt-hero-chips { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.alt-hero-chips span {
  font-size: 0.84rem; font-weight: 600; color: var(--text-mid);
  background: var(--white); border: 1px solid var(--stroke-strong);
  border-radius: var(--r-pill); padding: 8px 16px;
}

.vs-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
}
.vs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.vs-table th, .vs-table td {
  padding: 18px 22px;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--stroke);
}
.vs-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-low);
  background: var(--surface);
}
.vs-table thead th.col-us {
  color: var(--accent);
}
.vs-table tbody th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-hi);
  font-size: 0.9rem;
  white-space: nowrap;
}
.vs-table tbody td.col-us {
  background: var(--accent-dim);
  font-weight: 600;
  color: var(--text-hi);
}
.vs-table tbody tr:last-child th, .vs-table tbody tr:last-child td { border-bottom: none; }

.zone-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.zone-pill-row a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-hi);
  background: var(--white);
  border: 1.5px solid var(--stroke-strong);
  border-radius: var(--r-pill);
  padding: 12px 22px;
  transition: all 0.18s ease;
}
.zone-pill-row a:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.transfer-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .transfer-type-grid { grid-template-columns: 1fr; } }
.transfer-card {
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  padding: 26px;
}
.transfer-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.transfer-card p { font-size: 0.9rem; margin: 0; }
.transfer-card strong { color: var(--text-hi); }

.ld-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ld-ticker span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--r-sm);
  padding: 10px 16px;
}

.foryou-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--stroke);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.foryou-item {
  background: var(--white);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.foryou-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; shape-rendering: geometricPrecision; }
.foryou-item span { font-size: 0.94rem; color: var(--text-hi); font-weight: 500; }
