/* Odds Uden — Clean editorial redesign */
/* Fonts loaded via <link> in HTML head for performance */

:root {
  --white: #ffffff;
  --bg: #fbfbfd;
  --bg-warm: #f5f5f7;
  --surface: #ffffff;
  --border: #d2d2d7;
  --border-light: #e8e8ed;
  --text: #1d1d1f;
  --text-secondary: #424245;
  --text-muted: #6e6e73;
  --accent: #1a6b4e;
  --accent-light: #e8f5ee;
  --accent-hover: #145a40;
  --highlight: #d4a843;
  --highlight-light: #fdf6e3;
  --red: #c0392b;
  --warning: #b8860b;
  --success: #1a6b4e;
  --info: #0071e3;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --max-w: 980px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); transition: color 0.15s; }
a:hover { color: var(--accent-hover); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
img { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute; left: -9999px; z-index: 999;
  padding: 0.75rem 1rem; background: var(--accent); color: #fff;
  font-weight: 600; border-radius: var(--radius-xs);
}
.skip-link:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 300;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0;
  width: min(100% - 2rem, 1200px); margin-inline: auto;
}
.logo {
  font-family: var(--font-body); font-weight: 700; font-size: 1.15rem;
  color: var(--text); text-decoration: none; letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 0.35rem;
  white-space: nowrap;
}
.logo svg { width: 28px; height: 28px; flex-shrink: 0; }
.logo span { color: var(--accent); }
.logo:hover { color: var(--text); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text); padding: 0.4rem 0.75rem; border-radius: var(--radius-xs);
  cursor: pointer; font-size: 0.85rem; font-weight: 500;
  font-family: var(--font-body);
}
.nav {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none; margin: 0; padding: 0;
}
.nav a {
  color: var(--text-secondary); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; padding: 0.4rem 0.65rem; border-radius: var(--radius-xs);
  transition: color 0.15s, background 0.15s;
}
.nav a:hover { color: var(--text); background: var(--bg-warm); }
.nav a[aria-current="page"] { color: var(--accent); font-weight: 600; }

.nav a.nav__cta {
  background: var(--accent); color: #fff;
  padding: 0.4rem 1rem; border-radius: 999px;
  font-weight: 600; font-size: 0.85rem;
  text-decoration: none;
}
.nav a.nav__cta:hover {
  background: var(--accent-hover); color: #fff;
}

.btn[disabled], .btn--disabled {
  opacity: 0.5; cursor: not-allowed; pointer-events: none;
}

@media (max-width: 768px) {
  .site-header__inner { padding: 0.6rem 1rem; }
  .nav-toggle {
    display: flex; align-items: center; gap: 0.35rem;
    background: var(--bg-warm); border: 1.5px solid var(--border);
    color: var(--text); padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm); font-weight: 600; font-size: 0.82rem;
  }
  .nav-toggle[aria-expanded="true"] {
    background: var(--accent); color: #fff; border-color: var(--accent);
  }
  .nav {
    display: none; position: absolute; top: calc(100% + 0.35rem);
    left: 0.75rem; right: 0.75rem;
    flex-direction: column; align-items: stretch;
    padding: 0.4rem 0;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }
  .nav.is-open { display: flex; }
  .nav li { list-style: none; }
  .nav li {
    border-bottom: 1px solid var(--border-light);
  }
  .nav li:last-child { border-bottom: none; }
  .nav a {
    display: block; padding: 0.85rem 1.25rem; font-size: 1rem; font-weight: 500;
    border-radius: 0; text-align: left;
    color: var(--text-secondary);
  }
  .nav a:hover { color: var(--accent); background: var(--bg-warm); }
  .nav a[aria-current="page"] {
    color: var(--accent); font-weight: 600;
  }
  .nav a.nav__cta {
    margin: 0.5rem 1rem 0.4rem; text-align: center;
    padding: 0.75rem 1rem; font-size: 0.95rem;
    border-radius: 980px; border-bottom: none;
    background: var(--accent); color: #fff !important;
  }
  .nav a.nav__cta:hover { background: var(--accent-hover); }
}

