/* TaxiApp.club — home (autonome) — genere le 28/07/2026 — ne pas editer page par page */
:root {
      --orange: #E86000;
      --orange-light: #FF7A20;
      --orange-dark: #C05000;
      --amber: #FFC433;
      --bg: #07070A;
      --bg-2: #0E0E14;
      --bg-3: #16161E;
      --bg-card: #1A1A24;
      --border: rgba(255,255,255,0.08);
      --border-orange: rgba(232,96,0,0.3);
      --text: #F2F2F5;
      --text-2: #9898A8;
      --text-3: #5A5A6A;
      --font-head: 'Bricolage Grotesque', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --radius: 16px;
      --radius-sm: 10px;
      --radius-xl: 28px;
      --shadow: 0 8px 32px rgba(0,0,0,0.4);
      --shadow-orange: 0 8px 32px rgba(232,96,0,0.2);
      --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
    }
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
h1,h2,h3,h4,h5 {
      font-family: var(--font-head);
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
.section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
    }
.section-label::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--orange);
    }
.container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 20px;
    }
section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }
.nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 20px;
      transition: var(--transition);
    }
.nav.scrolled {
      background: rgba(7,7,10,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
.nav-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
.logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
.logo-img {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      object-fit: cover;
      background: #000;
    }
.logo-name {
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.03em;
    }
.logo-name span { color: var(--orange); }
.nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }
.nav-links a {
      padding: 8px 14px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-2);
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }
.btn-nav-ghost {
      padding: 9px 18px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-2);
      border: 1px solid var(--border);
      border-radius: 50px;
      transition: var(--transition);
    }
.btn-nav-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.btn-nav-cta {
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      color: #000;
      background: var(--orange);
      border-radius: 50px;
      transition: var(--transition);
      box-shadow: 0 0 0 0 rgba(232,96,0,0.4);
    }
.btn-nav-cta:hover {
      background: var(--orange-light);
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(232,96,0,0.35);
    }
.hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }
.hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: var(--transition);
    }
.mobile-menu {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: var(--bg-2);
      border-bottom: 1px solid var(--border);
      padding: 20px;
      flex-direction: column;
      gap: 4px;
      z-index: 999;
    }
.mobile-menu.open { display: flex; }
.mobile-menu a {
      padding: 12px 16px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text-2);
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }
.mobile-menu a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.mobile-menu-cta {
      margin-top: 8px;
      padding: 14px;
      font-size: 16px;
      font-weight: 600;
      color: #000 !important;
      background: var(--orange);
      border-radius: var(--radius-sm);
      text-align: center;
    }
@media (max-width: 900px) {
      .nav-links, .nav-actions { display: none; }
      .hamburger { display: flex; }
    }
.hero {
      position: relative;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 72px;
    }
.hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,96,0,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(255,196,51,0.05) 0%, transparent 50%),
        var(--bg);
    }
.hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 50px 50px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    }
.hero-content {
      position: relative;
      z-index: 1;
      width: 100%;
    }
.hero-inner {
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 64px;
      align-items: center;
      padding: 80px 0;
    }
.hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px 6px 8px;
      background: rgba(232,96,0,0.1);
      border: 1px solid var(--border-orange);
      border-radius: 50px;
      font-size: 13px;
      font-weight: 500;
      color: var(--orange-light);
      margin-bottom: 28px;
    }
.hero-badge-dot {
      width: 8px; height: 8px;
      background: var(--orange);
      border-radius: 50%;
      animation: blink 2s ease-in-out infinite;
    }
@keyframes blink {
      0%,100% { opacity:1; }
      50% { opacity:0.3; }
    }
.hero h1 {
      font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 800;
      margin-bottom: 24px;
      color: var(--text);
      min-height: 1.1lh;       
    }
.hero h1 .highlight {
      background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
.hero-desc {
      font-size: 18px;
      color: var(--text-2);
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 40px;
    }
.hero-ctas {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 48px;
      min-height: 56px;        
      contain: layout style;   
    }
.btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      font-size: 16px;
      font-weight: 600;
      color: #000;
      background: var(--orange);
      border-radius: 50px;
      transition: var(--transition);
      box-shadow: var(--shadow-orange);
      min-height: 52px;       
      box-sizing: border-box;
    }
