/* ============================================================
   TopBar
   ============================================================ */
.top-bar {
  background: linear-gradient(90deg, var(--brand-deep) 0%, var(--brand-mid) 100%);
  color: #fff;
  font-size: 13px;
  padding: 9px 24px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.top-bar .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .7);
  animation: pulse 2s infinite;
  vertical-align: middle;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: 1320px; margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--ink-1);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.brand:hover { color: var(--ink-1); }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-bright));
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 17px;
  font-family: var(--font-display);
  box-shadow: var(--shadow-sm);
}
.brand-name { white-space: nowrap; }
.brand-name .tld { color: var(--ink-3); font-weight: 500; }

.nav-links {
  display: flex; gap: 4px; align-items: center;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  display: block; padding: 8px 12px;
  border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--ink-2);
}
.nav-links a:hover { background: var(--brand-tint); color: var(--brand-deep); }
.nav-links a.active { color: var(--brand-deep); background: var(--brand-soft); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-deep); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  border: none; text-decoration: none;
  transition: all .15s ease;
}
.nav-cta:hover { background: var(--brand-mid); color: #fff; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: var(--brand-tint); border: none;
  width: 38px; height: 38px; border-radius: 10px;
  align-items: center; justify-content: center;
  color: var(--brand-deep);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  border: none; text-decoration: none;
  transition: all .15s ease;
  white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--brand-deep); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--brand-mid); color: #fff; transform: translateY(-1px); box-shadow: 0 12px 32px rgba(61,123,255,.4); }
.btn-success { background: var(--success); color: #fff; box-shadow: 0 8px 24px rgba(14, 164, 122, .3); }
.btn-success:hover { background: #0c8e69; color: #fff; transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--brand-deep); border: 1.5px solid var(--brand-deep); }
.btn-secondary:hover { background: var(--brand-soft); color: var(--brand-deep); }
.btn-ghost { background: transparent; color: var(--ink-2); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--brand-bright); color: var(--brand-bright); }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }

/* ============================================================
   Badges
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.01em;
  white-space: nowrap;
}
.badge-success { background: var(--success-soft); color: var(--success); }
.badge-brand { background: var(--brand-soft); color: var(--brand-deep); }
.badge-warn { background: var(--warn-soft); color: var(--warn); }
.badge-line { background: #fff; color: var(--ink-2); border: 1px solid var(--line); }
.badge-rec {
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: #422a06; box-shadow: 0 4px 12px rgba(245,158,11,.3);
}

/* Stars */
.stars {
  display: inline-flex; gap: 1px; color: #F59E0B; font-size: 14px;
}
.stars .star-empty { color: #D6DDE9; }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 24px;
  transition: all .2s ease;
}
.card-hover:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand-bright); }

/* Provider card */
.provider-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: grid; grid-template-columns: 1fr;
  gap: 20px; position: relative;
  transition: all .2s ease;
}
.provider-card.featured {
  border-color: var(--brand-bright);
  box-shadow: 0 0 0 4px var(--brand-soft), var(--shadow-md);
}
.provider-card .rank {
  position: absolute; top: -12px; left: 24px;
  background: var(--brand-deep); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
  letter-spacing: 0.04em;
}
.provider-card.featured .rank {
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: #422a06;
}
.provider-card-head { display: flex; gap: 16px; align-items: center; }
.provider-card-meta { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.provider-card-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.provider-card-tagline { font-size: 13px; color: var(--ink-3); }
.provider-card-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.provider-card-stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); font-weight: 600; }
.provider-card-stat-value { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--ink-1); margin-top: 2px; }
.provider-card-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.provider-card-cta .btn { flex: 1; }

