:root {
  --night: #06142b;
  --deep: #0b2348;
  --blue: #2563eb;
  --light: #60a5fa;
  --white: #fff;
  --text: #cbd5e1;
  --quiet: #8da0ba;
  --line: rgba(148, 163, 184, .18);
  --glass: rgba(11, 35, 72, .54);
  --max: 1240px;
  --radius: 28px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--night); }
body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 8%, rgba(37,99,235,.12), transparent 28rem),
    var(--night);
  font-family: Inter, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 16px; color: var(--night); background: white; }
.skip-link:focus { top: 16px; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.hdr {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: linear-gradient(180deg, rgba(6,20,43,.94), rgba(6,20,43,.45), transparent);
  transition: background .3s, border-color .3s;
}
.hdr.scrolled { background: rgba(6,20,43,.88); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { width: 158px; flex: 0 0 auto; }
.brand img { width: 100%; }
.nav-links { display: flex; align-items: center; gap: 30px; padding: 0; margin: 0; list-style: none; color: var(--text); font-size: .9rem; font-weight: 650; }
.nav-links a { transition: color .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: white; }
.nav-cta a { display: inline-flex; min-height: 44px; align-items: center; padding: 0 17px; border: 1px solid rgba(96,165,250,.38); border-radius: 999px; background: rgba(37,99,235,.16); color: white; }
.burger { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(11,35,72,.6); cursor: pointer; }
.burger span { display: block; width: 18px; height: 1px; margin: 5px auto; background: white; transition: .25s; }

.section { position: relative; padding: clamp(88px, 11vw, 168px) 0; overflow: clip; }
.section-sm { padding: clamp(65px, 8vw, 105px) 0; }
.section-line { border-top: 1px solid var(--line); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--light); font-size: .76rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: .98; letter-spacing: -.05em; }
h1 { max-width: 1080px; margin-bottom: 28px; font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; }
h2 { max-width: 1020px; margin-bottom: 28px; font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); }
.lead { max-width: 720px; color: var(--text); font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.accent { color: var(--light); }
.outline { display: block; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.48); }
.muted { color: var(--text); }
.fine { color: var(--quiet); font-size: .8rem; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 10px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 750; transition: transform .2s, background .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); box-shadow: 0 12px 38px rgba(37,99,235,.32); }
.btn-primary:hover { background: #3474f2; box-shadow: 0 16px 46px rgba(37,99,235,.42); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.035); }
.btn-lg { min-height: 68px; padding-inline: 34px; font-size: 1.05rem; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(96,165,250,.35); border-radius: 999px; color: var(--light); background: rgba(37,99,235,.1); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.hero { min-height: 82svh; display: flex; align-items: flex-end; padding: 150px 0 70px; isolation: isolate; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(6,20,43,.99) 0%, rgba(6,20,43,.92) 38%, rgba(6,20,43,.3) 72%, rgba(6,20,43,.76) 100%), linear-gradient(180deg, transparent 55%, var(--night) 100%); }
.hero-media { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 57% center; filter: saturate(.8) contrast(1.05) brightness(.72); }
.hero-copy { position: relative; z-index: 2; max-width: 1050px; }
.hero .lead { max-width: 610px; }
.hero-routes { position: absolute; inset: 20% -5% 0 28%; z-index: 0; pointer-events: none; opacity: .85; }
.route { fill: none; stroke-linecap: round; filter: drop-shadow(0 0 7px rgba(96,165,250,.75)); }
.route-main { stroke: #60a5fa; stroke-width: 3; stroke-dasharray: 10 16; animation: dash 9s linear infinite; }
.route-thin { stroke: rgba(96,165,250,.54); stroke-width: 1.4; stroke-dasharray: 6 13; animation: dash 13s linear infinite reverse; }
@keyframes dash { to { stroke-dashoffset: -520; } }
.scroll-cue { position: absolute; right: max(20px, calc((100vw - var(--max))/2)); bottom: 72px; display: flex; align-items: center; gap: 12px; color: var(--text); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right bottom; }
.scroll-cue::before { content: ""; width: 48px; height: 1px; background: var(--light); }

.statement { background: linear-gradient(180deg, var(--night), #081a37 50%, var(--night)); }
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
.movement { min-height: 520px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle at 50% 50%, rgba(37,99,235,.2), transparent 40%), rgba(11,35,72,.25); box-shadow: var(--shadow); }
.movement::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: radial-gradient(circle, #60a5fa 1px, transparent 1px); background-size: 34px 34px; }
.traveller { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: white; box-shadow: 0 0 20px white; }
.traveller::after { content: ""; position: absolute; left: 5px; top: 15px; width: 4px; height: 14px; border-radius: 5px; background: white; }
.t1 { left: 12%; top: 22%; }.t2 { left: 17%; bottom: 22%; }.t3 { right: 17%; top: 19%; }.t4 { right: 12%; bottom: 21%; }
.path { position: absolute; height: 2px; transform-origin: left; background: linear-gradient(90deg, var(--light), transparent); box-shadow: 0 0 15px var(--blue); }
.p1 { width: 54%; left: 15%; top: 27%; transform: rotate(24deg); }.p2 { width: 48%; left: 20%; bottom: 25%; transform: rotate(-28deg); }.p3 { width: 46%; right: 15%; top: 24%; transform: rotate(148deg); }.p4 { width: 51%; right: 13%; bottom: 23%; transform: rotate(208deg); }
.hub { position: absolute; left: 50%; top: 50%; width: 86px; height: 86px; display: grid; place-items: center; transform: translate(-50%,-50%); border: 1px solid rgba(96,165,250,.6); border-radius: 50%; color: var(--light); background: rgba(37,99,235,.18); box-shadow: 0 0 80px rgba(37,99,235,.42); }
.hub::before, .hub::after { content: ""; position: absolute; inset: -18px; border: 1px solid rgba(96,165,250,.24); border-radius: 50%; animation: ring 3s ease-out infinite; }
.hub::after { animation-delay: 1.5s; }
@keyframes ring { to { transform: scale(1.55); opacity: 0; } }
.comparison { margin-top: 32px; }
.comparison-row { display: flex; justify-content: space-between; gap: 24px; padding: 18px 0; border-top: 1px solid var(--line); color: var(--text); }
.comparison-row strong { color: white; text-align: right; }

/* Brochures = supports de contenu : ratio natif 3/2, image ENTIÈRE (contain), sans
   assombrissement (option B — la brochure doit être lisible, pas un fond). */
.media-panel { position: relative; aspect-ratio: 3 / 2; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--deep); box-shadow: var(--shadow); }
.media-panel > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: contain; }
.media-panel::after { display: none; }
.media-panel-contain > img { object-fit: contain; padding: 30px; background: radial-gradient(circle at center, rgba(37,99,235,.13), transparent 56%); }
.product-copy { position: relative; z-index: 2; }
.product-label { display: flex; gap: 15px; align-items: center; margin-bottom: 28px; color: var(--text); }
.product-label b { color: white; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; }
.pillar { min-height: 430px; position: relative; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(155deg, rgba(11,35,72,.75), rgba(6,20,43,.82)); transition: transform .3s, border-color .3s, box-shadow .3s; }
.pillar:hover { transform: translateY(-7px); border-color: rgba(96,165,250,.46); box-shadow: var(--shadow); }
.pillar-num { color: var(--light); font-size: .76rem; font-weight: 800; letter-spacing: .16em; }
.pillar h3 { margin-top: 78px; }
.pillar p { color: var(--text); }
.pillar-orbit { position: absolute; width: 240px; height: 240px; right: -48px; bottom: -48px; border: 1px solid rgba(96,165,250,.28); border-radius: 50%; }
.pillar-orbit::before, .pillar-orbit::after { content: ""; position: absolute; border: 1px solid rgba(96,165,250,.17); border-radius: 50%; }
.pillar-orbit::before { inset: 25px; }.pillar-orbit::after { inset: 58px; background: rgba(37,99,235,.1); }

.product-stage { min-height: 540px; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(40px, 7vw, 95px); align-items: center; }
.phone-stage { min-height: 460px; position: relative; }
.phone-stage::before { content: ""; position: absolute; inset: 9% 3% 7%; border: 1px solid rgba(96,165,250,.18); border-radius: 50%; transform: rotate(-13deg); }
.phone-cut { position: absolute; z-index: 2; width: min(63%, 370px); right: 13%; top: 0; filter: drop-shadow(-26px 36px 45px rgba(0,0,0,.42)); transform: rotate(5deg); }
.city-slice { position: absolute; left: 0; right: 18%; bottom: 4%; height: 43%; overflow: hidden; border-radius: 24px; border: 1px solid var(--line); }
.city-slice img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; filter: brightness(.7); }
.city-slice::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,20,43,.8), transparent); }

