/* ============================================================
   MY VTC GO — alternative.css
   Styles pour les pages Alternative Uber/Bolt
   FR · EN · DE · LU · PT

   NE PAS charger sur les autres pages du site
   Dépendances globales : icons.css · faq.css · scroll-arrows.css · footer.css
   ============================================================ */

/* ====================================================
   SERVICE.CSS — alternative-uber-bolt.html
   Police : Outfit self-hosted (RGPD conforme)
===================================================== */

/* ─── Variables ─────────────────────────────── */
:root {
  --black:      #0a0a0a;
  --dark:       #111111;
  --dark2:      #181818;
  --dark3:      #202020;
  --surface:    #252525;
  --border:     rgba(255,255,255,0.07);
  --border-md:  rgba(255,255,255,0.12);
  --silver:     #C0C0C0;
  --silver-dim: #888888;
  --white:      #f0f0f0;
  --muted:      #666666;
  --accent:     #e8e8e8;
  --yes:        #6fcf97;
  --no:         #eb5757;
  --neutral:    #f2994a;

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease-out);
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Layout ─────────────────────────────────── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 72px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(192,192,192,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(192,192,192,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--silver-dim);
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--silver);
  font-weight: 400;
}
.hero-desc {
  font-size: 15px;
  color: var(--silver-dim);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--dark2);
  border: 1px solid var(--border-md);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px;
  color: var(--silver-dim);
  letter-spacing: 0.02em;
}
.hero-badge svg {
  width: 13px; height: 13px;
  stroke: var(--silver);
  flex-shrink: 0;
}

/* ─── NAV BREADCRUMB ─────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--silver); }
.breadcrumb-sep { color: var(--border-md); }

/* ─── SECTION ────────────────────────────────── */
.section {
  padding: 72px 0;
}
.section--alt {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 14px;
  color: var(--silver-dim);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.divider {
  width: 32px;
  height: 1px;
  background: var(--silver-dim);
  margin: 16px 0 40px;
  opacity: 0.4;
}

/* ─── COMPARISON TABLE ───────────────────────── */
.cmp-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-md);
}
.cmp-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

/* Header */
.cmp-table thead tr {
  background: var(--dark3);
  border-bottom: 1px solid var(--border-md);
}
.cmp-table th {
  padding: 20px 28px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--silver-dim);
  text-transform: uppercase;
}
.cmp-table th:first-child {
  width: 38%;
  color: var(--muted);
  font-weight: 400;
  font-size: 11px;
}
.cmp-table th.th-vtcgo {
  color: var(--white);
}
.th-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}
.th-logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.th-logo-dot--vtcgo { background: var(--silver); }
.th-logo-dot--apps  { background: var(--muted); }

/* Body rows */
.cmp-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.cmp-table tbody tr:last-child { border-bottom: none; }
.cmp-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }
.cmp-table tbody tr:hover { background: var(--dark3); }

.cmp-table td {
  padding: 18px 28px;
  vertical-align: middle;
  font-size: 14px;
  color: var(--silver-dim);
}
.cmp-table td:first-child {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cmp-table td:first-child svg {
  width: 15px; height: 15px;
  stroke: var(--muted);
  flex-shrink: 0;
}

/* Cell badges */
.cell-yes, .cell-no, .cell-partial {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}
.cell-yes  { color: var(--yes); }
.cell-no   { color: var(--no); }
.cell-partial { color: var(--neutral); }

.cell-yes svg, .cell-no svg, .cell-partial svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.cell-yes svg  { stroke: var(--yes); }
.cell-no svg   { stroke: var(--no); }
.cell-partial svg { stroke: var(--neutral); }

.cell-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.cell-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* ─── FEATURE CARDS ─────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.feature-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover {
  border-color: var(--border-md);
  transform: translateY(-2px);
}
.feature-card__icon {
  width: 40px; height: 40px;
  background: var(--dark3);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card__icon svg {
  width: 18px; height: 18px;
  stroke: var(--silver);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── ROUTES LIST ────────────────────────────── */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.route-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 13px;
  color: var(--silver-dim);
  transition: border-color var(--transition);
}
.route-item:hover { border-color: var(--border-md); }
.route-item svg {
  width: 14px; height: 14px;
  stroke: var(--muted);
  flex-shrink: 0;
}

/* ─── SUMMARY COLUMNS ───────────────────────── */
.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.summary-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}
.summary-card--vtcgo {
  border-color: rgba(192,192,192,0.2);
}
.summary-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--silver-dim);
  line-height: 1.5;
}
.summary-list li svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.summary-list--yes li svg  { stroke: var(--yes); }
.summary-list--no  li svg  { stroke: var(--muted); }