.btn-primary:hover {
      background: var(--orange-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(232,96,0,0.35);
    }
.btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 28px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      border: 1px solid var(--border);
      border-radius: 50px;
      transition: var(--transition);
    }
.btn-secondary:hover {
      border-color: rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.04);
    }
.hero-trust {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
.hero-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--text-2);
    }
.trust-icon {
      width: 32px; height: 32px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }
.hero-app-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow);
      position: relative;
    }
.app-card-top {
      padding: 28px 28px 24px;
      background: linear-gradient(135deg, rgba(232,96,0,0.08) 0%, transparent 70%);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 14px;
    }
.app-icon {
      width: 52px; height: 52px;
      border-radius: 13px;
      overflow: hidden;
      flex-shrink: 0;
    }
.app-icon img { width:100%; height:100%; object-fit:cover; display:block; }
.app-card-title {
      font-family: var(--font-head);
      font-size: 21px; font-weight: 800;
      color: var(--text); line-height: 1.1;
    }
.app-card-sub { font-size: 12px; color: var(--text-2); margin-top: 3px; }
.app-card-rating {
      margin-left: auto;
      text-align: right;
      flex-shrink: 0;
    }
.app-card-stars { color: var(--amber); font-size: 13px; letter-spacing: 1px; }
.app-card-rating-num {
      font-family: var(--font-head);
      font-size: 18px; font-weight: 800;
      color: var(--text); line-height: 1;
    }
.app-card-rating-label { font-size: 10px; color: var(--text-3); }
.app-card-body { padding: 20px 28px 24px; }
.app-card-stats {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 6px;
      margin-bottom: 18px;
    }
.app-stat {
      text-align: center;
      padding: 12px 6px;
      background: var(--bg-3);
      border-radius: var(--radius-sm);
    }
.app-stat-num {
      font-family: var(--font-head);
      font-size: 20px; font-weight: 800;
      letter-spacing: -.02em; color: var(--text); line-height: 1;
    }
.app-stat-num.orange { color: var(--orange); }
.app-stat-label { font-size: 10px; color: var(--text-3); margin-top: 3px; }
.app-card-checks {
      display: flex; flex-direction: column; gap: 7px;
      margin-bottom: 20px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--border);
    }
.app-check-item {
      display: flex; align-items: center; gap: 9px;
      font-size: 13px; color: var(--text-2);
    }
.app-check-icon {
      width: 18px; height: 18px;
      background: rgba(34,197,94,0.12);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; color: #22c55e;
      flex-shrink: 0;
    }
.app-download-btns {
      display: flex;
      flex-direction: row;
      gap: 10px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }
.badge-img-link {
      display: inline-flex;
      flex: 1;
      min-width: 130px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
.badge-img-link:hover { transform: translateY(-3px); opacity: 0.88; }
.badge-img-link img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }
.badge-cta { flex: 0 0 auto; min-width: auto; }
.badge-cta img { height: 56px; width: auto; border-radius: 10px; border: 2px solid transparent; }
.badge-mob { flex: 1; min-width: 0; }
.badge-mob img { width: 100%; height: auto; border-radius: 8px; }
.app-rating {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      background: rgba(232,96,0,0.06);
      border: 1px solid var(--border-orange);
      border-radius: var(--radius-sm);
    }
.app-stars { font-size: 16px; letter-spacing: 2px; }
.app-rating-num { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--text); }
.app-rating-label { font-size: 12px; color: var(--text-2); }
@media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero-app-card { max-width: 480px; }
    }
@media (max-width: 600px) {
      .hero h1 { font-size: 38px; }
      .hero-desc { font-size: 16px; }
      .btn-primary, .btn-secondary { font-size: 15px; padding: 13px 22px; }
    }