.traffic { background: linear-gradient(180deg, var(--night), #081a38, var(--night)); }
.traffic-visual { aspect-ratio: 3 / 2; position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.traffic-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.traffic-visual::after { display: none; }
.signal { position: absolute; z-index: 2; width: 12px; height: 12px; border-radius: 50%; background: #7dffb2; box-shadow: 0 0 0 10px rgba(125,255,178,.1), 0 0 30px #21c86d; animation: signal 2.5s ease-in-out infinite; }
.s1 { left: 28%; top: 33%; }.s2 { right: 24%; top: 43%; animation-delay: .7s; }.s3 { left: 48%; bottom: 22%; animation-delay: 1.4s; }
@keyframes signal { 50% { transform: scale(1.5); opacity: .55; } }

.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.vision-item { min-height: 380px; position: relative; padding: 34px 4px; border-top: 1px solid var(--line); }
.vision-item::before { content: ""; position: absolute; top: -2px; left: 0; width: 72px; height: 3px; background: var(--blue); }
.vision-item p { color: var(--text); }
.vision-number { display: block; margin-top: 82px; color: rgba(255,255,255,.07); font-size: 6.4rem; font-weight: 800; letter-spacing: -.09em; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 58px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.trust-item { min-height: 245px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-item p { color: var(--text); font-size: .9rem; }
.trust-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 45px; border: 1px solid rgba(96,165,250,.36); border-radius: 50%; color: var(--light); }
.final { min-height: 62svh; display: grid; place-items: center; text-align: center; isolation: isolate; }
.final::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("/assets/img/v3/camertaxi-city.jpg") center/cover; filter: brightness(.38) saturate(.8); }
.final::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at center, rgba(37,99,235,.24), transparent 34rem), linear-gradient(180deg, var(--night), transparent 35%, var(--night)); }
.final h2, .final .lead { margin-inline: auto; }
.final .actions { justify-content: center; }

.page-hero { min-height: 58svh; display: flex; align-items: flex-end; padding: 140px 0 70px; isolation: isolate; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(6,20,43,.98), rgba(6,20,43,.76) 54%, rgba(6,20,43,.35)), linear-gradient(180deg, transparent 55%, var(--night)); }
.page-hero img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; filter: brightness(.62) saturate(.8); }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
.page-hero .lead { max-width: 650px; }
.page-hero--traffic img { object-position: center; }
.page-hero--about img { object-position: center; }
.page-hero--simple { min-height: 46svh; }
.page-hero--simple::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 70% 40%, rgba(37,99,235,.25), transparent 24rem), linear-gradient(135deg, #06142b, #0b2348); }
.page-hero--simple::after { background: linear-gradient(180deg, transparent, var(--night)); }

.editorial { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(45px, 8vw, 120px); align-items: start; }
.editorial-copy { position: sticky; top: 130px; }
.stack { display: grid; gap: 20px; }
.panel { padding: clamp(28px, 4vw, 50px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(11,35,72,.28); }
.panel p { color: var(--text); }
.panel-image { min-height: 440px; position: relative; overflow: hidden; padding: 0; }
.panel-image img { width: 100%; height: 100%; position: absolute; object-fit: cover; filter: brightness(.78); }
.panel-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(6,20,43,.82)); }
.panel-caption { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 28px; }
.big-number { color: var(--light); font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; letter-spacing: -.08em; }
.feature-list { padding: 0; margin: 28px 0 0; list-style: none; }
.feature-list li { display: flex; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); color: var(--text); }
.feature-list li::before { content: "↗"; color: var(--light); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 54px; counter-reset: step; }
.step { min-height: 290px; padding: 28px; border-top: 1px solid var(--line); counter-increment: step; }
.step::before { content: "0" counter(step); display: block; margin-bottom: 80px; color: var(--light); font-size: .76rem; font-weight: 800; letter-spacing: .16em; }
.step p { color: var(--text); }
.product-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.product-card { min-height: 600px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--deep); }
.product-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.56); transition: transform .5s; }
.product-card:hover > img { transform: scale(1.035); }
.product-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,20,43,.1), rgba(6,20,43,.98)); }
.product-card-content { position: absolute; z-index: 2; inset: auto 34px 34px; }
.product-card-content p { max-width: 500px; color: var(--text); }
.future-card { background: radial-gradient(circle at 70% 20%, rgba(37,99,235,.34), transparent 17rem), linear-gradient(145deg, #0b2348, #06142b); }
.future-lines { position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(32deg, transparent 48%, rgba(96,165,250,.32) 49%, transparent 51%), linear-gradient(118deg, transparent 48%, rgba(96,165,250,.2) 49%, transparent 51%); background-size: 100px 80px, 130px 110px; }

/* Carte produit = illustration MARKETING avec texte : montrée EN ENTIER (jamais
   recadrée), avec l'invitation/CTA conservée SOUS l'image (ni overlay ni
   assombrissement qui cacheraient le texte de l'illustration). Toute la carte reste
   cliquable (le <a> englobe image + invitation). */
.product-card.product-brochure { min-height: 0; display: flex; flex-direction: column; }
.product-card.product-brochure > img { position: static; width: 100%; height: auto; object-fit: contain; filter: none; transform: none; }
.product-card.product-brochure:hover > img { transform: none; }
.product-card.product-brochure::after { display: none; }
.product-card.product-brochure .product-card-content { position: static; inset: auto; padding: 26px 30px 30px; }

/* Aide à l'installation : illustrations d'étapes complètes (numéro + titre +
   instructions + mockups dans l'image) — affichées EN ENTIER, empilées. */
.steps-illustrated { display: grid; gap: 26px; margin-top: 40px; }
.step-illustration { display: block; width: 100%; height: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(42px, 8vw, 110px); }
.contact-list { margin-top: 42px; border-top: 1px solid var(--line); }
.contact-item { padding: 23px 0; border-bottom: 1px solid var(--line); }
.contact-item small { display: block; margin-bottom: 6px; color: var(--quiet); text-transform: uppercase; letter-spacing: .12em; }
.contact-form { display: grid; gap: 16px; padding: clamp(26px, 5vw, 54px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(11,35,72,.3); }
.field { display: grid; gap: 8px; }
.field label { color: var(--text); font-size: .82rem; font-weight: 700; }
.field input, .field textarea { width: 100%; padding: 17px 18px; border: 1px solid var(--line); border-radius: 14px; outline: none; color: white; background: rgba(6,20,43,.68); }
.field input:focus, .field textarea:focus { border-color: var(--light); box-shadow: 0 0 0 3px rgba(96,165,250,.1); }
.field textarea { min-height: 170px; resize: vertical; }

.doc { padding: 150px 0 90px; }
.doc .wrap { max-width: 850px; }
.doc h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
.doc h2 { margin-top: 55px; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.doc p, .doc li { color: var(--text); }
.doc a { color: var(--light); }
.doc .maj { color: var(--quiet); }

.ft { padding: 70px 0 32px; border-top: 1px solid var(--line); }
.ft-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.ft-title { margin-bottom: 18px; font-weight: 750; }
.ft-links { display: grid; gap: 10px; color: var(--text); font-size: .9rem; }
.ft-links a:hover { color: white; }
.ft-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 68px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--quiet); font-size: .77rem; }
.ft .cols { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 40px; }
.ft .cols h4 { margin: 0 0 18px; }
.ft .cols ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; color: var(--text); font-size: .9rem; }
.ft .word { font-size: 1.25rem; font-weight: 800; }
.ft .word b { color: var(--light); }
.ft .bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 68px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--quiet); font-size: .77rem; }
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 70; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: #20c766; box-shadow: 0 10px 34px rgba(32,199,102,.35); transition: transform .2s; }
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .78s ease, transform .78s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .1s; } [data-delay="2"] { transition-delay: .2s; } [data-delay="3"] { transition-delay: .3s; }