/* ===== HERO ===== */
.hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-light);
}
.hero__grid {
  display: grid; gap: 2rem 3rem; align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.2fr 0.8fr; }
}
.hero__text { min-width: 0; }
.hero__eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); background: var(--accent-light);
  padding: 0.3rem 0.75rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.035em;
  margin: 0 0 1.25rem; color: var(--text);
}
.hero__lead {
  font-size: 1.15rem; line-height: 1.6;
  color: var(--text-muted); margin: 0 0 2rem; max-width: 50ch;
}
.hero__lead strong { color: var(--text); font-weight: 600; }
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem;
}
.hero__art {
  display: flex; justify-content: center; align-items: center;
}
.hero__art img {
  width: 100%; max-width: 420px; border-radius: var(--radius);
}
.hero__stats {
  display: flex; gap: 2rem; list-style: none; margin: 0; padding: 1.25rem 0 0;
  border-top: 1px solid var(--border-light);
}
.hero__stats li {
  display: flex; flex-direction: column; gap: 0.1rem;
}
.hero__stats strong {
  font-size: 1.5rem; font-weight: 700; color: var(--accent); line-height: 1;
}
.hero__stats span {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .hero { padding: 2.5rem 0 2rem; }
  .hero__stats { gap: 1.5rem; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; padding: 0.75rem 1.6rem; border-radius: 980px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.88rem;
  text-decoration: none; border: none; cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.3s ease, transform 0.15s, box-shadow 0.3s ease, opacity 0.3s;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--accent); color: #fff;
}
.btn--primary:hover {
  background: var(--accent-hover); color: #fff;
  box-shadow: 0 2px 12px rgba(26, 107, 78, 0.25);
}
.btn--ghost {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--ghost:hover {
  background: var(--accent); color: #fff;
}

/* ===== SECTIONS ===== */
section { padding: 4rem 0; }

.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.025em; margin: 0 0 0.5rem; color: var(--text);
  line-height: 1.15;
}
.section-intro {
  color: var(--text-muted); margin: 0 0 2rem; max-width: 60ch;
  font-size: 1.05rem; line-height: 1.5;
}