.stats-bar {
      background: var(--bg-2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 40px 0;
    }
.stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
.stat-item {
      text-align: center;
      padding: 16px;
      border-right: 1px solid var(--border);
    }
.stat-item:last-child { border-right: none; }
.stat-num {
      font-family: var(--font-head);
      font-size: 40px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 6px;
    }
.stat-num span { color: var(--orange); }
.stat-label { font-size: 13px; color: var(--text-2); font-weight: 400; }
@media (max-width: 700px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
      .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
    }
.why-section { background: var(--bg); }
.why-header {
      text-align: center;
      max-width: 660px;
      margin: 0 auto 64px;
    }
.why-header h2 {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      margin-bottom: 16px;
    }
.why-header p { font-size: 17px; color: var(--text-2); line-height: 1.7; }
.features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border-radius: var(--radius-xl);
      overflow: hidden;
    }
.feature-card {
      background: var(--bg-2);
      padding: 36px 32px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
.feature-card:hover { background: var(--bg-card); }
.feature-card:hover .feature-icon { background: var(--orange); color: #000; }
.feature-icon {
      width: 52px; height: 52px;
      background: rgba(232,96,0,0.1);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
      transition: var(--transition);
    }
.feature-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text);
    }
.feature-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; }
@media (max-width: 900px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
    }
@media (max-width: 540px) {
      .features-grid { grid-template-columns: 1fr; }
    }
.vs-section { background: var(--bg-2); }
.vs-header {
      text-align: center;
      margin-bottom: 56px;
    }
.vs-header h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 12px; }
.vs-header p { font-size: 16px; color: var(--text-2); }
.vs-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.vs-table {
      width: 100%;
      min-width: 500px;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--border);
    }
.vs-table th {
      background: var(--bg-3);
      padding: 20px 24px;
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 700;
      text-align: center;
      border-bottom: 1px solid var(--border);
    }
.vs-table th:first-child { text-align: left; color: var(--text-2); font-weight: 500; }
.vs-table th.highlight-col {
      background: rgba(232,96,0,0.1);
      color: var(--orange);
      border-left: 1px solid var(--border-orange);
      border-right: 1px solid var(--border-orange);
    }
.vs-table td {
      padding: 16px 24px;
      font-size: 14px;
      text-align: center;
      border-bottom: 1px solid var(--border);
      background: var(--bg-2);
    }
.vs-table tr:last-child td { border-bottom: none; }
.vs-table td:first-child { text-align: left; font-weight: 500; color: var(--text-2); }
.vs-table td.highlight-col {
      background: rgba(232,96,0,0.04);
      border-left: 1px solid var(--border-orange);
      border-right: 1px solid var(--border-orange);
    }
.vs-check { color: #22c55e; font-size: 18px; }
.vs-cross { color: #ef4444; font-size: 18px; }
.vs-partial { color: var(--text-2); font-size: 13px; }
.vs-cards { display: none; flex-direction: column; gap: 12px; }
.vs-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      overflow: hidden;
    }
.vs-card-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 20px;
      background: var(--bg-3);
      border-bottom: 1px solid var(--border);
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 700;
    }
.vs-card-header.taxiapp-card {
      background: rgba(232,96,0,0.1);
      border-bottom-color: var(--border-orange);
      color: var(--orange);
    }
.vs-card-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 20px;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
    }
.vs-card-row:last-child { border-bottom: none; }
.vs-card-label { color: var(--text-2); flex: 1; padding-right: 12px; }
.vs-card-val { flex-shrink: 0; text-align: right; }
@media(max-width: 640px) {
      .vs-table-wrap { display: none; }
      .vs-cards { display: flex; }
    }
.how-section { background: var(--bg); }
.how-header { text-align: center; margin-bottom: 64px; }
.how-header h2 { font-size: clamp(28px,4vw,48px); font-weight: 800; margin-bottom: 12px; }
.how-header p { font-size: 17px; color: var(--text-2); }
.how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
    }
.how-grid::before {
      content: '';
      position: absolute;
      top: 40px; left: calc(16.66% + 32px); right: calc(16.66% + 32px);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-orange), transparent);
    }
.how-step {
      text-align: center;
      padding: 32px 24px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      transition: var(--transition);
    }
.how-step:hover { border-color: var(--border-orange); transform: translateY(-4px); }
.how-step-num {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin: 0 auto 20px;
      box-shadow: 0 4px 20px rgba(232,96,0,0.3);
    }
