/* ════════════════════════════════════════════════════════════════════
   VetSafe — Design system du site
   Palette « famille bleue » héritée de l'app (aucun vert : safe = teal)
   ════════════════════════════════════════════════════════════════════ */
:root {
  --blue-900: #0c1b2e;
  --blue-800: #0f2d52;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --sky-500: #0ea5e9;
  --sky-400: #38bdf8;
  --sky-100: #e0f2fe;
  --sky-50: #f0f9ff;
  --surface: #f6faff;
  --card: #ffffff;
  --ink: #0c1b2e;
  --ink-soft: #4a6070;
  --line: #dbeafe;

  --sev-lethal: #b91c1c;
  --sev-lethal-bg: #fee2e2;
  --sev-high: #c2410c;
  --sev-high-bg: #ffedd5;
  --sev-moderate: #a16207;
  --sev-moderate-bg: #fef3c7;
  --sev-low: #0369a1;
  --sev-low-bg: #e0f2fe;
  --sev-safe: #0f766e;
  --sev-safe-bg: #ccfbf1;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow-xs: 0 1px 2px rgba(12, 27, 46, .06);
  --shadow: 0 1px 2px rgba(12, 27, 46, .05), 0 8px 24px -12px rgba(37, 99, 235, .18);
  --shadow-lift: 0 2px 4px rgba(12, 27, 46, .06), 0 16px 40px -12px rgba(37, 99, 235, .28);
  --shadow-md: 0 18px 44px -18px rgba(37, 99, 235, .34);
  --grad-primary: linear-gradient(135deg, #1d4ed8 0%, #2563eb 52%, #38bdf8 100%);
  --grad-soft: linear-gradient(180deg, #eff6ff 0%, #ffffff 72%);
  --accent: #38bdf8;
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 20px; }

/* ─── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 250, 255, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 18px;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.22rem; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand img { width: 34px; height: 34px; }
.brand b { color: var(--blue-600); font-weight: 800; }
.main-nav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.main-nav a {
  padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  color: var(--ink-soft);
}
.main-nav a:hover { background: var(--sky-50); color: var(--blue-600); text-decoration: none; }
.main-nav a.cta {
  background: var(--blue-600); color: #fff;
  box-shadow: var(--shadow);
}
.main-nav a.cta:hover { background: var(--blue-700); color: #fff; }
.nav-toggle { display: none; }

@media (max-width: 760px) {
  .main-nav { display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 10px 16px 16px; gap: 6px; }
  .main-nav a { padding: 12px 14px; }
  .nav-open .main-nav { display: flex; }
  .nav-toggle {
    display: block; margin-left: auto; background: none; border: 0; cursor: pointer;
    font-size: 1.5rem; color: var(--ink); padding: 6px;
  }
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(56, 189, 248, .25), transparent 60%),
    radial-gradient(900px 480px at 0% 110%, rgba(37, 99, 235, .14), transparent 55%),
    linear-gradient(180deg, #eaf4ff 0%, var(--surface) 100%);
  padding: 72px 0 64px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.3rem);
  line-height: 1.12; letter-spacing: -.035em; font-weight: 800;
  margin: 0 auto 18px; max-width: 21ch;
}
.hero h1 em { font-style: normal; color: var(--blue-600); }
.hero p.lede { font-size: clamp(1.02rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 52ch; margin: 0 auto 34px; }

.species-switch { display: inline-flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; justify-content: center; }
.species-switch a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 26px; border-radius: 999px; font-weight: 700; font-size: 1.05rem;
  background: #fff; color: var(--ink); border: 1.5px solid var(--line);
  box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease;
}
.species-switch a:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); text-decoration: none; border-color: var(--sky-400); }
.species-switch a span.ico { font-size: 1.35rem; }

/* ─── Recherche ──────────────────────────────────────────────────── */
.search-box { position: relative; max-width: 620px; margin: 0 auto; }
.search-box input {
  width: 100%; padding: 17px 22px 17px 54px;
  font: inherit; font-size: 1.06rem;
  border: 1.5px solid var(--line); border-radius: 999px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%234a6070' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E") 20px center no-repeat;
  box-shadow: var(--shadow);
  outline: none;
}
.search-box input:focus { border-color: var(--sky-400); box-shadow: 0 0 0 4px rgba(56, 189, 248, .2); }
.search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 40;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift); max-height: 380px; overflow-y: auto;
  text-align: left; display: none;
}
.search-results.open { display: block; }
.search-results a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; color: var(--ink); border-bottom: 1px solid var(--sky-50);
}
.search-results a:last-child { border-bottom: 0; }
.search-results a:hover { background: var(--sky-50); text-decoration: none; }
.search-results .emo { font-size: 1.25rem; }
.search-results small { color: var(--ink-soft); margin-left: auto; white-space: nowrap; }
.search-results .none { padding: 14px 16px; color: var(--ink-soft); }