/* ===== BOOKMAKERS ===== */
.section--bookmakers {
  padding: 3.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.section-source {
  font-size: 0.85rem; color: var(--text-muted); margin: 0 0 1.5rem;
}
.section-source a { font-weight: 600; }

.bookmaker-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.bookmaker-card {
  position: relative; display: flex; flex-direction: column; gap: 0.6rem;
  padding: 1.35rem; background: var(--white);
  border: none; border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bookmaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(26, 107, 78, 0.15);
}

.bookmaker-card__rank {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.75rem;
}
.bookmaker-card__rank--1 { background: var(--highlight); color: #1a1a1a; }
.bookmaker-card__rank--2 { background: #94a3b8; color: #1a1a1a; }
.bookmaker-card__rank--3 { background: #b8855a; color: #fff; }

.bookmaker-card__logo {
  display: flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 0.75rem;
  background: #1a1f2e; border-radius: var(--radius-sm);
}
.bookmaker-card__logo img {
  max-height: 42px; max-width: min(180px, 100%);
  width: auto; height: auto; object-fit: contain;
}
.bookmaker-card__logo--light {
  background: var(--bg-warm);
}

.bookmaker-card h3 {
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  margin: 0; color: var(--text);
}
.bookmaker-card__bonus {
  margin: 0; font-size: 0.9rem; font-weight: 600;
  color: var(--accent); line-height: 1.35;
}
.bookmaker-card__meta {
  margin: 0; font-size: 0.8rem; color: var(--text-muted); line-height: 1.5;
}
.bookmaker-card__actions {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; padding-top: 0.5rem;
}
.bookmaker-card__actions a {
  display: inline-flex; align-items: center; padding: 0.45rem 0.95rem;
  border-radius: 980px; font-size: 0.78rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.bookmaker-card__actions .card-btn-review {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.bookmaker-card__actions .card-btn-review:hover {
  background: var(--accent); color: #fff;
}
.bookmaker-card__actions .card-btn-visit {
  background: var(--accent); color: #fff;
  border: 1.5px solid var(--accent);
  font-weight: 700;
}
.bookmaker-card__actions .card-btn-visit:hover {
  background: var(--accent-hover); border-color: var(--accent-hover);
}

/* ===== PILLARS ===== */
.pillars {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 1.5rem;
}
.pillar__icon { display: block; margin-bottom: 0.75rem; }
.pillar {
  padding: 1.5rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pillar:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.pillar h2 {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 600;
  margin: 0 0 0.4rem; color: var(--text);
}
.pillar h2 a { color: var(--text); text-decoration: none; }
.pillar h2 a:hover { color: var(--accent); }
.pillar p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }

/* ===== GENERIC CARDS ===== */
.grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.card {
  background: var(--white); border: none;
  border-radius: var(--radius); padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.card h3 {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 600;
  margin: 0 0 0.4rem; color: var(--text);
}
.card p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }
.card__link {
  display: inline-block; margin-top: 0.75rem; font-weight: 600; font-size: 0.85rem;
}

/* ===== TABLE OF CONTENTS ===== */
.toc {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.toc summary {
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; color: var(--text); list-style: none;
  display: flex; align-items: center; gap: 0.5rem;
}
.toc summary::before {
  content: ""; display: inline-block;
  width: 0; height: 0;
  border-left: 5px solid var(--accent);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: transform 0.15s;
}
.toc[open] summary::before { transform: rotate(90deg); }
.toc ol {
  margin: 0.75rem 0 0; padding-left: 1.25rem;
  font-size: 0.88rem; line-height: 1.8;
}
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* ===== PROSE ===== */
.prose { max-width: min(100%, 68ch); width: 100%; margin-inline: auto; }
.prose--wide { max-width: min(100%, 80ch); width: 100%; margin-inline: auto; }

.article-block .prose { max-width: 100%; margin-inline: 0; }

.section--long .section-title { max-width: none; }
.section--long .section-intro { max-width: 76ch; }

.content-figure {
  margin: 0 auto 1.5rem; width: 100%; max-width: min(100%, 80ch);
}
.content-figure img {
  width: 100%; height: auto; border-radius: var(--radius);
  border: 1px solid var(--border);
}
.article-lead { padding-bottom: 1rem; }
.article-lead .content-figure, .article-block .content-figure { max-width: 100%; }
.content-figure--lead img { max-height: 240px; object-fit: contain; }

.prose > * + * { margin-top: 1em; }
.prose h2 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  margin: 2.25rem 0 0.6rem; line-height: 1.25; color: var(--text);
}
.prose h3 {
  font-family: var(--font-body); font-size: 1.1rem; font-weight: 600;
  margin: 1.75rem 0 0.5rem; color: var(--text);
}
.prose h4 {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 600;
  margin: 1.5rem 0 0.4rem; color: var(--text);
}
.prose a {
  text-decoration: underline;
  text-decoration-color: rgba(26, 107, 78, 0.3);
  text-underline-offset: 2px;
}
.prose a:hover { text-decoration-color: var(--accent); }

.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: 0.35em; }
.prose strong { color: var(--text); }

.note {
  padding: 1.1rem 1.35rem; border-radius: var(--radius);
  border: none; border-left: 3px solid var(--highlight);
  background: var(--bg-warm);
  color: var(--text-secondary); font-size: 0.88rem;
  line-height: 1.6;
}
.note strong { color: var(--text); }
.note--warning {
  border-left-color: var(--warning);
  background: #fef9ee;
}
.note--info {
  border-left-color: var(--info);
  background: #f0f5ff;
}

/* ===== TABLE ===== */
.table-wrap {
  overflow-x: auto; margin: 2rem 0; border-radius: var(--radius);
  border: 1px solid var(--border-light); background: var(--white);
  box-shadow: var(--shadow-sm);
}
table.data { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
table.data th, table.data td {
  padding: 0.85rem 1.1rem; text-align: left;
  border-bottom: 1px solid var(--border-light);
}
table.data th {
  background: var(--bg-warm);
  font-weight: 600; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted);
}
table.data tr:last-child td { border-bottom: none; }
table.data tbody tr:hover td { background: rgba(26, 107, 78, 0.03); }
table.data td strong { color: var(--text); }

/* Prose tables (inline in articles) */
.prose table {
  width: 100%; border-collapse: collapse; font-size: 0.88rem;
  margin: 1.5rem 0; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--border-light); background: var(--white);
  box-shadow: var(--shadow-sm);
}
.prose table th, .prose table td {
  padding: 0.75rem 1rem; text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.prose table th {
  background: var(--bg-warm); font-weight: 600;
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-muted);
}
.prose table tr:last-child td { border-bottom: none; }
.prose table tbody tr:hover td { background: rgba(26, 107, 78, 0.03); }

/* Prose lists — Apple style */
.prose ul, .prose ol {
  padding-left: 1.5rem; margin: 1.25rem 0;
}
.prose ul { list-style: none; padding-left: 0; }
.prose ul li {
  position: relative; padding-left: 1.25rem; margin-top: 0.5em;
}
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.prose ol li { margin-top: 0.5em; }
.prose ol li::marker { color: var(--accent); font-weight: 600; }

/* ===== BADGES ===== */
.badge {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem; border-radius: var(--radius-xs);
  background: var(--accent-light); color: var(--accent);
}
.badge--soon { background: var(--highlight-light); color: #8b6914; }

/* ===== PAGE HEAD (article pages) ===== */
.page-head { padding: 2.5rem 0 1rem; }
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  margin: 0 0 0.6rem; color: var(--text);
}
.page-head .meta { font-size: 0.88rem; color: var(--text-muted); }

.article-block { padding-bottom: 3rem; }

/* ===== REVIEW CARDS ===== */
.review-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card__placeholder {
  height: 48px; width: 48px; border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.4rem; color: var(--accent);
}
.review-card h3 {
  font-size: 1.05rem; font-weight: 600; margin: 0; color: var(--text);
}
.review-card p {
  margin: 0; font-size: 0.88rem; color: var(--text-secondary); flex: 1;
}

/* ===== REVIEW PAGE ===== */
.review-hero {
  display: grid; gap: 1.5rem; padding: 2rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .review-hero { grid-template-columns: auto 1fr; }
}
.review-hero__logo {
  display: flex; align-items: center; justify-content: center;
  width: 120px; height: 80px; padding: 0.75rem;
  background: #1a1f2e; border-radius: var(--radius-sm);
}
.review-hero__logo img {
  max-height: 56px; max-width: 100px; object-fit: contain;
}
.review-hero__info { min-width: 0; }
.review-hero__info h1 {
  font-family: var(--font-display); font-size: 1.6rem;
  margin: 0 0 0.25rem; color: var(--text);
}
.review-hero__bonus {
  font-size: 1.05rem; font-weight: 600; color: var(--accent);
  margin: 0 0 0.75rem;
}

.review-quick-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem; margin: 0; padding: 0; list-style: none;
}
.review-quick-facts li {
  padding: 0.5rem 0.75rem; background: var(--bg-warm);
  border-radius: var(--radius-xs); font-size: 0.8rem;
}
.review-quick-facts li strong {
  display: block; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--text-muted); margin-bottom: 0.15rem;
}

.review-pros-cons {
  display: grid; gap: 1rem; margin: 1.5rem 0;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.review-pros, .review-cons {
  padding: 1.25rem; border-radius: var(--radius-sm);
}
.review-pros {
  background: var(--accent-light); border: 1px solid rgba(26, 107, 78, 0.15);
}
.review-cons {
  background: #fef2f2; border: 1px solid rgba(192, 57, 43, 0.15);
}
.review-pros h3, .review-cons h3 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; margin: 0 0 0.5rem;
}
.review-pros h3 { color: var(--accent); }
.review-cons h3 { color: var(--red); }
.review-pros ul, .review-cons ul {
  margin: 0; padding-left: 1.1rem; font-size: 0.9rem;
}
.review-pros li, .review-cons li { margin-top: 0.3rem; }

.review-cta-box {
  text-align: center; padding: 1.5rem;
  background: var(--accent-light); border: 1px solid rgba(26, 107, 78, 0.15);
  border-radius: var(--radius); margin: 2rem 0;
}
.review-cta-box p {
  margin: 0 0 0.75rem; font-size: 0.9rem; color: var(--text-secondary);
}

.review-score {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  padding: 0.3rem 0.75rem; border-radius: 999px;
  background: var(--accent); color: #fff;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--accent-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust-bar a { font-weight: 600; }

/* ===== FOOTER ===== */
.site-footer {
  margin-top: 3rem; padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem; color: var(--text-muted);
  background: var(--white);
}
.site-footer__grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.site-footer h3 {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); margin: 0 0 0.6rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li + li { margin-top: 0.3rem; }
.site-footer a { color: var(--text-secondary); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }

.footer-legal {
  margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.75rem; line-height: 1.6; color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
