/* =========================
   Track Event – styles.css
   ========================= */

/* =========================
   Variables
   ========================= */
:root {
  --bg-main: #060b10;          /* fond principal (quasi noir) */
  --bg-panel: #0b1620;         /* cartes / panneaux */
  --bg-elevated: #101f2e;      /* hover / focus */

  --text-main: #d6e4f0;        /* texte principal */
  --text-muted: #8aa2b8;       /* texte secondaire */

  --accent-green: #3cff8f;     /* vert vision nocturne */
  --accent-cyan: #2dd4ff;      /* bleu radar */
  --accent-warning: #ffb703;   /* alertes */

  --grid-color: rgba(60, 255, 143, 0.06); /* grille radar */
}


:root {
  --bg: #070b14;
  --bg2: #0b1220;

  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.10);

  --text: #e9eefc;
  --muted: rgba(233, 238, 252, 0.72);
  --muted2: rgba(233, 238, 252, 0.55);

  --accent: #7c5cff;
  --accent2: #22d3ee;
  --ok: #2be4a7;

  --brand-red: #E74342;
  --brand-blue: #1C3359;
  --brand-blue: #60A5FA; /* bleu clair, lisible, non agressif */


  --shadow: 0 20px 80px rgba(0, 0, 0, 0.45);

  --radius: 18px;
  --radius2: 26px;

  --max: 1120px;
}

/* =========================
   Reset / Base
   ========================= */
* { box-sizing: border-box; }

html,
body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(124, 92, 255, 0.18), transparent 55%),
    radial-gradient(900px 600px at 80% 20%, rgba(34, 211, 238, 0.14), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.95; }

.no-scroll { overflow: hidden; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* =========================
   Glow background
   ========================= */
.bg-glow {
  position: fixed;
  inset: -200px;
  background:
    radial-gradient(700px 500px at 15% 15%, rgba(124, 92, 255, 0.18), transparent 60%),
    radial-gradient(800px 600px at 85% 20%, rgba(34, 211, 238, 0.12), transparent 62%);
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.9;
  z-index: -1;
}

/* =========================
   Header
   ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 20, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name { font-weight: 700; font-size: 14px; }
.brand-tagline { font-size: 12px; color: var(--muted2); }

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.brand.mini .brand-tagline { display: none; }

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a { padding: 8px 10px; border-radius: 12px; }
.nav a:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }

.header-cta { display: inline-flex; }

/* Burger */
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.burger:hover { background: rgba(255, 255, 255, 0.08); }

.burger span {
  display: block;
  height: 2px;
  width: 18px;
  background: rgba(233, 238, 252, 0.85);
  margin: 4px auto;
  border-radius: 2px;
}

/* Mobile nav (piloté par [hidden] + JS) */
.mobile-nav {
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: blur(14px);
}
.mobile-nav[hidden] { display: none; }

.mobile-nav a {
  display: block;
  padding: 10px 10px;
  border-radius: 14px;
  color: var(--muted);
}
.mobile-nav a:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }

.mobile-nav .btn {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  border-color: rgba(124, 92, 255, 0.35);
  background:
    radial-gradient(120% 180% at 10% 10%, rgba(255, 255, 255, 0.22), transparent 55%),
    linear-gradient(135deg, rgba(124, 92, 255, 0.95), rgba(34, 211, 238, 0.75));
}
.btn-primary:hover { box-shadow: 0 16px 42px rgba(124, 92, 255, 0.35); }