/* ============================================================
   Trust strip / stats
   ============================================================ */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 28px;
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.stat-strip .stat-label {
  font-size: 12px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 600; margin-bottom: 6px;
}
.stat-strip .stat-value {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600; color: var(--ink-1);
  letter-spacing: -0.02em;
}
.stat-strip .stat-sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
@media (max-width: 760px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Sticky CTA
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink-1); color: #fff;
  padding: 10px 10px 10px 20px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 16px;
  z-index: 40;
  box-shadow: 0 14px 40px rgba(10, 22, 40, .25);
  font-size: 14px; font-weight: 500;
  max-width: calc(100vw - 32px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.sticky-cta.is-visible { opacity: 1; pointer-events: auto; }
.sticky-cta .live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s infinite; flex-shrink: 0;
}
.sticky-cta .label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-cta .btn-sticky {
  background: var(--success); color: #fff;
  padding: 9px 16px; border-radius: 999px;
  font-weight: 600; text-decoration: none; font-size: 13px; white-space: nowrap;
}
.sticky-cta .btn-sticky:hover { background: #0c8e69; color: #fff; }
.sticky-cta .close-btn { background: transparent; border: none; color: rgba(255,255,255,.5); padding: 4px 8px; cursor: pointer; font-size: 18px; line-height: 1; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink-1); color: #B8C2D4;
  padding: 64px 0 32px;
  margin-top: 80px;
}
.site-footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.site-footer a { color: #B8C2D4; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer .footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer .legal {
  border-top: 1px solid #1C2A40;
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: #6B7891;
}
.site-footer .brand-mark { background: linear-gradient(135deg, #1E54B7, #3D7BFF); }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand:hover { color: #fff; }
.site-footer .brand .tld { color: #6B7891; }
.site-footer .disclosure {
  background: #1C2A40; color: #B8C2D4;
  padding: 16px 20px; border-radius: var(--r-md);
  font-size: 12px; margin-bottom: 32px; line-height: 1.6;
}
@media (max-width: 760px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================================
   Affiliate disclosure
   ============================================================ */
.affiliate-note {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 16px;
  background: var(--warn-soft);
  border: 1px solid #F5DEB3;
  border-radius: var(--r-sm);
  font-size: 12px; color: #6B4818; line-height: 1.5;
}

/* ============================================================
   Forms
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font-family: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 15px; background: #fff; color: var(--ink-1);
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-bright);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  cursor: pointer; transition: all .15s ease; user-select: none;
}
.chip:hover { border-color: var(--brand-bright); }
.chip.active { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); }

/* Toggle */
.toggle {
  position: relative;
  width: 42px; height: 26px;
  background: var(--line);
  border-radius: 999px;
  border: none; cursor: pointer;
  transition: background .15s;
}
.toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #fff; border-radius: 50%;
  transition: transform .15s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle[aria-checked="true"] { background: var(--brand-deep); }
.toggle[aria-checked="true"]::after { transform: translateX(16px); }

/* Range */
.range { width: 100%; appearance: none; height: 6px; background: var(--line); border-radius: 999px; }
.range::-webkit-slider-thumb { appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--brand-deep); cursor: pointer; }
.range::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--brand-deep); cursor: pointer; border: none; }

/* ============================================================
   Tables
   ============================================================ */
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  font-size: 14px;
}
.compare-table th, .compare-table td {
  text-align: left; padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
.compare-table th {
  background: var(--bg-tint);
  font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-3);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg-tint); }
.compare-table .check { color: var(--success); font-weight: 700; }
.compare-table .cross { color: var(--ink-4); }

/* Compare-Table mobile fallback */
@media (max-width: 760px) {
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 10px; }
}

/* ============================================================
   Provider Logo
   ============================================================ */
.provider-logo {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px;
  color: #fff; flex-shrink: 0;
  letter-spacing: -0.02em;
}
.provider-logo.sm { width: 40px; height: 40px; font-size: 15px; border-radius: 9px; }
.provider-logo.lg { width: 80px; height: 80px; font-size: 30px; border-radius: 16px; }