/* ─── Sections / titres ──────────────────────────────────────────── */
section.band { padding: 58px 0; }
section.band.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band h2 { font-size: clamp(1.45rem, 3vw, 2.05rem); letter-spacing: -.025em; margin: 0 0 8px; }
.band p.sub { color: var(--ink-soft); margin: 0 0 30px; max-width: 60ch; }
.band .head-row { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.band .head-row .more { margin-left: auto; font-weight: 600; white-space: nowrap; }

/* ─── Grilles de cartes ──────────────────────────────────────────── */
.grid { display: grid; gap: 18px; }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } .grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid.cols-4, .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
  display: block; color: var(--ink);
}
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); text-decoration: none; }
.card .emo { font-size: 1.9rem; display: block; margin-bottom: 10px; }
.card h3 { margin: 0 0 6px; font-size: 1.08rem; letter-spacing: -.015em; }
.card p { margin: 0; color: var(--ink-soft); font-size: .92rem; line-height: 1.5; }
.card .count { display: inline-block; margin-top: 12px; font-size: .85rem; font-weight: 700; color: var(--blue-600); }

/* Carte danger (liste) */
.danger-card { display: flex; gap: 14px; align-items: flex-start; }
.danger-card .thumb {
  flex: 0 0 52px; width: 52px; height: 52px; border-radius: 14px;
  background: var(--sky-50); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; overflow: hidden;
}
.danger-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.danger-card .body { min-width: 0; }
.danger-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.danger-card p { font-size: .88rem; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* ─── Badges sévérité ────────────────────────────────────────────── */
.sev {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .78rem; font-weight: 700; letter-spacing: .02em;
  padding: 4px 11px 4px 8px; border-radius: 999px; white-space: nowrap;
}
.sev .i { width: 1.05em; height: 1.05em; stroke-width: 2.2; }
.sev.lethal { color: var(--sev-lethal); background: var(--sev-lethal-bg); }
.sev.high { color: var(--sev-high); background: var(--sev-high-bg); }
.sev.moderate { color: var(--sev-moderate); background: var(--sev-moderate-bg); }
.sev.low { color: var(--sev-low); background: var(--sev-low-bg); }
.sev.safe { color: var(--sev-safe); background: var(--sev-safe-bg); }
.sev.lg { font-size: .95rem; padding: 6px 16px 6px 12px; }

/* ─── Stats home ─────────────────────────────────────────────────── */
.stats { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 46px; }
.stats .stat {
  background: rgba(255,255,255,.75); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 30px; min-width: 150px;
}
.stats b { display: block; font-size: 1.7rem; letter-spacing: -.03em; color: var(--blue-600); }
.stats span { color: var(--ink-soft); font-size: .9rem; font-weight: 600; }

/* ─── Bandeau urgence ────────────────────────────────────────────── */
.emergency {
  background: linear-gradient(90deg, #7f1d1d, #b91c1c);
  color: #fff; border-radius: var(--radius); padding: 26px 28px;
  display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
  box-shadow: var(--shadow-lift);
}
.emergency .ico { font-size: 2.2rem; }
.emergency h2, .emergency h3 { margin: 0 0 4px; font-size: 1.15rem; color: #fff; }
.emergency p { margin: 0; font-size: .95rem; opacity: .92; }
.emergency a { color: #fff; font-weight: 800; text-decoration: underline; white-space: nowrap; }
.emergency .numbers { margin-left: auto; display: flex; gap: 18px; flex-wrap: wrap; }
.emergency .numbers div { font-size: .85rem; opacity: .95; }
.emergency .numbers b { display: block; font-size: 1.05rem; }

/* ─── Page fiche danger ──────────────────────────────────────────── */
.breadcrumb { font-size: .86rem; color: var(--ink-soft); margin: 22px 0 6px; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--blue-600); }
.breadcrumb .sep { margin: 0 6px; opacity: .5; }

.fiche-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; padding-bottom: 64px; }
@media (max-width: 920px) { .fiche-layout { grid-template-columns: 1fr; } }

.fiche-head { display: flex; gap: 20px; align-items: center; margin: 14px 0 22px; }
.fiche-head .emoji-big {
  flex: 0 0 84px; width: 84px; height: 84px; border-radius: 22px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center; font-size: 2.7rem;
  overflow: hidden;
}
.fiche-head .emoji-big img { width: 100%; height: 100%; object-fit: cover; }
.fiche-head h1 { font-size: clamp(1.5rem, 3.6vw, 2.3rem); margin: 0 0 6px; letter-spacing: -.03em; line-height: 1.15; }
.fiche-head .sci { color: var(--ink-soft); font-style: italic; font-size: .95rem; }

.quick-answer {
  border-radius: var(--radius); padding: 20px 24px; margin: 0 0 28px;
  font-size: 1.06rem; border: 1.5px solid;
}
.quick-answer.lethal { background: var(--sev-lethal-bg); border-color: #fca5a5; color: #7f1d1d; }
.quick-answer.high { background: var(--sev-high-bg); border-color: #fdba74; color: #7c2d12; }
.quick-answer.moderate { background: var(--sev-moderate-bg); border-color: #fcd34d; color: #713f12; }
.quick-answer.low { background: var(--sev-low-bg); border-color: #7dd3fc; color: #075985; }
.quick-answer.safe { background: var(--sev-safe-bg); border-color: #5eead4; color: #134e4a; }
.quick-answer b:first-child { display: block; font-size: 1.12rem; margin-bottom: 4px; }

article.fiche h2 { font-size: 1.35rem; letter-spacing: -.02em; margin: 36px 0 12px; padding-top: 8px; }
article.fiche h2 .h-ico { margin-right: 8px; }
article.fiche ul, article.fiche ol { padding-left: 24px; margin: 12px 0; }
article.fiche li { margin: 7px 0; }
article.fiche ol.steps { counter-reset: step; list-style: none; padding-left: 0; }
article.fiche ol.steps li {
  counter-increment: step; position: relative; padding: 12px 16px 12px 52px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin: 9px 0;
}
article.fiche ol.steps li::before {
  content: counter(step); position: absolute; left: 14px; top: 12px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue-600); color: #fff; font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}

.info-table { width: 100%; border-collapse: collapse; margin: 12px 0; background: #fff; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); font-size: .95rem; }
.info-table th, .info-table td { padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--sky-50); vertical-align: top; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }
.info-table th { color: var(--ink-soft); font-weight: 600; width: 38%; background: var(--sky-50); }

.cross-species {
  display: flex; align-items: center; gap: 14px;
  background: var(--sky-50); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 20px; margin: 30px 0;
}
.cross-species .ico { font-size: 1.7rem; }
.cross-species p { margin: 0; font-size: .95rem; }

.source-box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; margin: 30px 0; box-shadow: var(--shadow);
}
.source-box h2 { margin-top: 0; }
.source-box p { margin: 0 0 12px; color: var(--ink-soft); }
.source-box ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.source-box li {
  padding: 11px 12px; border: 1px solid var(--sky-100); border-radius: var(--radius-sm);
  background: var(--sky-50);
}
.source-box li a { font-weight: 800; color: var(--blue-700); }
.source-box li span { display: block; margin-top: 4px; color: var(--ink-soft); font-size: .9rem; }

/* Sidebar fiche */
.fiche-aside { display: flex; flex-direction: column; gap: 20px; margin-top: 14px; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); }
.aside-card h3 { margin: 0 0 12px; font-size: 1rem; }
.aside-card.urgence { background: #fff5f5; border-color: #fecaca; }
.aside-card.urgence h3 { color: var(--sev-lethal); }
.aside-card.urgence p { font-size: .88rem; margin: 6px 0; }
.aside-card.urgence b { font-size: 1rem; }
.aside-card .applink { display: flex; align-items: center; gap: 12px; }
.aside-card .applink img { width: 46px; height: 46px; }
.aside-card .applink p { margin: 0; font-size: .87rem; color: var(--ink-soft); }
.btn {
  display: inline-block; padding: 11px 22px; border-radius: 999px;
  background: var(--blue-600); color: #fff; font-weight: 700; font-size: .95rem;
  box-shadow: var(--shadow); margin-top: 12px;
}
.btn:hover { background: var(--blue-700); text-decoration: none; }
.btn.ghost { background: #fff; color: var(--blue-600); border: 1.5px solid var(--line); }
.btn.ghost:hover { border-color: var(--sky-400); background: var(--sky-50); }

/* Liste compacte (sidebar / related) */
.mini-list { list-style: none; padding: 0; margin: 0; }
.mini-list li { border-bottom: 1px solid var(--sky-50); }
.mini-list li:last-child { border-bottom: 0; }
.mini-list a { display: flex; align-items: center; gap: 10px; padding: 9px 2px; color: var(--ink); font-size: .92rem; }
.mini-list a:hover { color: var(--blue-600); text-decoration: none; }
.mini-list .emo { font-size: 1.15rem; }
.mini-list .sev { margin-left: auto; }

/* ─── Disclaimer ─────────────────────────────────────────────────── */
.disclaimer {
  background: var(--sky-50); border: 1px dashed var(--line); border-radius: var(--radius-sm);
  padding: 14px 18px; font-size: .84rem; color: var(--ink-soft); margin: 34px 0 0;
}

/* ─── Articles ───────────────────────────────────────────────────── */
.article-card { display: flex; flex-direction: column; }
.article-card .article-thumb {
  display: block; margin: -22px -22px 16px; aspect-ratio: 16 / 9;
  border-radius: var(--radius) var(--radius) 0 0; overflow: hidden;
  background: var(--sky-50);
}
.article-card .article-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-card .tag { font-size: .78rem; font-weight: 700; color: var(--sky-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.article-card h3 { font-size: 1.12rem; }
.article-card time { margin-top: auto; padding-top: 14px; font-size: .82rem; color: var(--ink-soft); }

article.post { padding: 10px 0 50px; overflow-wrap: anywhere; }
article.post h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); letter-spacing: -.03em; line-height: 1.15; margin: 10px 0 14px; }
article.post .meta { color: var(--ink-soft); font-size: .9rem; margin-bottom: 30px; }
article.post h2 { font-size: 1.45rem; letter-spacing: -.02em; margin: 38px 0 12px; }
article.post h3 { font-size: 1.15rem; margin: 28px 0 10px; }
article.post img { border-radius: var(--radius); }
article.post figure { margin: 28px 0; }
article.post figure img {
  display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
article.post figcaption { margin-top: 8px; color: var(--ink-soft); font-size: .84rem; line-height: 1.45; }
article.post .post-cover { margin: 20px 0 34px; }
article.post .article-answer-box {
  margin: -6px 0 32px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-600);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fff, var(--sky-50));
}
article.post .article-answer-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: 1rem;
}
article.post .article-answer-box p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}
article.post .article-answer-box ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: .94rem;
}
article.post .article-answer-box li { margin: 5px 0; }
article.post .post-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 34px 0;
}
article.post .post-image-grid figure { margin: 0; }
article.post .article-crosslinks {
  margin: 34px 0 10px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--sky-400);
  border-radius: var(--radius-sm);
  background: #fff;
}
article.post .article-crosslinks strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: .98rem;
}
article.post .article-crosslinks ul {
  margin: 0;
  padding-left: 18px;
}
article.post .article-crosslinks li { margin: 6px 0; }
article.post .article-crosslinks a { font-weight: 700; }
article.post blockquote {
  margin: 24px 0; padding: 16px 22px; border-left: 4px solid var(--sky-400);
  background: var(--sky-50); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-soft);
}
article.post table { width: 100%; border-collapse: collapse; margin: 18px 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; font-size: .95rem; }
article.post th, article.post td { padding: 10px 14px; border-bottom: 1px solid var(--sky-50); text-align: left; }
article.post th { background: var(--sky-50); }