.btn-ghost { background: rgba(255, 255, 255, 0.04); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

.w-full { width: 100%; }

/* CTA nav app (rouge/bleu Track Event) */
.btn.nav-app {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}
.btn.nav-app:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

/* =========================
   Typography
   ========================= */
h1, h2, h3 { margin: 0 0 10px; }
h1 { font-size: 44px; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: 30px; letter-spacing: -0.01em; }
h3 { font-size: 16px; }

p { margin: 0 0 12px; }

.lead { font-size: 16px; color: var(--muted); line-height: 1.65; }
.muted { color: var(--muted); }
.tiny { font-size: 12px; color: var(--muted2); }
.strong { font-weight: 700; }
.center { text-align: center; }

/* =========================
   Hero
   ========================= */
.hero { padding: 40px 0 14px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero-logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(43, 228, 167, 0.18);
}

.gradient {
  background: linear-gradient(90deg, rgba(124, 92, 255, 1), rgba(34, 211, 238, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 18px 0 18px;
  flex-wrap: wrap;
}

/* Trust (petits blocs sous hero) */
.trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.trust-item {
  flex: 1 1 160px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}
.trust-kpi { display: block; font-weight: 700; }
.trust-label { display: block; color: var(--muted2); font-size: 12px; margin-top: 4px; }

/* =========================
   Mock (hero)
   ========================= */
.hero-mock { position: relative; }

.mock-card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(120% 120% at 15% 10%, rgba(255, 255, 255, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

/* iOS dots */
.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  animation: iosDotGlow 6s ease-in-out infinite;
}

.mock-dot:nth-child(1) {
  background: #ff5f57;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 0 6px rgba(255, 95, 87, 0.45);
}
.mock-dot:nth-child(2) {
  background: #ffbd2e;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 0 6px rgba(255, 189, 46, 0.45);
}
.mock-dot:nth-child(3) {
  background: #28c840;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 0 6px rgba(40, 200, 64, 0.45);
}

@keyframes iosDotGlow {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
  100% { filter: brightness(1); }
}

/* Mock map avec fond image */
.mock-map {
  position: relative;
  height: 320px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.15), rgba(7, 11, 20, 0.45)),
    url("images/mock-map-rouen.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Grille désactivée sur carte image */
.mock-grid { display: none; }

/* Tracé désactivé (tu ne le veux pas) */
.mock-map .path { display: none; }

/* Pins */
.pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  will-change: transform;
  z-index: 2;
}

.p1 { left: 20%; top: 46%; background: rgba(124, 92, 255, 1); box-shadow: 0 0 0 6px rgba(124, 92, 255, 0.18); }
.p2 { left: 62%; top: 34%; background: rgba(34, 211, 238, 1); box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.18); }
.p3 { left: 72%; top: 62%; background: rgba(43, 228, 167, 1); box-shadow: 0 0 0 6px rgba(43, 228, 167, 0.16); }

/* Panel */
.mock-panel {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 190px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 11, 20, 0.70);
  backdrop-filter: blur(10px);
  z-index: 3;
}

.panel-row { display: flex; justify-content: space-between; align-items: center; margin: 6px 0; }
.panel-title { font-weight: 700; font-size: 12px; }
.mini { font-size: 12px; color: var(--muted2); }
.mini.strong { color: var(--text); font-weight: 700; }

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.badge-live {
  background: rgba(43, 228, 167, 0.10);
  border-color: rgba(43, 228, 167, 0.25);
  color: rgba(212, 255, 242, 0.95);
}
.badge-featured {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(124, 92, 255, 0.14);
  border-color: rgba(124, 92, 255, 0.30);
}

.mock-bottom {
  display: flex;
  gap: 10px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.chip {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--muted);
  font-size: 12px;
}

.floating-card {
  position: absolute;
  left: -10px;
  top: 46px;
  width: 180px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 11, 20, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}
.floating-title { font-weight: 700; font-size: 12px; margin-bottom: 6px; }
.floating-text { font-size: 12px; color: var(--muted); }

/* =========================
   Sections
   ========================= */
.section { padding: 54px 0; }

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head { margin-bottom: 18px; }
.section-head p { color: var(--muted); }

/* =========================
   Cards / Grids
   ========================= */
.grid { display: grid; gap: 14px; }

.cards { grid-template-columns: repeat(3, 1fr); }

.card {
  padding: 18px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.card p { color: var(--muted); }

.list {
  margin: 12px 0 0;
  padding: 0 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}
.list li { margin: 4px 0; }

/* =========================
   Usecases / CTA band
   ========================= */
.usecases { grid-template-columns: repeat(4, 1fr); }

.usecase {
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}
.usecase p { color: var(--muted); }

.cta-band {
  margin-top: 16px;
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(120% 160% at 10% 10%, rgba(124, 92, 255, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* =========================
   Pricing
   ========================= */
.pricing { grid-template-columns: repeat(3, 1fr); }

.price-card { position: relative; }

.price { font-weight: 800; font-size: 22px; margin-top: 6px; }
.fineprint { margin-top: 10px; color: var(--muted2); font-size: 12px; }

.featured {
  border-color: rgba(124, 92, 255, 0.28);
  background:
    radial-gradient(120% 180% at 10% 10%, rgba(124, 92, 255, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.04);
}

/* =========================
   Contact
   ========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.info-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.contact-direct { margin-top: 16px; }
.contact-form h2 { margin-bottom: 12px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

label { font-size: 12px; color: var(--muted2); font-weight: 600; }

input,
textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

input::placeholder,
textarea::placeholder { color: rgba(233, 238, 252, 0.42); }

input:focus,
textarea:focus {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.10);
}

/* =========================
   Trust grid (logos)
   (garde le rendu final: override "plus grand")
   ========================= */
.trust-grid { grid-template-columns: repeat(3, 1fr); }
.trust-card { text-align: center; }

.trust-logo {
  height: 96px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.trust-logo img {
  height: 72px !important;
  width: auto !important;
  max-width: 220px !important;
  max-height: none !important;
  object-fit: contain;
  opacity: 0.95;
  filter: grayscale(100%) brightness(1.1);
  transition: filter 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.trust-card:hover .trust-logo img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.06);
  opacity: 1;
}

/* =========================
   Footer
   ========================= */
.footer {
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.85;
}

.footer-right { display: flex; gap: 12px; color: var(--muted); }
.footer-right a { padding: 8px 10px; border-radius: 14px; }
.footer-right a:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }

/* =========================
   FAQ
   ========================= */
#faq { padding-top: 60px; }
#faq .section-head { max-width: 720px; }

.faq {
  max-width: 900px;
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.faq details {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(120% 160% at 10% 10%, rgba(28, 51, 89, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.04);
  padding: 16px 18px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq details[open] {
  border-color: rgba(231, 67, 66, 0.28);
  background:
    radial-gradient(120% 160% at 10% 10%, rgba(231, 67, 66, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.06);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
  border-color: var(--brand-red);
}

.faq details p {
  margin-top: 12px;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.65;
}

.faq details a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (hover: hover) {
  .faq details:hover { border-color: rgba(28, 51, 89, 0.35); }
}

/* =========================
   Aura scintillante – points (global)
   ========================= */
.dot,
.goal-dot {
  position: relative;
  isolation: isolate;
}

.dot::before,
.goal-dot::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(43, 228, 167, 0.28), transparent 60%),
    radial-gradient(circle at 40% 80%, rgba(34, 211, 238, 0.18), transparent 62%);
  filter: blur(10px);
  opacity: 0.45;
  transform: scale(0.92);
  animation: teAuraFloat 2.6s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.dot::after,
.goal-dot::after {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 999px;
  border: 1px solid rgba(43, 228, 167, 0.14);
  opacity: 0;
  transform: scale(0.88);
  animation: teAuraRing 2.6s ease-in-out infinite;
  z-index: -2;
  pointer-events: none;
}

/* Variante bleue */
.goal-dot.aura-blue::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(34, 211, 238, 0.30), transparent 60%),
    radial-gradient(circle at 40% 80%, rgba(124, 92, 255, 0.18), transparent 62%);
}
.goal-dot.aura-blue::after { border-color: rgba(34, 211, 238, 0.18); }

/* Animations aura */
@keyframes teAuraFloat {
  0%, 100% { opacity: 0.35; transform: scale(0.92) rotate(0deg); }
  50% { opacity: 0.75; transform: scale(1.06) rotate(6deg); }
}

@keyframes teAuraRing {
  0% { opacity: 0; transform: scale(0.86); }
  35% { opacity: 0.45; }
  100% { opacity: 0; transform: scale(1.18); }
}

/* =========================
   Pins mock – mouvement + aura + pauses
   ========================= */
.pin::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.30;
  transform: scale(0.95);
}

.pin::after {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 999px;
  border: 1px solid rgba(43, 228, 167, 0.16);
  pointer-events: none;
  z-index: -2;
  opacity: 0;
  transform: scale(0.88);
}

/* Aura couleurs par pin */
.p1::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(43, 228, 167, 0.26), transparent 60%),
    radial-gradient(circle at 40% 80%, rgba(34, 211, 238, 0.14), transparent 62%);
}
.p1::after { border-color: rgba(43, 228, 167, 0.16); }

.p2::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(34, 211, 238, 0.30), transparent 60%),
    radial-gradient(circle at 40% 80%, rgba(124, 92, 255, 0.16), transparent 62%);
}
.p2::after { border-color: rgba(34, 211, 238, 0.18); }

.p3::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(43, 228, 167, 0.28), transparent 60%),
    radial-gradient(circle at 40% 80%, rgba(34, 211, 238, 0.12), transparent 62%);
}
.p3::after { border-color: rgba(43, 228, 167, 0.18); }