.how-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.how-step p { font-size: 14px; color: var(--text-2); line-height: 1.65; }
@media (max-width: 768px) {
      .how-grid { grid-template-columns: 1fr; }
      .how-grid::before { display: none; }
    }
.zones-section { background: var(--bg-2); }
.zones-header { text-align: center; margin-bottom: 56px; }
.zones-header h2 { font-size: clamp(28px,4vw,48px); font-weight: 800; margin-bottom: 12px; }
.zones-header p { font-size: 17px; color: var(--text-2); }
.cities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 12px;
      margin-bottom: 48px;
    }
.city-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      transition: var(--transition);
      text-decoration: none;
      color: inherit;
    }
.city-card:hover {
      border-color: var(--border-orange);
      background: rgba(232,96,0,0.05);
      transform: translateY(-2px);
    }
.city-emoji { font-size: 20px; }
.city-card-body { flex: 1; }
.city-card-body strong {
      display: block;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 2px;
    }
.city-card-body span { font-size: 12px; color: var(--text-3); }
.zones-expansion {
      background: var(--bg-card);
      border: 1px solid var(--border-orange);
      border-radius: var(--radius-xl);
      padding: 40px;
      text-align: center;
    }
.zones-expansion h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.zones-expansion p { color: var(--text-2); margin-bottom: 20px; max-width: 540px; margin-left: auto; margin-right: auto; }
.dept-progress {
      max-width: 480px;
      margin: 0 auto 28px;
    }
.dept-progress-track {
      height: 6px;
      background: var(--bg-3);
      border-radius: 3px;
      overflow: hidden;
      margin-bottom: 8px;
    }
.dept-progress-fill {
      height: 100%;
      width: 19.8%;
      background: linear-gradient(90deg, var(--orange), var(--amber));
      border-radius: 3px;
      animation: grow 1.5s ease-out 0.5s both;
    }
@keyframes grow { from { width: 0; } }
.dept-progress-label {
      font-size: 13px;
      color: var(--text-2);
    }
.dept-progress-label strong { color: var(--text); }
.testimonials-section { background: var(--bg); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header h2 { font-size: clamp(28px,4vw,48px); font-weight: 800; margin-bottom: 12px; }
.testimonials-header p { font-size: 17px; color: var(--text-2); }
.testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
.testimonial-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 28px;
      transition: var(--transition);
    }
.testimonial-card:hover { border-color: var(--border-orange); transform: translateY(-3px); }
.testimonial-stars { font-size: 14px; letter-spacing: 2px; color: var(--amber); margin-bottom: 16px; }
.testimonial-text {
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }
.testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
.author-avatar {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }
.author-name { font-size: 14px; font-weight: 600; color: var(--text); }
.author-title { font-size: 12px; color: var(--text-3); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (min-width: 540px) and (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
.b2b-section {
      background: var(--bg-2);
    }
.b2b-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
.b2b-label { margin-bottom: 12px; }
.b2b-content h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 800; margin-bottom: 16px; }
.b2b-content p { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 32px; }
.b2b-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 36px;
    }
.b2b-feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      color: var(--text);
    }
.b2b-check {
      width: 24px; height: 24px;
      background: rgba(34,197,94,0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      flex-shrink: 0;
    }
.b2b-pricing-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 32px;
      overflow: hidden;
      position: relative;
    }
.b2b-pricing-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--amber));
    }
.pricing-title { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.pricing-rows { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }
.pricing-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 16px;
      background: var(--bg-3);
      border-radius: var(--radius-sm);
    }
.pricing-row span { font-size: 14px; color: var(--text-2); }
.pricing-row strong {
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
    }
.pricing-row strong.free { color: #22c55e; }
@media (max-width: 900px) { .b2b-grid { grid-template-columns: 1fr; gap: 48px; } }
.driver-section {
      background: linear-gradient(135deg, #0a0a10 0%, #14100a 50%, #0a0a10 100%);
      position: relative;
      overflow: hidden;
    }
.driver-section::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 50%;
      height: 100%;
      background: radial-gradient(ellipse at right, rgba(232,96,0,0.08) 0%, transparent 60%);
    }
.driver-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
.driver-content h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 800; margin-bottom: 16px; }
.driver-content p { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 32px; }
.driver-perks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 36px;
    }