/* FAQ */
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 20px; margin: 10px 0;
}
.faq summary { cursor: pointer; font-weight: 600; padding: 15px 0; list-style: none; position: relative; padding-right: 30px; }
.faq summary::after { content: '+'; position: absolute; right: 4px; top: 12px; font-size: 1.3rem; color: var(--blue-600); }
.faq details[open] summary::after { content: '–'; }
.faq details p { margin: 0 0 16px; color: var(--ink-soft); }

/* ─── Section app ────────────────────────────────────────────────── */
.app-promo {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 70%, var(--sky-500) 110%);
  border-radius: 26px; color: #fff; padding: 52px 48px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-lift); overflow: hidden;
}
@media (max-width: 820px) { .app-promo { grid-template-columns: 1fr; padding: 38px 28px; } }
.app-promo h2 { color: #fff; margin: 0 0 12px; font-size: clamp(1.4rem, 3vw, 2rem); }
.app-promo p { color: rgba(255,255,255,.85); margin: 0 0 22px; }
.app-promo ul { list-style: none; padding: 0; margin: 0 0 26px; }
.app-promo li { padding: 6px 0 6px 30px; position: relative; color: rgba(255,255,255,.92); }
.app-promo li::before { content: '✓'; position: absolute; left: 0; font-weight: 800; color: var(--sky-400); }
.app-promo .visual {
  min-height: 430px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; line-height: 1; position: relative;
}
.app-promo .app-phone { width: min(230px, 52%); }
.app-promo .promo-phone { transform: rotate(-4deg) translateY(-3%); z-index: 2; }
.app-promo .promo-phone-secondary { margin-left: -22%; transform: rotate(5deg) translateY(8%); z-index: 1; }
@media (max-width: 820px) {
  .app-promo .visual { min-height: 360px; }
  .app-promo .app-phone { width: min(205px, 50%); }
}

/* Page application */
.app-page-hero {
  background:
    radial-gradient(900px 460px at 100% 8%, rgba(14, 165, 233, .18), transparent 58%),
    linear-gradient(180deg, #eaf4ff 0%, var(--surface) 100%);
  padding: 24px 0 66px; overflow: hidden;
}
.app-page-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 44px;
  align-items: center; margin-top: 26px;
}
@media (max-width: 920px) { .app-page-grid { grid-template-columns: 1fr; } }
.app-page-copy h1 {
  margin: 0 0 18px; max-width: 12ch;
  font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.08; letter-spacing: -.035em;
}
.app-page-copy .lede { margin: 0 0 22px; max-width: 52ch; color: var(--ink-soft); font-size: 1.08rem; }
.app-hero-list, .check-list { list-style: none; padding: 0; margin: 0 0 26px; }
.app-hero-list li, .check-list li {
  position: relative; padding-left: 28px; margin: 9px 0; color: var(--ink-soft); font-weight: 650;
}
.app-hero-list li::before, .check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--sky-500); font-weight: 900;
}
.app-page-visual { min-height: 560px; }