/* Vitesses + pauses */
.p1 { animation: teMove1 14s ease-in-out infinite; }
.p2 { animation: teMove2 9.2s ease-in-out infinite; }
.p3 { animation: teMove3 11.5s ease-in-out infinite; }

@keyframes teMove1 {
  0% { transform: translate(-50%, -50%) translate(0px, 0px); }
  18% { transform: translate(-50%, -50%) translate(10px, -8px); }
  28% { transform: translate(-50%, -50%) translate(16px, -2px); }
  34%, 42% { transform: translate(-50%, -50%) translate(16px, -2px); }
  58% { transform: translate(-50%, -50%) translate(22px, 8px); }
  70% { transform: translate(-50%, -50%) translate(12px, 14px); }
  76%, 82% { transform: translate(-50%, -50%) translate(12px, 14px); }
  100% { transform: translate(-50%, -50%) translate(0px, 0px); }
}

@keyframes teMove2 {
  0% { transform: translate(-50%, -50%) translate(0px, 0px); }
  14% { transform: translate(-50%, -50%) translate(-14px, 10px); }
  26% { transform: translate(-50%, -50%) translate(-26px, 2px); }
  30%, 34% { transform: translate(-50%, -50%) translate(-26px, 2px); }
  52% { transform: translate(-50%, -50%) translate(-18px, -14px); }
  64% { transform: translate(-50%, -50%) translate(-6px, -20px); }
  68%, 72% { transform: translate(-50%, -50%) translate(-6px, -20px); }
  88% { transform: translate(-50%, -50%) translate(10px, -10px); }
  100% { transform: translate(-50%, -50%) translate(0px, 0px); }
}

