/* =====================================================================
   TrendTrack.tech — Feuille de style partagée (FR + EN)
   Design inspiré du site officiel trendtrack.io
   Palette : fond #010808, vert néon #0CED1E, vert #03AC4C, emeraude #047857
   Polices : Instrument Sans (titres) + Geist (corps)
   ===================================================================== */

:root {
  /* Couleurs de marque */
  --bg: #010808;
  --bg-2: #060d0c;
  --surface: #0b1312;
  --surface-2: #0f1a18;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --green: #0ced1e;          /* vert néon principal */
  --green-2: #03ac4c;        /* vert secondaire */
  --emerald: #047857;        /* emeraude profond */
  --green-glow: rgba(12, 237, 30, 0.35);

  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.5);

  --star: #ffc21a;

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1140px;

  --font-head: "Instrument Sans", "Geist", system-ui, -apple-system, Arial, sans-serif;
  --font-body: "Geist", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.8);
}

/* ---------- Reset léger ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* Décor de fond : léger halo vert + grille */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 500px at 50% -8%, rgba(12, 237, 30, 0.10), transparent 60%),
    radial-gradient(700px 500px at 100% 20%, rgba(3, 172, 76, 0.06), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- Utilitaires ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; position: relative; }
.section--tight { padding: 56px 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
.grad-green { color: var(--green); }
.text-green { color: var(--green); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green);
  padding: 7px 14px;
  border: 1px solid rgba(12, 237, 30, 0.25);
  border-radius: 999px;
  background: rgba(12, 237, 30, 0.06);
  margin-bottom: 18px;
}
.section-title { font-size: clamp(28px, 4.4vw, 44px); margin-bottom: 14px; }
.section-lead { color: var(--muted); font-size: 18px; max-width: 720px; }
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #1bff36, var(--green-2));
  color: #032109;
  box-shadow: 0 10px 30px -8px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px var(--green-glow); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }
.btn-lg { padding: 17px 34px; font-size: 18px; }
.btn-arrow::after { content: "→"; font-size: 1.05em; transition: transform .15s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(1, 8, 8, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 20px; }
.brand .logo {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(160deg, #1bff36, var(--green-2));
  display: grid; place-items: center; color: #032109; font-weight: 700; font-size: 18px;
  box-shadow: 0 6px 18px -4px var(--green-glow);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  padding: 8px 12px; border: 1px solid var(--border-strong); border-radius: 999px;
  background: transparent; cursor: pointer; font-family: var(--font-body);
  transition: color .15s, border-color .15s;
}
.lang-switch:hover { color: #fff; border-color: var(--green); }

/* Menu déroulant de langue */
.lang-dropdown { position: relative; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  min-width: 170px; padding: 6px;
  background: var(--bg-2); border: 1px solid var(--border-strong); border-radius: 12px;
  box-shadow: var(--shadow); display: none; z-index: 90;
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-menu a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--muted); font-size: 14.5px; font-weight: 500; }
.lang-menu a:hover { background: rgba(255,255,255,0.05); color: #fff; }

.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 26px; line-height: 1; }

/* ---------- Hero ---------- */
.hero { padding: 68px 0 40px; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-strong);
  font-size: 14px; color: var(--muted); margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero h1 {
  font-size: clamp(34px, 6.2vw, 66px);
  line-height: 1.04;
  margin: 0 auto 20px;
  max-width: 920px;
}
.hero p.sub { color: var(--muted); font-size: clamp(17px, 2.2vw, 21px); max-width: 640px; margin: 0 auto 26px; }

.rating-inline { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; justify-content: center; }
.stars { color: var(--star); font-size: 20px; letter-spacing: 2px; }
.rating-inline .score { font-weight: 600; font-family: var(--font-head); }
.rating-inline .score b { color: var(--green); }
.rating-inline .muted { color: var(--muted-2); font-size: 14px; }

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.promo-line { color: var(--muted); font-size: 14px; }
.promo-line .code {
  font-family: var(--font-head); font-weight: 700; color: var(--green);
  border: 1px dashed rgba(12, 237, 30, 0.5); padding: 2px 10px; border-radius: 8px;
  background: rgba(12, 237, 30, 0.06); letter-spacing: 1px;
}

.hero-stats { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-stats .stat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border);
  font-size: 14px; color: var(--muted);
}
.hero-stats .stat b { color: #fff; font-family: var(--font-head); }

/* ---------- Bandeau chiffres ---------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.metric { text-align: center; padding: 26px 16px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.metric .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px, 3.4vw, 38px); color: var(--green); }
.metric .lbl { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ---------- Vidéo ---------- */
.video-wrap { max-width: 900px; margin: 0 auto; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-strong); background: #000;
  box-shadow: var(--shadow), 0 0 0 1px rgba(12, 237, 30, 0.08);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-facade { position: absolute; inset: 0; cursor: pointer; background-size: cover; background-position: center; }
.video-facade::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55)); }
.video-facade .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 82px; height: 82px; border-radius: 50%;
  background: linear-gradient(180deg, #1bff36, var(--green-2));
  display: grid; place-items: center;
  box-shadow: 0 10px 40px -6px var(--green-glow);
  transition: transform .2s ease;
}
.video-facade:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.video-facade .play svg { width: 30px; height: 30px; margin-left: 4px; fill: #032109; }
.video-caption { text-align: center; color: var(--muted); font-size: 14px; margin-top: 16px; }

/* ---------- Verdict / résumé ---------- */
.verdict {
  display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: center;
  padding: 34px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
}
.verdict-score { text-align: center; }
.score-ring {
  width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 10px;
  display: grid; place-items: center;
  background:
    conic-gradient(var(--green) calc(var(--pct, 90) * 1%), rgba(255,255,255,0.08) 0);
  position: relative;
}
.score-ring::after {
  content: ""; position: absolute; inset: 12px; border-radius: 50%; background: var(--surface);
}
.score-ring .val { position: relative; z-index: 1; font-family: var(--font-head); font-weight: 700; font-size: 40px; }
.score-ring .val small { font-size: 18px; color: var(--muted); }
.verdict-body h3 { font-size: 24px; margin-bottom: 10px; }
.verdict-body p { color: var(--muted); }
.verdict-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.verdict-tags span { font-size: 13px; padding: 5px 12px; border-radius: 999px; background: rgba(12,237,30,0.08); border: 1px solid rgba(12,237,30,0.2); color: var(--green); }

/* ---------- Grille de cartes générique ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  padding: 26px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(12,237,30,0.35); background: var(--surface-2); }
.card .ic {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(12,237,30,0.10); border: 1px solid rgba(12,237,30,0.22);
  font-size: 22px; margin-bottom: 16px;
}
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* Cas d'usage */
.usecase { display: flex; gap: 16px; align-items: flex-start; }
.usecase .ic { flex: 0 0 auto; }

/* ---------- Bloc mis en avant (EU/UK, IA) ---------- */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.highlight-card {
  padding: 34px; border-radius: var(--radius);
  background:
    radial-gradient(400px 200px at 20% 0%, rgba(12,237,30,0.10), transparent 70%),
    var(--surface);
  border: 1px solid var(--border-strong);
}
.highlight-card .tag { color: var(--green); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.highlight-card h3 { font-size: 24px; margin: 10px 0 12px; }
.highlight-card p { color: var(--muted); }
.highlight-card ul { margin-top: 16px; display: grid; gap: 10px; }
.highlight-card li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 15px; }
.highlight-card li::before { content: "✓"; color: var(--green); font-weight: 700; }

/* ---------- Pros / Cons ---------- */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pc-card { padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.pc-card h3 { font-size: 20px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.pc-card.pros { border-color: rgba(12,237,30,0.28); }
.pc-card.cons { border-color: rgba(255,120,120,0.22); }
.pc-card ul { display: grid; gap: 12px; }
.pc-card li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 15.5px; }
.pc-card.pros li::before { content: "✓"; color: var(--green); font-weight: 700; flex: 0 0 auto; }
.pc-card.cons li::before { content: "✕"; color: #ff7676; font-weight: 700; flex: 0 0 auto; }

/* ---------- Tarifs ---------- */
.pricing-toggle { display: inline-flex; gap: 4px; padding: 5px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); margin: 0 auto 34px; }
.pricing-toggle button {
  border: 0; background: transparent; color: var(--muted); font-weight: 600; font-size: 14px;
  padding: 9px 18px; border-radius: 999px; font-family: var(--font-head);
}
.pricing-toggle button.active { background: var(--green); color: #032109; }
.pricing-toggle .save { font-size: 11px; color: var(--green); margin-left: 4px; }
.pricing-toggle button.active .save { color: #032109; }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan { padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); display: flex; flex-direction: column; }
.plan.featured { border-color: var(--green); background: linear-gradient(180deg, rgba(12,237,30,0.06), var(--surface)); box-shadow: 0 0 0 1px rgba(12,237,30,0.2), var(--shadow); }
.plan .plan-name { font-family: var(--font-head); font-weight: 600; font-size: 20px; }
.plan .badge-pop { font-size: 12px; color: var(--green); font-weight: 600; float: right; padding: 3px 10px; border-radius: 999px; background: rgba(12,237,30,0.1); border: 1px solid rgba(12,237,30,0.25); }
.plan .price { font-family: var(--font-head); font-weight: 700; font-size: 44px; margin: 14px 0 2px; }
.plan .price small { font-size: 16px; color: var(--muted); font-weight: 500; }
.plan .price-note { color: var(--muted-2); font-size: 13px; margin-bottom: 18px; min-height: 18px; }
.plan ul { display: grid; gap: 10px; margin-bottom: 24px; }
.plan li { display: flex; gap: 10px; color: var(--muted); font-size: 14.5px; }
.plan li::before { content: "✓"; color: var(--green); font-weight: 700; }
.plan .btn { margin-top: auto; width: 100%; }
.pricing-note { text-align: center; color: var(--muted-2); font-size: 13.5px; margin-top: 22px; }

/* ---------- Tableau comparatif ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td { padding: 15px 16px; text-align: center; border-bottom: 1px solid var(--border); font-size: 14.5px; }
table.compare thead th { background: var(--surface-2); font-family: var(--font-head); font-weight: 600; color: #fff; }
table.compare th.feat, table.compare td.feat { text-align: left; color: var(--muted); font-weight: 500; }
table.compare .col-tt { background: rgba(12,237,30,0.06); color: #fff; font-weight: 600; }
table.compare thead .col-tt { color: var(--green); }
table.compare .yes { color: var(--green); font-weight: 700; }
table.compare .no { color: #ff7676; }
table.compare tr:last-child td { border-bottom: 0; }

/* ---------- Témoignages ---------- */
.wall { columns: 3; column-gap: 20px; }
.tmz { break-inside: avoid; margin-bottom: 20px; padding: 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.tmz .stars { font-size: 15px; margin-bottom: 10px; }
.tmz p { font-size: 15px; color: #e9f5ee; margin-bottom: 14px; }
.tmz .who { display: flex; align-items: center; gap: 12px; }
.tmz .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(160deg, var(--green), var(--emerald)); display: grid; place-items: center; font-weight: 700; color: #032109; font-family: var(--font-head); }
.tmz .who .n { font-weight: 600; font-size: 14.5px; }
.tmz .who .r { color: var(--muted-2); font-size: 13px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 17px; padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .chev { color: var(--green); font-size: 22px; transition: transform .2s ease; flex: 0 0 auto; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); font-size: 15.5px; }

/* ---------- CTA final ---------- */
.cta-final {
  text-align: center; padding: 60px 34px; border-radius: var(--radius);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(12,237,30,0.16), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid rgba(12,237,30,0.28);
}
.cta-final h2 { font-size: clamp(28px, 4.4vw, 44px); margin-bottom: 14px; }
.cta-final p { color: var(--muted); max-width: 560px; margin: 0 auto 26px; font-size: 18px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 54px 0 40px; margin-top: 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 34px; }
.footer-top p { color: var(--muted); font-size: 14.5px; max-width: 340px; margin-top: 12px; }
.footer-col h4 { font-family: var(--font-head); font-size: 15px; margin-bottom: 14px; color: #fff; }
.footer-col a { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: 13px; }

/* Bandeau de sélection de langue (en bas de page) */
.footer-langs { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; padding: 24px 0; border-top: 1px solid var(--border); margin-bottom: 6px; }
.footer-langs .globe { color: var(--muted-2); font-size: 15px; margin-right: 2px; }
.footer-langs a { font-size: 14px; color: var(--muted); padding: 8px 16px; border: 1px solid var(--border-strong); border-radius: 999px; transition: color .15s, border-color .15s, background .15s; }
.footer-langs a:hover { color: #fff; border-color: var(--green); }
.footer-langs a.active { color: var(--green); border-color: var(--green); background: rgba(12,237,30,0.07); font-weight: 600; cursor: default; }
.affiliate-disclosure { color: var(--muted-2); font-size: 13px; line-height: 1.6; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 30px; }
.affiliate-disclosure b { color: var(--muted); }

/* ---------- Barre CTA mobile fixe ---------- */
.sticky-cta { display: none; }

/* ---------- Menu mobile ---------- */
.mobile-menu { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-split, .proscons { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .verdict { grid-template-columns: 1fr; text-align: center; }
  .wall { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .wall { columns: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { padding: 44px 0 24px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .sticky-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(1, 8, 8, 0.92); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border); gap: 12px; align-items: center;
  }
  .sticky-cta .btn { flex: 1; }
  .sticky-cta .mini { font-size: 12px; color: var(--muted); flex: 0 0 auto; }
  body { padding-bottom: 72px; }
  /* Menu mobile déroulant */
  .mobile-menu.show { display: block; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 16px 22px; }
  .mobile-menu a { display: block; padding: 12px 0; color: var(--muted); border-bottom: 1px solid var(--border); font-size: 16px; }
  .mobile-menu a:last-child { border-bottom: 0; }
}

/* Accessibilité : réduction des animations */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Reveal au scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