.app-feature-list { display: grid; gap: 76px; }
.app-feature-row {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 46px;
  align-items: center;
}
.app-feature-row.reverse { direction: rtl; }
.app-feature-row.reverse > * { direction: ltr; }
.app-feature-row h2 {
  margin: 0 0 14px; font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  line-height: 1.15; letter-spacing: -.03em;
}
.app-feature-row p { color: var(--ink-soft); margin: 0 0 18px; }
.app-feature-media {
  min-height: 540px; display: flex; align-items: center; justify-content: center;
}
.app-feature-media.duo .app-phone { width: min(250px, 48%); }
.app-feature-media.duo .app-phone:first-child { transform: rotate(-4deg) translateY(-4%); z-index: 2; }
.app-feature-media.duo .app-phone:last-child { margin-left: -18%; transform: rotate(5deg) translateY(6%); z-index: 1; }
@media (max-width: 900px) {
  .app-feature-row, .app-feature-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .app-feature-media { min-height: 440px; }
}
@media (max-width: 520px) {
  .app-feature-list { gap: 54px; }
  .app-feature-media { min-height: 370px; }
  .app-feature-media.duo .app-phone { width: min(185px, 52%); }
}
.app-launch-box { text-align: center; }
.app-launch-box .eyebrow { justify-content: center; }
.app-launch-box .waitlist-form { margin: 24px auto 0; text-align: left; }