@keyframes teMove3 {
  0% { transform: translate(-50%, -50%) translate(0px, 0px); }
  22% { transform: translate(-50%, -50%) translate(10px, 8px); }
  40% { transform: translate(-50%, -50%) translate(-6px, 16px); }
  44%, 58% { transform: translate(-50%, -50%) translate(-6px, 16px); }
  74% { transform: translate(-50%, -50%) translate(-14px, 6px); }
  86% { transform: translate(-50%, -50%) translate(-8px, -6px); }
  100% { transform: translate(-50%, -50%) translate(0px, 0px); }
}

/* Aura sync avec mouvement */
.p1::before { animation: teAura1 14s ease-in-out infinite; }
.p1::after { animation: teRing1 14s ease-in-out infinite; }

.p2::before { animation: teAura2 9.2s ease-in-out infinite; }
.p2::after { animation: teRing2 9.2s ease-in-out infinite; }

.p3::before { animation: teAura3 11.5s ease-in-out infinite; }
.p3::after { animation: teRing3 11.5s ease-in-out infinite; }

@keyframes teAura1 {
  0% { opacity: 0.28; transform: scale(0.95); }
  18% { opacity: 0.60; transform: scale(1.05); }
  28% { opacity: 0.42; transform: scale(0.98); }
  34%, 42% { opacity: 0.26; transform: scale(0.95); }
  50% { opacity: 0.55; transform: scale(1.04); }
  58% { opacity: 0.40; transform: scale(0.99); }
  64% { opacity: 0.62; transform: scale(1.06); }
  70% { opacity: 0.38; transform: scale(0.98); }
  76%, 82% { opacity: 0.26; transform: scale(0.95); }
  100% { opacity: 0.28; transform: scale(0.95); }
}

@keyframes teAura2 {
  0% { opacity: 0.28; transform: scale(0.95); }
  14% { opacity: 0.70; transform: scale(1.07); }
  20% { opacity: 0.40; transform: scale(0.99); }
  26% { opacity: 0.72; transform: scale(1.08); }
  30%, 34% { opacity: 0.26; transform: scale(0.95); }
  40% { opacity: 0.66; transform: scale(1.06); }
  46% { opacity: 0.38; transform: scale(0.98); }
  52% { opacity: 0.72; transform: scale(1.08); }
  58% { opacity: 0.40; transform: scale(0.99); }
  64% { opacity: 0.70; transform: scale(1.07); }
  68%, 72% { opacity: 0.26; transform: scale(0.95); }
  80% { opacity: 0.62; transform: scale(1.05); }
  88% { opacity: 0.40; transform: scale(0.99); }
  100% { opacity: 0.28; transform: scale(0.95); }
}

@keyframes teAura3 {
  0% { opacity: 0.28; transform: scale(0.95); }
  22% { opacity: 0.62; transform: scale(1.06); }
  34% { opacity: 0.38; transform: scale(0.98); }
  40% { opacity: 0.58; transform: scale(1.04); }
  44%, 58% { opacity: 0.24; transform: scale(0.95); }
  66% { opacity: 0.60; transform: scale(1.05); }
  74% { opacity: 0.38; transform: scale(0.98); }
  80% { opacity: 0.64; transform: scale(1.06); }
  86% { opacity: 0.40; transform: scale(0.99); }
  100% { opacity: 0.28; transform: scale(0.95); }
}