.driver-perk {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 18px;
    }
.driver-perk-icon { font-size: 24px; margin-bottom: 10px; }
.driver-perk h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.driver-perk p { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.driver-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 32px;
    }
.driver-card-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
    }
.driver-avatar {
      width: 56px; height: 56px;
      border-radius: 50%;
      object-fit: cover;
      background: var(--bg-3);
    }
.driver-card-title { font-size: 17px; font-weight: 600; margin-bottom: 2px; }
.driver-card-sub { font-size: 13px; color: var(--text-2); }
.driver-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }
.driver-stat {
      text-align: center;
      padding: 16px 8px;
      background: var(--bg-3);
      border-radius: var(--radius-sm);
    }
.driver-stat-num {
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.02em;
    }
.driver-stat-num span { color: var(--orange); }
.driver-stat-label { font-size: 11px; color: var(--text-3); margin-top: 2px; }
@media (max-width: 900px) {
      .driver-grid { grid-template-columns: 1fr; gap: 48px; }
      .driver-perks { grid-template-columns: 1fr; }
    }
.local-section { background: var(--bg); }
.local-header { text-align: center; margin-bottom: 48px; }
.local-header h2 { font-size: clamp(24px,3.5vw,42px); font-weight: 800; margin-bottom: 12px; }
.local-header p { font-size: 16px; color: var(--text-2); }
.local-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 16px;
    }
.local-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 28px;
      transition: var(--transition);
    }
.local-card:hover { border-color: var(--border-orange); }
.local-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.local-card h3 span { color: var(--orange); }
.local-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 16px; }
.local-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
.local-tag {
      padding: 4px 10px;
      background: rgba(232,96,0,0.08);
      border: 1px solid var(--border-orange);
      border-radius: 50px;
      font-size: 12px;
      color: var(--orange-light);
    }
.faq-section { background: var(--bg-2); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header h2 { font-size: clamp(28px,4vw,48px); font-weight: 800; margin-bottom: 12px; }
.faq-header p { font-size: 17px; color: var(--text-2); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--transition);
    }
.faq-item.open { border-color: var(--border-orange); }
.faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      text-align: left;
      cursor: pointer;
      transition: var(--transition);
      gap: 16px;
    }
.faq-question:hover { color: var(--orange); }
.faq-arrow {
      width: 28px; height: 28px;
      background: var(--bg-3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: var(--transition);
      font-size: 12px;
    }
.faq-item.open .faq-arrow { background: var(--orange); transform: rotate(180deg); }
.faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
.faq-answer-inner {
      padding: 0 24px 20px;
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.7;
    }
.faq-item.open .faq-answer { max-height: 300px; }
.cta-section {
      background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-light) 100%);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
.cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
.cta-section > * { position: relative; }
.cta-section h2 {
      font-size: clamp(28px,4vw,52px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
    }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      font-size: 16px;
      font-weight: 700;
      color: var(--orange);
      background: #fff;
      border-radius: 50px;
      transition: var(--transition);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.25); }
.btn-white-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 28px;
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.5);
      border-radius: 50px;
      transition: var(--transition);
    }
.btn-white-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
footer {
      background: var(--bg-2);
      border-top: 1px solid var(--border);
      padding: 64px 0 32px;
    }
.footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
.footer-brand p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin: 16px 0 24px; max-width: 300px; }
.footer-brand-contact a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-2); margin-bottom: 8px; transition: var(--transition); }
.footer-brand-contact a:hover { color: var(--orange); }
.footer-col h4 {
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-2); transition: var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
.footer-bottom p { font-size: 13px; color: var(--text-3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-3); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--text-2); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.mobile-app-bar {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: rgba(7,7,10,0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid var(--border);
      padding: 12px 20px;
      padding-bottom: max(12px, env(safe-area-inset-bottom));
      z-index: 500;
      gap: 8px;
    }
.mobile-app-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 16px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 600;
      transition: var(--transition);
    }