@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 0; padding: 115px 28px 40px; flex-direction: column; align-items: flex-start; gap: 23px; font-size: 1.32rem; background: rgba(6,20,43,.985); transform: translateX(100%); transition: transform .3s; }
  .nav-links.open { transform: none; }
  .burger { display: block; position: relative; z-index: 2; }
  .split, .product-stage, .editorial, .contact-grid { grid-template-columns: 1fr; }
  .pillars, .vision-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .editorial-copy { position: static; }
  .media-panel { min-height: 560px; }
  .product-duo { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .ft .cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 650px) {
  .wrap, .nav { width: min(calc(100% - 28px), var(--max)); }
  .nav { height: 72px; }
  .brand { width: 140px; }
  .hero { min-height: 640px; align-items: flex-start; padding-top: 125px; }
  .hero::after { background: linear-gradient(180deg, rgba(6,20,43,.96) 0%, rgba(6,20,43,.79) 56%, var(--night) 100%); }
  .hero-media { object-position: 68% bottom; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 3.2rem); }
  .hero-routes { inset: 48% -45% 0 -30%; }
  .scroll-cue { display: none; }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
  .movement { min-height: 390px; }
  .media-panel { min-height: 0; }
  .pillar { min-height: 340px; }
  .phone-stage { min-height: 530px; }
  .phone-cut { width: 70%; right: 2%; }
  .city-slice { right: 8%; }
  .traffic-visual { min-height: 0; }
  .trust-grid, .steps { grid-template-columns: 1fr; }
  .step { min-height: 225px; }
  .step::before { margin-bottom: 55px; }
  .product-card { min-height: 490px; }
  .page-hero { min-height: 460px; }
  .page-hero h1 { font-size: clamp(2rem, 8.5vw, 3rem); }
  .ft-grid { grid-template-columns: 1fr; }
  .ft .cols { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; }
  .ft .bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}