/* ─── Footer ─────────────────────────────────────────────────────── */
.site-footer { background: var(--blue-900); color: #b9cce0; margin-top: 70px; padding: 52px 0 30px; font-size: .92rem; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 820px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .cols { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .95rem; margin: 0 0 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: #b9cce0; }
.site-footer a:hover { color: #fff; }
.site-footer .brandline { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.15rem; margin-bottom: 12px; }
.site-footer .brandline img { width: 30px; height: 30px; }
.site-footer .legal { border-top: 1px solid rgba(255,255,255,.12); margin-top: 38px; padding-top: 22px; font-size: .8rem; color: #7e96ad; }

/* ─── Hub espèce ─────────────────────────────────────────────────── */
.hub-hero { padding: 46px 0 36px; }
.hub-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -.03em; margin: 8px 0 10px; }
.hub-hero p { color: var(--ink-soft); max-width: 62ch; margin: 0; }

.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin: 26px 0 6px; }
.filter-bar a {
  padding: 7px 16px; border-radius: 999px; font-size: .88rem; font-weight: 600;
  background: #fff; border: 1px solid var(--line); color: var(--ink-soft);
}
.filter-bar a.on { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.filter-bar a:hover { text-decoration: none; border-color: var(--sky-400); }

/* Pages texte simples */
.page-prose { padding: 20px 0 60px; }
.page-prose h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); letter-spacing: -.03em; }
.page-prose h2 { margin-top: 34px; }