.mobile-app-btn.primary {
      background: var(--orange);
      color: #000;
    }
.mobile-app-btn.secondary {
      background: var(--bg-3);
      border: 1px solid var(--border);
      color: var(--text);
    }
@media (max-width: 640px) {
      .mobile-app-bar { display: flex; }
      footer { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
    }
.animate-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
.animate-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
.modal-overlay.open { display: flex; }
.modal-box {
      background: var(--bg-card);
      border: 1px solid var(--border-orange);
      border-radius: var(--radius-xl);
      padding: 40px 36px;
      max-width: 440px;
      width: 100%;
      position: relative;
      animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
    }
@keyframes modalIn {
      from { opacity:0; transform:scale(0.88) translateY(20px); }
      to   { opacity:1; transform:scale(1) translateY(0); }
    }
.modal-close {
      position: absolute;
      top: 16px; right: 16px;
      width: 32px; height: 32px;
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--text-2);
      cursor: pointer;
      transition: var(--transition);
    }
.modal-close:hover { background: var(--orange); color: #000; border-color: var(--orange); }
.modal-logo-row {
      display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
    }
.modal-app-icon {
      width: 56px; height: 56px;
      border-radius: 14px; overflow: hidden; flex-shrink: 0;
    }
.modal-app-icon img { width:100%; height:100%; object-fit:cover; }
.modal-app-name {
      font-family: var(--font-head);
      font-size: 20px; font-weight: 800; color: var(--text);
    }
.modal-app-sub { font-size: 13px; color: var(--text-2); margin-top: 2px; }
.modal-divider {
      height: 1px; background: var(--border); margin: 0 0 24px;
    }
.modal-desc {
      font-size: 15px; color: var(--text-2); line-height: 1.65; margin-bottom: 28px;
    }
.modal-badges {
      display: flex; flex-direction: column; gap: 12px;
    }
.modal-badge-link {
      display: flex; align-items: center; gap: 14px;
      padding: 14px 18px;
      background: #000;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 12px;
      text-decoration: none;
      transition: var(--transition);
    }
.modal-badge-link:hover {
      border-color: var(--border-orange);
      background: rgba(232,96,0,0.06);
      transform: translateX(4px);
    }
.modal-badge-link img { height: 44px; width: auto; border-radius: 6px; flex-shrink:0; }
.modal-badge-arrow {
      margin-left: auto;
      color: var(--text-3);
      font-size: 18px;
      transition: var(--transition);
    }
.modal-badge-link:hover .modal-badge-arrow { color: var(--orange); }
.modal-note {
      margin-top: 20px;
      text-align: center;
      font-size: 12px;
      color: var(--text-3);
    }
.modal-zones-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.8);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 2100;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }
.modal-zones-overlay.open { display: flex; }
.modal-zones-box {
      background: var(--bg-card);
      border: 1px solid var(--border-orange);
      border-radius: var(--radius-xl);
      width: 100%;
      max-width: 680px;
      max-height: 88dvh;
      display: flex;
      flex-direction: column;
      position: relative;
      animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
      overflow: hidden;
    }
.modal-zones-header {
      padding: 28px 28px 20px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }
.modal-zones-header h3 {
      font-family: var(--font-head);
      font-size: 22px; font-weight: 800;
      color: var(--text); margin-bottom: 6px;
    }
.modal-zones-header p { font-size: 14px; color: var(--text-2); }
.modal-zones-close {
      position: absolute;
      top: 16px; right: 16px;
      width: 34px; height: 34px;
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; color: var(--text-2);
      cursor: pointer; transition: var(--transition);
    }
.modal-zones-close:hover { background: var(--orange); color: #000; border-color: var(--orange); }
.modal-zones-legend {
      display: flex; gap: 20px;
      padding: 14px 28px;
      background: var(--bg-3);
      border-bottom: 1px solid var(--border);
      flex-shrink: 0; flex-wrap: wrap;
    }
.legend-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-2); }
.legend-dot {
      width: 10px; height: 10px; border-radius: 50%;
    }