@keyframes teRing1 {
  0%, 33%, 76%, 100% { opacity: 0; transform: scale(0.88); }
  18% { opacity: 0.45; transform: scale(1.14); }
  58% { opacity: 0.38; transform: scale(1.16); }
  70% { opacity: 0.30; transform: scale(1.12); }
}
@keyframes teRing2 {
  0%, 29%, 68%, 100% { opacity: 0; transform: scale(0.88); }
  14% { opacity: 0.55; transform: scale(1.16); }
  26% { opacity: 0.46; transform: scale(1.14); }
  52% { opacity: 0.52; transform: scale(1.16); }
  64% { opacity: 0.42; transform: scale(1.14); }
  88% { opacity: 0.34; transform: scale(1.12); }
}
@keyframes teRing3 {
  0%, 43%, 58%, 100% { opacity: 0; transform: scale(0.88); }
  22% { opacity: 0.46; transform: scale(1.14); }
  74% { opacity: 0.40; transform: scale(1.15); }
  86% { opacity: 0.30; transform: scale(1.12); }
}

/* =========================
   Fonctions principales – titres (bleu → rouge au hover)
   ========================= */

#features .card h3 {
  position: relative;
  padding-left: 18px;
  color: var(--brand-blue);
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.22);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

#features .card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow:
    0 0 0 3px rgba(96, 165, 250, 0.16),
    0 0 9px rgba(96, 165, 250, 0.35);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* 🔴 Effet signal au survol */
#features .card:hover h3 {
  color: var(--brand-red);
  text-shadow: 0 0 14px rgba(231, 67, 66, 0.45);
}

#features .card:hover h3::before {
  background: var(--brand-red);
  box-shadow:
    0 0 0 3px rgba(231, 67, 66, 0.25),
    0 0 12px rgba(231, 67, 66, 0.55);
  transform: scale(1.15);
}

/* =========================
   Mock – Icône batterie
   ========================= */
.battery {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.battery-icon {
  position: relative;
  width: 14px;
  height: 8px;
  border-radius: 2px;
  border: 1.5px solid rgba(233, 238, 252, 0.85);
  box-sizing: border-box;
}

.battery-icon::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 2px;
  width: 2px;
  height: 4px;
  border-radius: 1px;
  background: rgba(233, 238, 252, 0.85);
}

.battery-icon::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 1px;
  background: linear-gradient(90deg, #2be4a7, #22d3ee);
}

/* =========================
   Accessibilité – réduction animations
   ========================= */
@media (prefers-reduced-motion: reduce) {
  .dot::before,
  .dot::after,
  .goal-dot::before,
  .goal-dot::after { animation: none !important; }

  .p1, .p2, .p3 { animation: none !important; }
  .pin::before,
  .pin::after { animation: none !important; }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 18px; }
  .floating-card { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .usecases { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .burger { display: block; }
  h1 { font-size: 38px; }
}

@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
  h1 { font-size: 34px; }
  .trust-grid { grid-template-columns: 1fr; }
}
/* =========================
   Cas d’usage – hover animation
   ========================= */

.usecase{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  will-change: transform;
}

@media (hover:hover){
  .usecase:hover{
    transform: translateY(-4px);
    border-color: rgba(231,67,66,.22); /* rouge Track Event, discret */
    background:
      radial-gradient(120% 160% at 10% 10%, rgba(231,67,66,.10), transparent 60%),
      rgba(255,255,255,.05);
    box-shadow:
      0 18px 55px rgba(0,0,0,.28),
      0 0 0 4px rgba(231,67,66,.06);
  }

  /* petit accent sur le titre */
  .usecase:hover h3{
    color: #E74342;
  }
}

/* Focus clavier (accessibilité) */
.usecase:focus-within{
  border-color: rgba(34,211,238,.28);
  box-shadow: 0 0 0 4px rgba(34,211,238,.10);
}
@media (prefers-reduced-motion: no-preference){
  .usecase{
    animation: teCardIn .45s ease both;
  }
  .usecase:nth-child(2){animation-delay:.05s}
  .usecase:nth-child(3){animation-delay:.10s}
  .usecase:nth-child(4){animation-delay:.15s}
}

@keyframes teCardIn{
  from{opacity:0; transform: translateY(8px)}
  to{opacity:1; transform: translateY(0)}
}
/* =========================
   Comment ça marche – hover animation étapes
   ========================= */

.step,
.step-card,
.how-step,
#etapes .card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  will-change: transform;
}