.pl-revolut { background: linear-gradient(135deg, #1A1A1A, #3A3A3A); }
.pl-bbva    { background: linear-gradient(135deg, #004481, #1973B8); }
.pl-n26     { background: linear-gradient(135deg, #1F1F1F, #00A790); }
.pl-bunq    { background: linear-gradient(135deg, #2A2D43, #44476A); }
.pl-vivid   { background: linear-gradient(135deg, #E25241, #F39E72); }
.pl-tomorrow{ background: linear-gradient(135deg, #1B4D3E, #2D7A5F); }
.pl-c24     { background: linear-gradient(135deg, #003F7F, #0066CC); }
.pl-wise    { background: linear-gradient(135deg, #163300, #9FE870); color: #163300; }
.pl-monese  { background: linear-gradient(135deg, #5B2C8E, #8B5CC4); }
.pl-openbank{ background: linear-gradient(135deg, #DC0028, #FF4060); }
.pl-noris   { background: linear-gradient(135deg, #C8102E, #E63950); }

/* ============================================================
   Placeholder image
   ============================================================ */
.placeholder-img {
  background-color: var(--brand-tint);
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(11, 58, 130, 0.05) 12px, rgba(11, 58, 130, 0.05) 13px);
  border: 1px dashed rgba(11, 58, 130, 0.2);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  color: var(--ink-3); font-family: var(--font-mono); font-size: 12px;
  text-align: center; padding: 16px; min-height: 120px;
}

/* ============================================================
   Article body / Prose
   ============================================================ */
.prose { max-width: 720px; }
.prose h2 { margin-top: 48px; margin-bottom: 16px; }
.prose h3 { margin-top: 32px; margin-bottom: 12px; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.prose ul, .prose ol { font-size: 17px; line-height: 1.7; color: var(--ink-2); padding-left: 22px; }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 3px solid var(--brand-bright);
  padding: 4px 0 4px 20px;
  margin: 24px 0;
  color: var(--ink-2); font-style: italic;
}
.prose img { border-radius: var(--r-md); margin: 24px 0; }
.prose a { color: var(--brand-bright); text-decoration: underline; text-underline-offset: 3px; }

/* TOC */
.toc {
  background: var(--brand-tint);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 24px; margin-bottom: 32px;
}
.toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); margin-bottom: 10px; }
.toc ol { margin: 0; padding-left: 20px; font-size: 14px; }
.toc ol li { margin-bottom: 4px; }
.toc a { color: var(--ink-2); }
.toc a:hover { color: var(--brand-deep); }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600; color: var(--ink-1);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; width: 28px; height: 28px;
  background: var(--brand-tint); border-radius: 999px;
  display: grid; place-items: center;
  color: var(--brand-deep); font-size: 18px; font-weight: 600;
  transition: transform .2s; flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; background: var(--brand-deep); color: #fff; }
.faq-item p { margin: 12px 0 0; color: var(--ink-2); font-size: 16px; line-height: 1.65; }

/* Step list */
.step-list { display: grid; gap: 24px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: flex-start; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-deep); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
}
.step h4 { margin-bottom: 6px; }
.step p { margin: 0; color: var(--ink-2); }

/* Pros/Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }
.pros-cons > div { padding: 20px; border-radius: var(--r-md); }
.pros-cons .pros { background: var(--success-soft); }
.pros-cons .cons { background: var(--warn-soft); }
.pros-cons h5 { font-size: 14px; margin-bottom: 12px; color: var(--ink-1); }
.pros-cons ul { list-style: none; padding: 0; margin: 0; }
.pros-cons ul li { padding: 4px 0 4px 24px; position: relative; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.pros-cons .pros li::before { content: '✓'; color: var(--success); font-weight: 700; position: absolute; left: 0; }
.pros-cons .cons li::before { content: '!'; color: var(--warn); font-weight: 700; position: absolute; left: 6px; }
@media (max-width: 700px) { .pros-cons { grid-template-columns: 1fr; } }

/* Inline CTA box */
.inline-cta {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-mid));
  color: #fff; padding: 32px 36px;
  border-radius: var(--r-lg);
  margin: 32px 0;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; justify-content: space-between;
}
.inline-cta h3 { color: #fff; margin-bottom: 6px; font-size: 22px; }
.inline-cta p { color: rgba(255,255,255,.85); font-size: 15px; margin: 0; }
.inline-cta-content { flex: 1 1 280px; }

/* Author box */
.author-box {
  display: flex; gap: 16px; align-items: center;
  padding: 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  margin: 24px 0;
}
.author-box img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.author-box .author-name { font-weight: 600; }
.author-box .author-role { font-size: 13px; color: var(--ink-3); margin-top: 2px; }
.author-box .author-bio { font-size: 14px; color: var(--ink-2); margin-top: 4px; }
.author-box .verified { color: var(--success); font-size: 12px; font-weight: 600; }

/* Article card */
.article-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .2s ease;
}
.article-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand-bright); }
.article-card .thumb { aspect-ratio: 16 / 10; background: var(--brand-tint); object-fit: cover; }
.article-card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.article-card-cat { font-size: 11px; color: var(--brand-bright); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.article-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink-1); line-height: 1.3; }
.article-card-excerpt { font-size: 14px; color: var(--ink-2); flex: 1; }
.article-card-meta { font-size: 12px; color: var(--ink-3); }

/* Filter bar */
.filter-bar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.filter-bar .filter-group { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.filter-bar .filter-label { font-size: 12px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; }
.filter-bar select { padding: 8px 14px; border-radius: var(--r-sm); border: 1.5px solid var(--line); font-size: 13px; }

/* Live counter */
.live-counter { display: inline-flex; align-items: baseline; gap: 6px; font-family: var(--font-display); font-weight: 600; color: var(--brand-deep); }
.live-counter .num { font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }

/* Testimonial card */
.testimonial {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 24px;
}
.testimonial-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-loc { font-size: 12px; color: var(--ink-3); }
.testimonial-text { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.testimonial-verified { display: inline-flex; align-items: center; gap: 4px; color: var(--success); font-size: 12px; font-weight: 600; margin-top: 12px; }

/* Exit-intent popup */
.exit-intent {
  position: fixed; inset: 0;
  background: rgba(10, 22, 40, .55);
  display: none; align-items: center; justify-content: center;
  z-index: 90;
  padding: 24px;
}
.exit-intent.is-open { display: flex; }
.exit-intent-card {
  background: #fff; border-radius: var(--r-xl);
  max-width: 520px; width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.exit-intent-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--brand-tint); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 16px; color: var(--ink-3);
}

/* Reading progress bar */
.reading-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  z-index: 60;
  pointer-events: none;
}
.reading-progress > div { height: 100%; background: var(--brand-bright); width: 0%; transition: width .1s linear; }

/* Breadcrumbs */
.breadcrumbs {
  font-size: 13px; color: var(--ink-3);
  margin-bottom: 16px;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.breadcrumbs a { color: var(--ink-3); }
.breadcrumbs a:hover { color: var(--brand-deep); }

/* Tabs */
.tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--line); margin-bottom: 24px; flex-wrap: wrap; }
.tab {
  padding: 12px 16px;
  border: none; background: transparent;
  color: var(--ink-2); font-weight: 500; font-size: 14px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
}
.tab:hover { color: var(--brand-deep); }
.tab.active { color: var(--brand-deep); border-bottom-color: var(--brand-deep); font-weight: 600; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Quick fact grid */
.quick-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0; }
.quick-fact { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; }
.quick-fact .qf-value { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--brand-deep); }
.quick-fact .qf-label { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
@media (max-width: 760px) { .quick-facts { grid-template-columns: repeat(2, 1fr); } }

/* Categories chips */
.cat-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

/* Letter-Nav (Glossar A-Z) */
.letter-nav {
  position: sticky; top: 70px; z-index: 30;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex; gap: 4px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.letter-nav a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink-3);
  text-decoration: none;
}
.letter-nav a:hover { background: var(--brand-soft); color: var(--brand-deep); }
.letter-nav a.has-content { color: var(--brand-deep); }
.letter-nav a.disabled { color: var(--ink-4); cursor: default; }

/* Glossar Group */
.glossar-group { margin-bottom: 48px; }
.glossar-group h2 { font-size: 32px; color: var(--brand-deep); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--brand-soft); }
.glossar-term { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.glossar-term h3 { font-size: 18px; margin-bottom: 6px; }
.glossar-term p { font-size: 15px; color: var(--ink-2); margin-bottom: 8px; }
.glossar-term-related { font-size: 12px; color: var(--ink-3); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Sticky Affiliate-Sidebar (Anbieter-Detail) */
.anbieter-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: flex-start; }
.anbieter-sidebar { position: sticky; top: 100px; }
@media (max-width: 1000px) {
  .anbieter-layout { grid-template-columns: 1fr; }
  .anbieter-sidebar { position: static; }
}
.anbieter-affiliate-card {
  background: #fff; border: 2px solid var(--brand-bright);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

/* Comments off */
.no-comments { display: none; }

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.pagination a, .pagination span {
  padding: 8px 14px; border-radius: 8px;
  background: #fff; border: 1px solid var(--line);
  color: var(--ink-2); font-size: 14px; font-weight: 500;
  text-decoration: none;
}
.pagination .current { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); }
.pagination a:hover { border-color: var(--brand-bright); }

/* Print */
@media print { .top-bar, .sticky-cta, .exit-intent, .reading-progress, .nav-cta { display: none !important; } }