/* ════════════════════════════════════════════════════════════════════
   Landing produit (home) — style « equio.fr », palette VetSafe
   ════════════════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--sky-400); }

.hero-split {
  background:
    radial-gradient(900px 600px at 110% 20%, rgba(56, 189, 248, .18), transparent 55%),
    linear-gradient(180deg, #eaf4ff 0%, var(--surface) 100%);
  overflow: hidden;
}
.hero-split .wrap {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px;
  align-items: center; padding-top: 56px; padding-bottom: 64px; min-height: 560px;
}
.hero-split .wrap > *, .app-page-grid > * { min-width: 0; }
@media (max-width: 920px) {
  .hero-split .wrap { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-split .wrap > div:first-child,
  .app-page-copy {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }
  .hero-split h1,
  .hero-split p.lede,
  .hero-pills,
  .hero-ctas,
  .hero-split .waitlist-form,
  .app-page-copy h1,
  .app-page-copy .lede,
  .app-hero-list,
  .app-page-copy .waitlist-form {
    max-width: 100%;
  }
  .hero-pills span { max-width: 100%; white-space: normal; }
}
.hero-split h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.05rem); line-height: 1.12;
  letter-spacing: -.035em; font-weight: 800; margin: 0 0 18px;
}
.hero-split h1 .l1 { color: var(--ink); display: block; }
.hero-split h1 .l2 {
  color: var(--blue-600); display: block;
  text-decoration: underline; text-decoration-color: var(--sky-400);
  text-decoration-thickness: 4px; text-underline-offset: 7px;
}
.hero-split h1 .l3 { color: var(--ink); display: block; }
.hero-split p.lede { font-size: 1.06rem; color: var(--ink-soft); max-width: 50ch; margin: 0 0 24px; }

.home-hero {
  background: linear-gradient(180deg, #eaf4ff 0%, var(--surface) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
  padding-top: clamp(1.4rem, 3vw, 2.6rem);
  padding-bottom: clamp(1.6rem, 3vw, 3rem);
  min-height: 620px;
}
.hero-grid > * { min-width: 0; }
.hero-copy { position: relative; z-index: 5; min-width: 0; }
.hero-copy h1 {
  font-size: clamp(1.95rem, 1.2rem + 1.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 800;
  margin: 0 0 .85rem;
}
.hero-copy h1 span { display: block; }
.hero-copy h1 .hl {
  color: var(--blue-600);
  text-decoration: underline;
  text-decoration-color: var(--sky-400);
  text-decoration-thickness: 4px;
  text-underline-offset: 7px;
}
.hero-copy .lead {
  margin: .85rem 0 0;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.hero-quick-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .7rem;
  margin-top: 1.6rem;
  max-width: 560px;
}
.hero-quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  text-align: center;
  padding: 1rem .5rem .85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hero-quick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--sky-400); }
.hero-quick-ico {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(37, 99, 235, .55);
}
.hero-quick-ico .i { width: 26px; height: 26px; }
.hero-quick-label {
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.18;
  color: var(--ink);
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  margin-bottom: 1.2rem;
}
.home-hero .waitlist-form { margin-top: 0; }
.home-hero-visual { align-items: center; isolation: isolate; min-height: 0; }
.home-hero .hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 560px;
}
.home-hero .phone-main {
  position: relative;
  left: auto;
  top: auto;
  width: min(286px, 44vw);
  transform: none;
  z-index: 3;
}
.home-hero .phone-aside {
  position: absolute;
  right: -2%;
  bottom: 11%;
  top: auto;
  width: min(210px, 32vw);
  transform: rotate(4deg);
  z-index: 4;
}
.home-hero .float-card.float-card-horse {
  left: -3%;
  top: auto;
  bottom: 17%;
  z-index: 6;
  display: block;
  width: 236px;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(219,234,254,.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lift);
  font-size: .82rem;
}
.float-card-title { display: flex; align-items: center; gap: .8rem; }
.float-card-title strong { display: block; color: var(--ink); font-size: 1.02rem; line-height: 1.1; }
.float-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--grad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.float-ico .i { width: 23px; height: 23px; }
.float-horse-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-bottom: 1px solid var(--line);
  margin-top: .95rem;
  padding-bottom: .85rem;
}
.float-horse-row img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 auto;
}
.float-horse-row span,
.float-result { display: flex; flex-direction: column; min-width: 0; }
.float-horse-row strong { color: var(--ink); font-size: .9rem; }
.float-horse-row small,
.float-result small { color: var(--ink-soft); font-size: .74rem; line-height: 1.28; }
.float-score-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: .75rem;
  align-items: center;
  margin-top: .85rem;
}
.float-score {
  aspect-ratio: 1;
  border: 6px solid var(--sky-500);
  border-left-color: var(--sky-100);
  border-radius: 50%;
  color: var(--blue-600);
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-top: 19px;
}
.float-score strong { font-size: 1.18rem; line-height: 1; font-weight: 800; }
.float-score small { font-size: .58rem; color: var(--ink-soft); }
.float-result strong { color: var(--blue-600); font-size: .96rem; }
.float-link {
  display: block;
  color: var(--blue-600);
  font-size: .83rem;
  font-weight: 800;
  margin-top: .9rem;
  text-align: right;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.8rem, 2vw, 1.8rem);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(1.6rem, 3vw, 2.6rem) 20px clamp(2.4rem, 4vw, 3.6rem);
}
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  text-align: center;
  padding: 0 .6rem;
}
.trust-card:not(:last-child) { border-right: 1px solid var(--line); }
.trust-ico {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff, var(--sky-100));
  border: 1px solid var(--line);
  color: var(--blue-600);
  box-shadow: var(--shadow-xs);
}
.trust-ico .i { width: 26px; height: 26px; stroke-width: 1.9; }
.trust-card strong {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.trust-card span:last-child { font-size: .92rem; color: var(--ink-soft); line-height: 1.35; max-width: 20ch; }
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; min-height: 0; }
  .hero-copy { width: 100%; margin-inline: auto; max-width: 44rem; }
  .hero-copy h1,
  .hero-copy .lead,
  .home-hero .waitlist-form { max-width: 100%; }
  .hero-copy .lead { margin-inline: auto; }
  .actions,
  .hero-quick-cards { justify-content: center; margin-inline: auto; }
  .home-hero .hero-visual { margin-top: 1.4rem; }
  .home-hero .phone-main { width: min(258px, 58%); }
  .home-hero .phone-aside { width: min(196px, 44%); right: 3%; bottom: 11%; }
  .home-hero .float-card.float-card-horse {
    left: 0;
    bottom: 12%;
    transform: scale(.94);
    transform-origin: left bottom;
  }
}
@media (max-width: 760px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 1.8rem .6rem; }
  .trust-card:not(:last-child) { border-right: 0; }
  .trust-card:nth-child(odd) { border-right: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .hero-quick-cards { grid-template-columns: repeat(2, 1fr); gap: .6rem; max-width: 360px; }
  .home-hero .hero-visual { flex-direction: column; align-items: center; margin-top: .6rem; }
  .home-hero .hero-phones { height: auto; min-height: 0; }
  .home-hero .phone-main { width: min(248px, 70%); }
  .home-hero .phone-aside { width: min(170px, 48%); right: 0; bottom: 12%; }
  .home-hero .float-card.float-card-horse {
    position: static;
    transform: none;
    width: min(330px, 92%);
    margin: 1.3rem auto 0;
  }
  .trust-card span:last-child { font-size: .86rem; }
}

.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; }
.hero-pills span {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px; font-size: .85rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-ctas .btn { margin-top: 0; padding: 13px 26px; font-size: 1rem; }

/* Liste d'attente */
.waitlist-form { display: grid; gap: 8px; max-width: 520px; }
.waitlist-form label { font-size: .9rem; font-weight: 800; color: var(--ink); }
.waitlist-form > div {
  display: flex; gap: 8px; align-items: center;
  padding: 6px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow);
}
.waitlist-form input {
  min-width: 0; flex: 1; border: 0; outline: 0; background: transparent;
  padding: 0 12px; color: var(--ink); font: 700 .95rem var(--font);
}
.waitlist-form button {
  border: 0; border-radius: 12px; background: var(--blue-600); color: #fff;
  padding: 12px 18px; font: 800 .92rem var(--font); cursor: pointer;
}
.waitlist-form button:hover { background: var(--blue-700); }
.waitlist-form small { color: var(--ink-soft); font-size: .78rem; }
.waitlist-form.on-dark label, .waitlist-form.on-dark small { color: rgba(255,255,255,.86); }
.waitlist-form.on-dark > div { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); box-shadow: none; }
.waitlist-form.on-dark input { color: #fff; }
.waitlist-form.on-dark input::placeholder { color: rgba(255,255,255,.72); }
.waitlist-form.on-dark button { background: #fff; color: var(--blue-700); }
@media (max-width: 520px) {
  .waitlist-form > div { flex-direction: column; align-items: stretch; }
  .waitlist-form input { min-height: 44px; }
}

/* Captures app */
.hero-visual {
  position: relative; min-height: 540px;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 920px) { .hero-visual { min-height: 500px; margin-top: 10px; } }
.hero-phones { position: relative; width: min(520px, 100%); height: 540px; }
.app-phone { margin: 0; width: 230px; }
.app-phone-frame {
  aspect-ratio: 720 / 1558; padding: 6px;
  background: #081827; border-radius: 44px;
  box-shadow: 0 28px 58px -22px rgba(12, 27, 46, .55), 0 0 0 1px rgba(255,255,255,.18) inset;
  overflow: hidden;
}
.app-phone img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  border-radius: 38px; background: #eef7ff;
}
.phone-main, .phone-aside { position: absolute; }
.phone-main { left: 7%; top: 0; width: 255px; transform: rotate(-5deg); z-index: 2; }
.phone-aside { right: 6%; top: 74px; width: 224px; transform: rotate(5deg); z-index: 3; }
.float-card {
  position: absolute; z-index: 6; background: #fff; border-radius: 14px;
  box-shadow: var(--shadow-lift); padding: 10px 14px; font-size: .78rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px; border: 1px solid var(--line);
}
.float-card .sev { font-size: .7rem; }
.float-card.f1 { left: -1%; top: 56%; }
.float-card.f2 { right: 1%; top: 9%; }
@media (max-width: 620px) {
  .hero-phones { height: 460px; }
  .phone-main { left: 0; width: 210px; }
  .phone-aside { right: 0; top: 88px; width: 185px; }
}
@media (max-width: 420px) {
  .hero-phones { height: 420px; }
  .phone-main { width: 188px; }
  .phone-aside { width: 165px; }
  .hero-visual .float-card { display: none; }
}

.app-preview-band .head-row { align-items: flex-end; }
.app-screen-strip {
  display: flex; gap: 18px; overflow-x: auto;
  padding: 22px 4px 10px; scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.app-screen-strip .strip-phone {
  flex: 0 0 190px; width: 190px; scroll-snap-align: start;
}
.app-screen-strip figcaption {
  margin-top: 10px; text-align: center;
  color: var(--ink-soft); font-size: .84rem; font-weight: 800; line-height: 1.3;
}

/* Bandeau de checks */
.check-band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.check-band .wrap {
  display: flex; flex-wrap: wrap; gap: 10px 34px; justify-content: center;
  padding-top: 18px; padding-bottom: 18px;
}
.check-band span { font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.check-band span::before { content: '✓  '; color: var(--sky-500); font-weight: 800; }

/* Bande sombre pleine largeur */
.dark-band {
  background:
    radial-gradient(700px 420px at 85% 100%, rgba(56, 189, 248, .25), transparent 60%),
    linear-gradient(120deg, var(--blue-900), var(--blue-800));
  color: #fff; padding: 64px 0;
}
.dark-band .wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
@media (max-width: 820px) { .dark-band .wrap { grid-template-columns: 1fr; } }
.dark-band .eyebrow { color: var(--sky-400); }
.dark-band h2 { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.3rem); letter-spacing: -.03em; margin: 0 0 14px; }
.dark-band p { color: #c4d7ea; max-width: 54ch; margin: 0; font-size: 1.04rem; }
.dark-band .pets-img { text-align: center; }
.dark-band .pets-img img { max-width: 320px; filter: drop-shadow(0 18px 32px rgba(0,0,0,.4)); }

/* Comment ça marche */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: hiw; }
@media (max-width: 760px) { .steps-row { grid-template-columns: 1fr; } }
.steps-row .step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow); position: relative; counter-increment: hiw;
}
.steps-row .step::before {
  content: counter(hiw);
  position: absolute; top: -16px; left: 22px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue-600); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.steps-row h3 { margin: 8px 0 8px; font-size: 1.08rem; }