@media (hover:hover){
  .step:hover,
  .step-card:hover,
  .how-step:hover,
  #etapes .card:hover{
    transform: translateY(-4px);
    border-color: rgba(34,211,238,.22); /* bleu/teal cohérent étapes */
    background:
      radial-gradient(120% 160% at 10% 10%, rgba(34,211,238,.10), transparent 60%),
      rgba(255,255,255,.05);
    box-shadow:
      0 18px 55px rgba(0,0,0,.28),
      0 0 0 4px rgba(34,211,238,.06);
  }

  /* petit accent sur le titre */
  .step:hover h3,
  .step-card:hover h3,
  .how-step:hover h3,
  #etapes .card:hover h3{
    color: #22d3ee;
  }
}

/* Focus clavier (accessibilité) */
.step:focus-within,
.step-card:focus-within,
.how-step:focus-within,
#etapes .card:focus-within{
  border-color: rgba(34,211,238,.28);
  box-shadow: 0 0 0 4px rgba(34,211,238,.10);
}
/* =========================
   Comment ça marche – unification couleur voyants
   ========================= */

/* Force tous les voyants d’étapes en vert */
#etapes .dot,
#etapes .step-dot,
#etapes .step-indicator{
  background: var(--ok) !important;
  box-shadow: 0 0 0 6px rgba(43,228,167,.18) !important;
}
/* Étape 2 : forcer le voyant vert même si aura-blue est présent */
#etapes .goal-dot.aura-blue{
  background: var(--ok) !important;
  box-shadow: 0 0 0 6px rgba(43,228,167,.14) !important;
}

#etapes .goal-dot.aura-blue::before{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(43,228,167,.22), transparent 60%),
    radial-gradient(circle at 40% 80%, rgba(34,211,238,.12), transparent 62%) !important;
}

#etapes .goal-dot.aura-blue::after{
  border-color: rgba(43,228,167,.10) !important;
}
/* =========================
   Mock demo – curseur qui clique + fiche apparaît
   ========================= */

.mock-map{
  position: relative;
}

/* Curseur */
.demo-cursor{
  position:absolute;
  width:18px;
  height:18px;
  left: 10%;
  top: 20%;
  z-index: 6;
  pointer-events:none;
  opacity: 0;
  transform: translate(-50%, -50%);
}

/* Dessin du curseur (simple, discret) */
.demo-cursor::before{
  content:"";
  position:absolute;
  width: 14px;
  height: 14px;
  left: 0;
  top: 0;
  background: rgba(255,255,255,.95);
  clip-path: polygon(0 0, 0 100%, 28% 74%, 44% 100%, 60% 92%, 45% 66%, 75% 66%);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
  opacity:.95;
}

/* Ripple click */
.cursor-click{
  position:absolute;
  left: 8px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  transform: translate(-50%, -50%) scale(.6);
  opacity: 0;
  box-shadow: 0 0 0 0 rgba(34,211,238,.18);
}

/* Fiche demo : cachée par défaut */
.mock-panel.demo-panel{
  opacity: 0;
  transform: translateY(8px);
  pointer-events:none;
  transition: opacity .22s ease, transform .22s ease;
}

/* Quand actif */
.mock-card.is-demo-active .mock-panel.demo-panel{
  opacity: 1;
  transform: translateY(0);
}

/* Curseur visible + mouvement */
.mock-card.is-demo-running .demo-cursor{
  opacity: 1;
  animation: demoCursorMove 6.2s ease-in-out infinite;
}

/* Click ripple synchronisé */
.mock-card.is-demo-running .demo-cursor .cursor-click{
  animation: demoClick 9.2s ease-in-out infinite;
}

/* Affichage/masquage fiche synchronisé */
.mock-card.is-demo-running.is-demo-active .mock-panel.demo-panel{
  opacity: 1;
  transform: translateY(0);
}

/* Animations : timing
   - le curseur arrive (~0-35%)
   - clique (~40%)
   - fiche visible (~40-75%)
   - disparaît (~80-100%) */
@keyframes demoCursorMove{
  0%   { opacity:0; transform: translate(-50%, -50%) translate(-10px, 10px); }
  10%  { opacity:1; }
  35%  { transform: translate(-50%, -50%) translate(0px, 0px); }
  42%  { transform: translate(-50%, -50%) translate(1px, 1px); } /* micro “press” */
  48%  { transform: translate(-50%, -50%) translate(0px, 0px); }
  78%  { opacity:1; transform: translate(-50%, -50%) translate(12px, -8px); }
  100% { opacity:0; transform: translate(-50%, -50%) translate(20px, -14px); }
}