/* FIX LOGO */
.navbar .logo img,.brand img,header .logo img{
height:48px !important;
width:auto !important;
max-width:240px !important;
}
.logo-text-phone{color:#F8FAFC!important}

/* FIX CAMERTAXI VISUAL */
.phone-stage{min-height:520px!important;}
.phone-cut{
width:260px!important;
max-width:42%!important;
height:auto!important;
aspect-ratio:auto!important;
right:5%!important;
top:20px!important;
object-fit:contain!important;
}
.city-slice{
right:35%!important;
height:260px!important;
bottom:20px!important;
}
.city-slice img{
object-fit:cover!important;
}
@media(max-width:900px){
.phone-stage{display:flex!important;flex-direction:column!important;align-items:center!important;gap:20px!important;min-height:auto!important;}
.phone-cut,.city-slice{position:relative!important;right:auto!important;left:auto!important;top:auto!important;bottom:auto!important;transform:none!important;max-width:90%!important;width:300px!important;}
.city-slice{height:220px!important;}
}

/* ── VOLET 3 — UX page CamerTaxi UNIQUEMENT (scopé body.page-camertaxi) ─────────
   Aucune règle globale modifiée : ces sélecteurs ne s'appliquent qu'à cette page.
   L'audit UX global (toutes pages) reste un chantier séparé. */

/* 1. Capture d'écran de l'app (visuel marketing porteur d'UI/texte) : ne pas couper.
      cover → contain + cadrage centré, fond cohérent avec le panneau. */
body.page-camertaxi .panel-image { background: linear-gradient(160deg,#0b2348,#06142b); }
body.page-camertaxi .panel-image img { object-fit: contain; object-position: center; padding: 22px; filter: none; }

/* 2. Titre du hero surdimensionné sur grands écrans → clamp réduit (max ~5rem). */
body.page-camertaxi .page-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); }

/* 3. Bloc CTA #telecharger : éviter tout débordement / troncature des boutons en mobile. */
body.page-camertaxi #telecharger .actions { flex-wrap: wrap; }
body.page-camertaxi #telecharger .actions .btn { max-width: 100%; }
body.page-camertaxi #telecharger .fine a { color: var(--accent, #60a5fa); text-decoration: underline; }

/* ── Page Accès anticipé — FAQ (accordéon natif, scopé body.page-acces) ───────── */
body.page-acces .faq { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
body.page-acces .faq details { border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.02); padding: 4px 20px; }
body.page-acces .faq summary { cursor: pointer; padding: 16px 0; font-weight: 600; list-style: none; }
body.page-acces .faq summary::-webkit-details-marker { display: none; }
body.page-acces .faq summary::after { content: "+"; float: right; opacity: .6; font-weight: 400; }
body.page-acces .faq details[open] summary::after { content: "–"; }
body.page-acces .faq details p { padding: 0 0 18px; margin: 0; color: var(--muted, #94a3b8); max-width: 70ch; }