.legend-dot.active { background: var(--orange); box-shadow: 0 0 6px rgba(232,96,0,.5); }
.legend-dot.soon { background: var(--bg-2); border: 1px solid var(--border); }
.modal-zones-progress {
      padding: 14px 28px;
      background: var(--bg-2);
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
      display: flex; align-items: center; gap: 14px;
    }
.zones-progress-bar {
      flex: 1; height: 6px;
      background: var(--bg-3);
      border-radius: 3px; overflow: hidden;
    }
.zones-progress-fill {
      height: 100%; width: 19.8%;
      background: linear-gradient(90deg, var(--orange), var(--amber));
      border-radius: 3px;
    }
.zones-progress-label { font-size: 13px; color: var(--text-2); white-space: nowrap; }
.zones-progress-label strong { color: var(--text); }
.modal-zones-grid {
      overflow-y: auto;
      padding: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
      gap: 6px;
      flex: 1;
    }
.modal-zones-grid::-webkit-scrollbar { width: 4px; }
.modal-zones-grid::-webkit-scrollbar-track { background: var(--bg-3); }
.modal-zones-grid::-webkit-scrollbar-thumb { background: var(--border-orange); border-radius: 2px; }
.modal-dept {
      display: flex; align-items: center; gap: 7px;
      padding: 8px 10px;
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 12px;
      color: var(--text-3);
      transition: var(--transition);
    }
.modal-dept.deployed {
      background: rgba(232,96,0,0.08);
      border-color: var(--border-orange);
      color: var(--text);
    }
.modal-dept-check {
      color: var(--orange); font-size: 11px; font-weight: 700; flex-shrink: 0;
    }
.modal-dept-num {
      font-family: var(--font-head); font-weight: 700; font-size: 12px;
      flex-shrink: 0; min-width: 22px;
    }
.modal-dept.deployed .modal-dept-num { color: var(--orange); }
.modal-dept-name { font-size: 12px; line-height: 1.2; }
.modal-zones-footer {
      padding: 16px 28px;
      border-top: 1px solid var(--border);
      background: var(--bg-2);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px; flex-wrap: wrap;
    }
.modal-zones-footer p { font-size: 13px; color: var(--text-2); }
.btn-zones-contact {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 9px 18px;
      font-size: 13px; font-weight: 600;
      color: #000; background: var(--orange);
      border-radius: 50px; transition: var(--transition);
    }
.btn-zones-contact:hover { background: var(--orange-light); transform: translateY(-1px); }
@media(max-width:480px) {
      .modal-zones-grid { grid-template-columns: repeat(2,1fr); }
    }
.modal-client-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,0.78);
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      z-index: 2000; align-items: center; justify-content: center; padding: 20px;
    }
.modal-client-overlay.open { display: flex; }
.modal-client-box {
      background: var(--bg-card);
      border: 1px solid var(--border-orange);
      border-radius: var(--radius-xl);
      padding: 36px 32px;
      max-width: 420px; width: 100%;
      position: relative;
      animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
    }
.faq-text { flex: 1; text-align: left; }
@font-face {
      font-family: 'Bricolage Grotesque';
      src: local('Arial');
      font-display: optional;
      ascent-override: 95%;
      descent-override: 20%;
      line-gap-override: 0%;
    }
@font-face {
      font-family: 'DM Sans';
      src: local('Arial');
      font-display: optional;
      ascent-override: 92%;
      descent-override: 24%;
      line-gap-override: 0%;
    }
body, .doc-content p, .legal-body p { font-weight: 400; }
.nav-links a, .btn-secondary, .store-badge-text small { font-weight: 400; }
.font-medium, strong, b { font-weight: 500; }
h1, h2, h3 {
      word-break: keep-all;
      overflow-wrap: break-word;
    }
h1 .punct-guard, h2 .punct-guard { white-space: nowrap; }
.footer-city-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:7px; }
@media(max-width:900px){ .footer-city-grid { grid-template-columns:repeat(3,1fr); } }
@media(max-width:500px){ .footer-city-grid { grid-template-columns:repeat(2,1fr); } }
.dep-badge {
      display: flex; align-items: center; gap: 6px;
      padding: 7px 10px; border-radius: 8px;
      font-size: 12px; transition: var(--transition);
    }