@keyframes demoClick{
  0%, 38% { opacity:0; transform: translate(-50%, -50%) scale(.6); box-shadow: 0 0 0 0 rgba(34,211,238,.18); }
  42%     { opacity:1; transform: translate(-50%, -50%) scale(1);  box-shadow: 0 0 0 12px rgba(34,211,238,.18); }
  50%     { opacity:0; transform: translate(-50%, -50%) scale(1.35); box-shadow: 0 0 0 20px rgba(34,211,238,0); }
  100%    { opacity:0; }
}


/* Accessibilité */
@media (prefers-reduced-motion: reduce){
  .mock-card.is-demo-running .demo-cursor,
  .mock-card.is-demo-running .demo-cursor .cursor-click{
    animation: none !important;
  }
  .mock-panel.demo-panel{
    opacity: 1 !important;
    transform: none !important;
  }
}
/* Garder la floating-card (Ambulance) à l'intérieur du mock */
.hero-mock{ position: relative; }

.floating-card{
  left: 16px;         /* au lieu de -10px */
  top: 56px;          /* un peu plus bas (optionnel) */
  max-width: 200px;   /* évite qu'elle déborde si texte */
}

/* Option: si écran plus petit, on la recale encore */
@media (max-width: 1120px){
  .floating-card{
    left: 12px;
    top: 58px;
  }
}

/* Si tu veux être sûr qu'elle ne sort jamais */
.mock-card{ overflow: visible; }
.hero-mock{ overflow: hidden; } /* garde tout à l’intérieur du mock global */
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 16px;
  margin-bottom:18px;

  font-size:13px;
  font-weight:600;
  letter-spacing:.3px;

  color:#9fd6ff;
  background:linear-gradient(
    135deg,
    rgba(80,160,255,.18),
    rgba(80,160,255,.08)
  );

  border:1px solid rgba(120,190,255,.25);
  border-radius:999px;

  backdrop-filter: blur(6px);
  box-shadow:0 10px 30px rgba(0,0,0,.25);

  animation:heroBadgeIn .8s ease-out both;
}

.hero-badge-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#4fb4ff;
  box-shadow:0 0 0 rgba(79,180,255,.6);
  animation:pulse 2s infinite;
}

@keyframes heroBadgeIn{
  from{
    opacity:0;
    transform:translateY(-6px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(79,180,255,.6); }
  70%{ box-shadow:0 0 0 10px rgba(79,180,255,0); }
  100%{ box-shadow:0 0 0 0 rgba(79,180,255,0); }
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo{
  height:40px; /* ajuste selon ton header */
}

.logo-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;

  font-size:14px;
  font-weight:600;
  letter-spacing:.3px;

  color:#bfe4ff;
  background:linear-gradient(
    135deg,
    rgba(70,140,255,.22),
    rgba(70,140,255,.1)
  );

  border:1px solid rgba(120,190,255,.35);
  border-radius:999px;

  backdrop-filter: blur(6px);
  box-shadow:0 12px 32px rgba(0,0,0,.35);

  animation:badgeIn .6s ease-out both;
}

.logo-badge .dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#4fb4ff;
  box-shadow:0 0 0 rgba(79,180,255,.6);
  animation:pulse 2.4s infinite;
}