/* ─── CTA ────────────────────────────────────── */
.cta-section {
  padding: 80px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.cta-section p {
  font-size: 14px;
  color: var(--silver-dim);
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn--primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--primary:hover { background: var(--silver); border-color: var(--silver); }
.btn--ghost {
  background: transparent;
  color: var(--silver);
  border-color: var(--border-md);
}
.btn--ghost:hover { border-color: var(--silver-dim); color: var(--white); }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 680px) {
  .summary-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 52px; }
  .section { padding: 52px 0; }
  .cmp-table th, .cmp-table td { padding: 14px 16px; }
  .cmp-table td:first-child { font-size: 12px; }
}

/* ============================================================
   TOPBAR — navigation fixe en haut (identique aux pages ville)
   ============================================================ */

/* ===== TOPBAR ===== */
.hero-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(28,28,28,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar-left { display: flex; align-items: center; gap: 14px; }
.logo-link { display: flex; align-items: center; }
.logo { height: 46px; width: auto; object-fit: contain; }
.topbar-resa-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 100px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .06em;
  white-space: nowrap; transition: var(--t);
}
.topbar-resa-btn:hover { transform: translateY(-1px); opacity: .9; }
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 8px; border-radius: 100px;
}
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 7px; border-radius: 8px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.4); transition: color .2s;
}
.lang-btn.active { color: #F0F6FF; }
.lang-btn img { border-radius: 2px; }

/* ============================================================
   CITY BAR — navigation fixe en bas (6 boutons)
   ============================================================ */

/* ===== CITY BAR ===== */
.city-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 600;
  display: flex; align-items: stretch; height: 52px;
  background: rgba(15,15,18,.95);
  backdrop-filter: blur(28px);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
}
.city-bar-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; color: rgba(192,192,192,.55);
  font-size: 9px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.06); transition: color .2s, background .2s;
  padding: 0 2px;
}
.city-bar-btn:last-child { border-right: none; }
.city-bar-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.city-bar-btn span { display: block; font-size: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; text-align: center; }
.city-bar-btn:hover, .city-bar-btn.active { color: #D4D4D4; background: rgba(255,255,255,.05); }


/* ============================================================
   ALT-LANG-SWITCH — Sélecteur de langue flottant
   Superposé sur la city-bar, centré horizontalement
   ============================================================ */

.alt-lang-switch {
  position: fixed !important;
  bottom: 56px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  z-index: 700;
  pointer-events: none;
}

.alt-lang-switch a.alt-lang-btn {
  pointer-events: all;
}

/* Pill container */
.alt-lang-switch::before {
  content: none;
}

/* Groupe pill */
.alt-lang-switch {
  gap: 0;
}

.alt-lang-btn {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  background: rgba(15, 15, 18, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.alt-lang-btn:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px 0 0 100px;
  padding-left: 14px;
}

.alt-lang-btn:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 100px 100px 0;
  padding-right: 14px;
}

.alt-lang-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(35, 35, 40, 0.97);
}

.alt-lang-btn.active {
  color: #fff;
  background: rgba(40, 40, 46, 0.99);
}

.alt-lang-btn img {
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .alt-lang-btn {
    padding: 5px 8px;
    font-size: 10px;
    gap: 4px;
  }
  .alt-lang-btn:first-child { padding-left: 10px; }
  .alt-lang-btn:last-child  { padding-right: 10px; }
  .alt-lang-btn img { width: 15px; height: 11px; }
}