.dep-num {
      font-family: var(--font-head); font-weight: 700;
      font-size: 11px; min-width: 24px; flex-shrink: 0;
    }
.dep-nom { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 11px; }
.dep-check { color: #22c55e; font-size: 11px; flex-shrink: 0; }
.dep-active {
      background: rgba(232,96,0,.10); border: 1px solid rgba(232,96,0,.35);
      color: var(--text);
    }
.dep-active .dep-num { color: var(--orange); }
.dep-inactive {
      background: var(--bg-3); border: 1px solid var(--border);
      color: var(--text-3);
    }
.dep-inactive:hover { border-color: var(--border-orange); color: var(--text-2); }

/* ══ FOOTER (styles extraits des attributs style="" inline) ══ */
.site-footer{background:var(--bg-2);border-top:1px solid var(--border)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;padding:56px 0 40px;border-bottom:1px solid var(--border)}
.footer-brand .logo{display:inline-flex;align-items:center;gap:10px;text-decoration:none;margin-bottom:16px}
.footer-brand .logo-img{width:36px;height:36px;border-radius:9px}
.footer-brand .logo-name{font-family:var(--font-head);font-size:20px;font-weight:800;color:var(--text)}
.footer-brand .logo-name span{color:var(--orange)}
.footer-brand p{font-size:14px;color:var(--text-2);line-height:1.7;max-width:280px;margin-bottom:16px}
.footer-mail{font-size:13px;color:var(--text-2);display:inline-flex;align-items:center;gap:6px}
.footer-mail:hover{color:var(--orange)}
.footer-col h4{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--text-3);margin-bottom:14px;font-family:var(--font-head)}
.footer-col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:9px}
.footer-col a{font-size:14px;color:var(--text-2);transition:var(--transition)}
.footer-col a:hover{color:var(--orange)}
.footer-villes{padding:28px 0;border-bottom:1px solid var(--border)}
.footer-villes-title{font-size:11px;color:var(--text-3);font-weight:700;text-transform:uppercase;letter-spacing:.1em;margin-bottom:14px}
.footer-villes-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:7px}
.ville-chip{display:flex;align-items:center;gap:7px;padding:9px 13px;background:var(--bg-card);border:1px solid var(--border);border-radius:10px;color:var(--text-2);font-size:13px;font-weight:500;transition:var(--transition)}
.ville-chip img{width:16px;height:16px;object-fit:contain;flex-shrink:0}
.ville-chip:hover{border-color:var(--border-orange);color:var(--text)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;padding:20px 0}
.footer-bottom p{font-size:13px;color:var(--text-3)}
.footer-bottom .or{color:var(--orange)}
.footer-bottom-links{display:flex;gap:16px}
.footer-bottom-links a{font-size:12px;color:var(--text-3);transition:var(--transition)}
.footer-bottom-links a:hover{color:var(--orange)}
.nav-links a.active,.mobile-menu a.active{color:var(--orange)}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;gap:28px}.footer-villes-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:560px){.footer-grid{grid-template-columns:1fr}.footer-villes-grid{grid-template-columns:repeat(2,1fr)}.footer-bottom{flex-direction:column;align-items:flex-start}}

.nav-actions{display:flex;align-items:center;gap:10px}
.btn-nav-ghost{padding:8px 15px;font-size:14px;font-weight:500;color:var(--text-2);border:1px solid var(--border);border-radius:50px;transition:var(--transition)}
.btn-nav-ghost:hover{color:var(--text);border-color:rgba(255,255,255,.2)}
@media(max-width:980px){.nav-links{display:none}.nav-actions{display:none}.hamburger{display:flex}}

.footer-dest-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:7px}
.footer-dest-grid a{padding:8px 11px;background:var(--bg-card);border:1px solid var(--border);border-radius:9px;color:var(--text-2);font-size:12.5px;transition:var(--transition);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.footer-dest-grid a:hover{border-color:var(--border-orange);color:var(--text)}
@media(max-width:900px){.footer-dest-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:560px){.footer-dest-grid{grid-template-columns:repeat(2,1fr)}}