@keyframes badgeIn{
  from{
    opacity:0;
    transform:translateY(-4px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(79,180,255,.6); }
  70%{ box-shadow:0 0 0 12px rgba(79,180,255,0); }
  100%{ box-shadow:0 0 0 0 rgba(79,180,255,0); }
}
.trust{
  position:relative;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.trust:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
}
.trust h3{
  transition:
    color .2s ease,
    text-shadow .2s ease,
    letter-spacing .2s ease;
}

/* applique le style à CHAQUE enfant direct = chaque card */
.trust > *{
  position:relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.trust > *:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
  border-color: rgba(120, 255, 160, .25);
}

.trust > * h3{
  transition: color .2s ease, text-shadow .2s ease, letter-spacing .2s ease;
}

.trust > *:hover h3{
  color: rgba(140, 255, 170, .95);
  letter-spacing: .3px;
  text-shadow:
    0 0 10px rgba(90, 255, 150, .35),
    0 0 26px rgba(90, 255, 150, .22);
}
.trust-card{
  position:relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.trust-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
  border-color: rgba(120, 255, 160, .25);
}

.trust-card h3{
  transition: color .2s ease, text-shadow .2s ease, letter-spacing .2s ease;
}

.trust-card:hover h3{
  color: rgba(140, 255, 170, .95);
  letter-spacing: .3px;
  text-shadow:
    0 0 10px rgba(90, 255, 150, .35),
    0 0 26px rgba(90, 255, 150, .22);
}
/* État normal */
.trust-card h3{
  color: #e6eaf0; /* ou ta couleur actuelle */
  transition:
    color .18s ease,
    text-shadow .18s ease;
}

/* Hover : titre bleu */
.trust-card:hover h3{
  color: #5fb7ff;
  text-shadow:
    0 0 8px rgba(95,183,255,.35),
    0 0 20px rgba(95,183,255,.2);
}
em{
  font-style: italic;
  color: #cfe8ff;
}
.card.price-card{
  position: relative;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.card.price-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  border-color: rgba(95,183,255,.35);
}
/* =========================
   Dégradé vert – texte "temps réel"
   ========================= */
.gradient-green-live {
  background: linear-gradient(90deg, #22C55E, #4ADE80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* =========================
   Dégradé vert + glow léger – "temps réel"
   ========================= */
.gradient-green-live {
  background: linear-gradient(90deg, #22C55E, #4ADE80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Glow subtil */
  text-shadow:
    0 0 8px rgba(34, 197, 94, 0.35),
    0 0 18px rgba(74, 222, 128, 0.15);
}
/* =========================
   Dégradé vert + pulse directionnel (gauche → droite)
   ========================= */
.gradient-green-live {
  background: linear-gradient(
    90deg,
    #22C55E 0%,
    #4ADE80 45%,
    #86EFAC 55%,
    #22C55E 100%
  );
  background-size: 220% 100%;
  background-position: 0% 50%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Glow doux */
  text-shadow:
    0 0 8px rgba(34, 197, 94, 0.35),
    0 0 18px rgba(74, 222, 128, 0.15);

  animation: glowSweep 4.5s ease-in-out infinite;
}


@keyframes glowSweep {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* =========================
   Mockup — Barre d’URL (Track Event — Live)
   ========================= */

.browserbar{
  display:flex;
  justify-content: center;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-radius:16px;

}

.browserbar-left{
  display:flex;
  align-items:center;
  gap:6px;
  flex:0 0 auto;
}

.browserbar-left .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  opacity:.9;
}
.browserbar-left .dot.red{ background:#ff5f57; }
.browserbar-left .dot.yellow{ background:#febc2e; }
.browserbar-left .dot.green{ background:#28c840; }

.browserbar-url{
  display:flex;
  align-items:center;
  gap:8px;
  flex:1 1 auto;

  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  min-width: 220px;
}

.browserbar-url .lock{
  font-size:14px;
  opacity:.85;
}

.browserbar-url .url-text{
  font-weight:600;
  letter-spacing:.2px;
  color: rgba(255,255,255,.92);
}

.browserbar-url .url-sep{
  opacity:.45;
  color: rgba(255,255,255,.85);
}

.browserbar-url .url-live{
  font-weight:700;
  letter-spacing:.3px;
  background: linear-gradient(90deg, #22C55E, #4ADE80);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  text-shadow:
    0 0 8px rgba(34, 197, 94, 0.35),
    0 0 18px rgba(74, 222, 128, 0.15);

  background-size: 220% 100%;
  animation: glowSweep 4.5s ease-in-out infinite;
}

/* Dégradé animé gauche → droite */
@keyframes glowSweep{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
  .browserbar-url .url-live { animation: none; }
}
.mockup-frame{
  position: relative;
  border-radius: 24px;
  overflow: hidden; /* garde tout dans le cadre global */
}

/* Barre URL en haut */
.mockup-url{
  position: relative;
  z-index: 10;
  padding: 12px;
  /* si ta barre url a déjà son style, garde-le ici */
}

/* Zone map : c’est elle qui empêche les popups de remonter sur la barre */
.mockup-map{
  position: relative;
  z-index: 1;
  overflow: hidden;        /* CLIP des popups dans la zone map */
  border-top: 1px solid rgba(255,255,255,.08);

  /* ajuste si besoin */
  min-height: 320px;
}
/* Ton conteneur de mockup (celui qui inclut la barre url) */
.mock-map{
  position: relative;
  overflow: hidden;
}

/* La barre url au-dessus */
.browserbar{
  position: relative;
  z-index: 10;
}

/* La floating card en dessous de la barre */
.floating-card{
  position: absolute;   /* important : pas fixed */
  z-index: 2;
  left: 16px;

  top: 92px;            /* ✅ descend sous la barre url */
}

.browserbar::after,
.browserbar-url::after{
  content: none !important;
}