.steps-row p { margin: 0; color: var(--ink-soft); font-size: .93rem; }

/* Personas */
.personas .card .emo { font-size: 1.7rem; }

/* Animations d'entrée (hero) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.hero-split .eyebrow, .hero-split h1, .hero-split p.lede,
.hero-split .hero-pills, .hero-split .hero-ctas, .hero-split .waitlist-form {
  animation: fadeUp .6s ease both;
}
.hero-split h1 { animation-delay: .07s; }
.hero-split p.lede { animation-delay: .14s; }
.hero-split .hero-pills { animation-delay: .21s; }
.hero-split .hero-ctas { animation-delay: .28s; }
.hero-split .waitlist-form { animation-delay: .35s; }
.hero-visual .phone-main { animation: fadeUp .7s .15s ease both; }
.hero-visual .phone-aside { animation: fadeUp .7s .3s ease both; }
.hero-visual .float-card { animation: fadeUp .6s .55s ease both; }
@media (prefers-reduced-motion: reduce) {
  .hero-split *, .hero-visual * { animation: none !important; }
}

/* Analytics consent */
.analytics-consent {
  position: fixed;
  left: 18px; right: 18px; bottom: 18px; z-index: 80;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: 780px; margin: 0 auto; padding: 14px 16px;
  color: var(--ink); background: rgba(255,255,255,.96);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(12,27,46,.18);
  backdrop-filter: blur(10px);
}
.analytics-consent p { margin: 0; font-size: .9rem; color: var(--ink-soft); }
.analytics-consent p strong { display: block; color: var(--ink); margin-bottom: 2px; }
.analytics-consent p span { display: inline; }
.analytics-consent small { display: block; margin-top: 6px; color: var(--ink-soft); }
.analytics-consent .analytics-actions { display: flex; gap: 8px; flex: 0 0 auto; }
.analytics-consent button {
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px;
  background: #fff; color: var(--ink); font: 800 .86rem var(--font);
  cursor: pointer;
}
.analytics-consent button[data-analytics-choice="granted"] {
  border-color: var(--blue-600); background: var(--blue-600); color: #fff;
}
@media (max-width: 620px) {
  .analytics-consent { flex-direction: column; align-items: stretch; }
  .analytics-consent .analytics-actions { justify-content: flex-end; }
}

/* Disclaimer band */
.pledge {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border: 1.5px solid var(--line); border-left: 5px solid var(--sky-500);
  border-radius: var(--radius); padding: 26px 30px; box-shadow: var(--shadow);
}
.pledge .ico { font-size: 2rem; color: var(--blue-600); }
.pledge h2 { margin: 0 0 8px; font-size: 1.25rem; }
.pledge p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* ════════════════════════════════════════════════════════════════════
   Icônes SVG au trait (remplacent les emojis)
   ════════════════════════════════════════════════════════════════════ */
.i {
  width: 1em; height: 1em;
  display: inline-block;
  vertical-align: -0.135em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

/* Navigation : icône + libellé alignés */
.main-nav a { display: inline-flex; align-items: center; gap: 7px; }
.main-nav a .i { width: 18px; height: 18px; opacity: .85; }
.main-nav a.cta .i { opacity: 1; }
.nav-toggle .i { width: 24px; height: 24px; vertical-align: middle; }

/* Icône de titre de section (petit badge teinté) */
.h-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--sky-50); color: var(--blue-600);
  vertical-align: -0.32em; margin-right: 4px;
}
.h-ico .i { width: 19px; height: 19px; stroke-width: 2.1; }
article.fiche h2 .h-ico { margin-right: 10px; }

/* Vignette « icône de catégorie » (listes de fiches sans photo) */
.thumb-icon { color: var(--blue-600); }
.thumb-icon .i { width: 26px; height: 26px; }
.danger-card .thumb.thumb-icon { background: var(--sky-50); }
.fiche-head .emoji-big.thumb-icon,
.fiche-head .emoji-big:has(.i) { color: var(--blue-600); }
.fiche-head .emoji-big .i { width: 40px; height: 40px; }

/* Icônes dans les cartes (personas, hub, etc.) → badge dégradé */
.card .emo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 15px;
  background: var(--grad-primary); color: #fff;
  box-shadow: 0 10px 20px -10px rgba(37, 99, 235, .5);
  margin-bottom: 14px;
}
.card .emo .i { width: 26px; height: 26px; }

/* Mini-liste (sidebar « autres à risque ») */
.mini-list .emo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--sky-50); color: var(--blue-600); flex: none;
}
.mini-list .emo .i { width: 17px; height: 17px; }
.mini-list a { display: flex; align-items: center; gap: 10px; }
.mini-list .mini-name { min-width: 0; }

/* Icônes contextuelles */
.cross-species .ico { color: var(--blue-600); display: inline-flex; }
.cross-species .ico .i { width: 30px; height: 30px; }
.emergency .ico { display: inline-flex; }
.emergency .ico .i { width: 34px; height: 34px; }
.pledge .ico { display: inline-flex; }
.pledge .ico .i { width: 32px; height: 32px; }
.disclaimer-ico { color: var(--sev-high); display: inline-flex; vertical-align: -0.18em; }
.disclaimer-ico .i { width: 18px; height: 18px; }
.aside-card h3 { display: flex; align-items: center; gap: 8px; }
.aside-card h3 .i { width: 19px; height: 19px; }
.aside-card.urgence h3 .i { color: var(--sev-lethal); }

/* Steps home (icône en tête de titre) */
.steps-row .step h3 { display: flex; align-items: center; gap: 10px; }
.steps-row .step h3 .step-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  background: var(--grad-primary); color: #fff;
  box-shadow: 0 8px 18px -8px rgba(37, 99, 235, .5);
}
.steps-row .step h3 .step-ico .i { width: 21px; height: 21px; }
