/* ==========================================================================
   SubYourCar - Components
   Depends on tokens.css
   ========================================================================== */

/* ==========================================================================
   Header - sticky, gains a 1px border on scroll
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--border); }
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  height: 72px;
}
.brand-logo { height: 22px; width: auto; flex: none; display: block; }

.nav-main {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  margin-left: var(--s-4);
}
.nav-main a {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--dur-fast) var(--ease);
}
.nav-main a:hover, .nav-main a[aria-current="page"] { color: var(--ink); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: var(--s-3); }

.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--ink); stroke-width: 2; fill: none; }

@media (max-width: 900px) {
  .nav-main { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-actions { margin-left: 0; }
  .header-actions .btn-desktop { display: none; }
}

/* Mobile nav drawer */
.nav-drawer {
  position: fixed; inset: 72px 0 0 0;
  background: var(--white);
  padding: var(--s-6) var(--gutter);
  transform: translateY(-8px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 99;
  overflow-y: auto;
}
.nav-drawer.open { opacity: 1; transform: none; pointer-events: auto; }
.nav-drawer a {
  display: block;
  padding: var(--s-4) 0;
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 600;
  letter-spacing: var(--tracking-display);
  border-bottom: 1px solid var(--border);
}
.nav-drawer .btn { margin-top: var(--s-6); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-block: var(--s-10) var(--s-9); overflow: hidden; }
@media (max-width: 768px) { .hero { padding-block: var(--s-8) var(--s-7); } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-9);
  align-items: center;
}
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); } }

.hero h1 { margin-bottom: var(--s-5); }
.hero .lede { margin-bottom: var(--s-6); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-6); }

/* USP triplet: what's included / what you're not locked into / how it reaches you */
.usp-list { display: flex; flex-direction: column; gap: var(--s-3); }
.usp-list li {
  display: flex; align-items: flex-start; gap: var(--s-3);
  font-size: var(--t-sm); color: var(--text-2);
}
.usp-list .tick {
  flex: none; width: 18px; height: 18px; margin-top: 2px;
  border-radius: 50%; background: var(--volt);
  display: grid; place-items: center;
}
.usp-list .tick svg { width: 10px; height: 10px; stroke: var(--ink); stroke-width: 3; fill: none; }

.hero-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Stats band - quantified proof
   ========================================================================== */
.stats-band { border-block: 1px solid var(--border); padding-block: var(--s-7); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); }
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6) var(--s-4); } }

.stat .num {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 600;
  letter-spacing: var(--tracking-display);
  line-height: 1.1;
  display: block;
}
.stat .label { font-size: var(--t-xs); color: var(--text-2); margin-top: 6px; display: block; }

/* ==========================================================================
   FLEET
   ========================================================================== */

/* "Why no prices?" strip - the single most important string on the site */
.no-price-strip {
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-6);
  display: flex;
  gap: var(--s-5);
  align-items: flex-start;
  margin-bottom: var(--s-7);
}
.no-price-strip .icon {
  flex: none; width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--volt);
  display: grid; place-items: center;
}
.no-price-strip .icon svg { width: 20px; height: 20px; stroke: var(--ink); stroke-width: 2; fill: none; }
.no-price-strip b { display: block; margin-bottom: 4px; font-size: var(--t-sm); }
.no-price-strip p { font-size: var(--t-sm); color: var(--text-2); margin: 0; }
@media (max-width: 640px) { .no-price-strip { flex-direction: column; gap: var(--s-3); } }

/* --- Filters --- */
.filter-bar {
  display: flex; align-items: center; gap: var(--s-3);
  flex-wrap: wrap; margin-bottom: var(--s-5);
}
.filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--text-2);
  background: var(--white);
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }
.filter-btn .count { opacity: 0.6; font-variant-numeric: tabular-nums; }

.filter-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); flex-wrap: wrap;
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--border);
}
.result-count { font-size: var(--t-sm); color: var(--text-2); }
.result-count b { color: var(--ink); font-variant-numeric: tabular-nums; }

.sort-select {
  padding: 9px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  background: var(--white);
}

/* --- Grid --- */
.car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
@media (max-width: 1000px) { .car-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .car-grid { grid-template-columns: 1fr; } }

/* --- Car card ---
   render -> availability chip -> model -> spec line -> divider ->
   QUOTE SLOT (exact position + weight the price would have) -> WhatsApp CTA.
   A card looks broken not because the price is missing, but because there
   is a HOLE where it used to be. So we fill the hole. */
.car-card { display: flex; flex-direction: column; }

.car-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  overflow: hidden;
}
.car-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur) var(--ease);
}
.car-card:hover .car-media img { transform: scale(1.03); }

.car-media .placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: var(--text-3);
  font-size: var(--t-xs);
  text-align: center;
  padding: var(--s-4);
  background: repeating-linear-gradient(45deg, var(--surface), var(--surface) 12px, #EDEDED 12px, #EDEDED 24px);
}

.car-media .chip { position: absolute; top: 12px; left: 12px; }
.car-media .brand-tag {
  position: absolute; top: 12px; right: 12px;
  font-size: var(--t-xs); font-weight: 600;
  color: var(--text-2);
  background: rgba(255,255,255,0.92);
  padding: 4px 9px;
  border-radius: var(--r-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.car-body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }

.car-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: var(--tracking-display);
  line-height: 1.2;
  margin-bottom: 6px;
}
.car-trim { font-size: var(--t-sm); color: var(--text-2); margin-bottom: var(--s-4); }

.car-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--s-4); }
.car-specs span {
  font-size: var(--t-xs);
  color: var(--text-3);
  background: var(--page);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: var(--r-sm);
}

.car-card .divider { margin-block: auto var(--s-4); }

/* THE QUOTE SLOT */
.quote-slot { margin-bottom: var(--s-4); }
.quote-slot .kicker {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  display: block;
  margin-bottom: 2px;
}
.quote-slot .value {
  font-family: var(--font-display);
  font-size: var(--t-lg);          /* 24px - the price's exact weight */
  font-weight: 600;
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  display: flex; align-items: center; gap: 6px;
  line-height: 1.2;
}
.quote-slot .value .arrow { transition: transform var(--dur) var(--ease); }
.car-card:hover .quote-slot .value .arrow { transform: translateX(3px); }
.quote-slot .incl { font-size: var(--t-xs); color: var(--text-3); margin-top: 4px; display: block; }

/* Response promise - the price gave certainty; this gives it back */
.reply-promise { font-size: var(--t-xs); color: var(--text-3); text-align: center; margin-top: var(--s-2); }

/* ==========================================================================
   Bento - "what's included"
   ========================================================================== */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: var(--s-4); }
.bento .tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.bento .tile:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.bento .tile.hero-tile {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.bento .tile.hero-tile .t-desc { color: rgba(255,255,255,0.62); }
.bento .tile.volt-tile { background: var(--volt); border-color: var(--volt); }

.tile .t-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--page);
  display: grid; place-items: center;
}
.bento .hero-tile .t-icon { background: rgba(255,255,255,0.10); }
.bento .volt-tile .t-icon { background: rgba(11,12,16,0.10); }
.tile .t-icon svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.75; fill: none; }

.tile .t-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: var(--tracking-display);
  font-size: var(--t-base);
  margin-bottom: 4px;
}
.bento .hero-tile .t-title { font-size: var(--t-xl); }
.tile .t-desc { font-size: var(--t-sm); color: var(--text-2); }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .bento .tile.hero-tile { grid-column: span 2; grid-row: span 1; min-height: 200px; }
}

/* ==========================================================================
   Steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step { padding-top: var(--s-5); border-top: 2px solid var(--volt); }
.step .n {
  font-family: var(--font-display);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--volt);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: var(--s-3);
}
.step h3 { font-size: var(--t-base); margin-bottom: 6px; }
.step p { font-size: var(--t-sm); color: rgba(255,255,255,0.62); }
.step .promise {
  display: inline-block;
  margin-top: var(--s-3);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--volt);
}

/* ==========================================================================
   Comparison table
   ========================================================================== */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: var(--t-sm);
}
.compare th, .compare td {
  padding: var(--s-4);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare thead th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-sm);
  color: var(--text-2);
  border-bottom: 1px solid var(--border-strong);
  white-space: nowrap;
}
.compare thead th.us { color: var(--ink); background: var(--volt); border-radius: var(--r-md) var(--r-md) 0 0; }
.compare td.us { background: rgba(212,243,42,0.10); font-weight: 600; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:last-child td.us { border-radius: 0 0 var(--r-md) var(--r-md); }
.compare .row-label { font-weight: 500; color: var(--ink); }

.mark { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; }
.mark-yes { background: var(--ok-tint); color: var(--ok); }
.mark-no  { background: var(--bad-tint); color: var(--bad); }
.mark-mid { background: var(--warn-tint); color: #B96B21; }
.mark svg { width: 11px; height: 11px; stroke: currentColor; stroke-width: 3; fill: none; }

/* ==========================================================================
   Named human
   ========================================================================== */
.human {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-5);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}
@media (max-width: 800px) {
  .human { grid-template-columns: auto 1fr; }
  .human .btn { grid-column: 1 / -1; }
}
.human .avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  object-fit: cover;
  flex: none;
}
.human .who { font-family: var(--font-display); font-weight: 600; font-size: var(--t-base); }
.human .role { font-size: var(--t-sm); color: var(--text-2); }
.human .hours { font-size: var(--t-xs); color: var(--text-3); margin-top: 4px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-base);
  letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  flex: none;
  width: 10px; height: 10px;
  border-right: 2px solid var(--text-3);
  border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease);
  margin-right: 4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p {
  padding-bottom: var(--s-5);
  color: var(--text-2);
  font-size: var(--t-sm);
  max-width: 68ch;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding-block: var(--s-9) var(--s-6);
  margin-top: var(--s-9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: var(--s-6);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-7) var(--s-5); } }
@media (max-width: 560px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: var(--s-4);
}
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.62);
  transition: color var(--dur-fast) var(--ease);
}
.footer-grid a:hover { color: var(--white); }
.footer-brand .brand-logo { height: 20px; margin-bottom: var(--s-4); }
.footer-brand p { font-size: var(--t-sm); color: rgba(255,255,255,0.62); max-width: 34ch; }

.footer-legal {
  padding-top: var(--s-5);
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
}
.footer-legal .disclaimer {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ==========================================================================
   Sticky mobile WhatsApp bar + desktop FAB
   ========================================================================== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  display: none;
}
@media (max-width: 900px) { .sticky-cta { display: block; } body { padding-bottom: 76px; } }

.wa-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  height: 56px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  background: var(--wa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: var(--t-sm);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.42); }
.wa-fab svg { width: 22px; height: 22px; fill: currentColor; flex: none; }
.wa-fab .lbl { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width var(--dur-slow) var(--ease); }
.wa-fab:hover .lbl { max-width: 180px; }
@media (max-width: 900px) { .wa-fab { display: none; } }

/* ==========================================================================
   Consent banner - "Reject All" must be as prominent as "Accept All"
   (§25 TDDDG; dark patterns are the #1 enforcement target)
   ========================================================================== */
.consent {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 200;
  max-width: 560px;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
  padding: var(--s-5);
}
.consent h4 { font-size: var(--t-base); margin-bottom: 6px; }
.consent p { font-size: var(--t-sm); color: var(--text-2); margin-bottom: var(--s-4); }
.consent p a { text-decoration: underline; }
.consent-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.consent-actions .btn { flex: 1; min-width: 140px; }   /* equal weight - legally required */

/* ==========================================================================
   Interior page hero
   ========================================================================== */
.page-hero { padding-block: var(--s-9) var(--s-7); border-bottom: 1px solid var(--border); }
.page-hero .display-1 { font-size: clamp(2rem, 5vw, var(--t-3xl)); margin-bottom: var(--s-4); }

.breadcrumb { display: flex; gap: 8px; font-size: var(--t-xs); color: var(--text-3); margin-bottom: var(--s-4); }
.breadcrumb a:hover { color: var(--ink); }

/* ==========================================================================
   Prose (legal pages, guides)
   ========================================================================== */
.prose { max-width: 72ch; }
.prose h2 {
  font-size: var(--t-xl);
  margin-top: var(--s-8);
  margin-bottom: var(--s-4);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: var(--t-base); margin-top: var(--s-5); margin-bottom: var(--s-2); }
.prose p, .prose li { color: var(--text-2); font-size: var(--t-sm); line-height: 1.7; }
.prose p { margin-bottom: var(--s-4); }
.prose ul { list-style: disc; padding-left: 1.25em; margin-bottom: var(--s-4); }
.prose ol { list-style: decimal; padding-left: 1.25em; margin-bottom: var(--s-4); }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--info); text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: var(--s-5); font-size: var(--t-sm); }
.prose th, .prose td { padding: 10px 12px; border: 1px solid var(--border); text-align: left; }
.prose th { background: var(--page); font-weight: 600; color: var(--ink); }
.prose code { background: var(--page); padding: 2px 6px; border-radius: var(--r-sm); font-size: 0.9em; }

.callout {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--page);
  padding: var(--s-5);
  margin-bottom: var(--s-5);
}
.callout.warn { border-color: #F0D9B8; background: var(--warn-tint); }
.callout.bad  { border-color: #F4C9D0; background: var(--bad-tint); }
.callout.ok   { border-color: #BEE7CC; background: var(--ok-tint); }
.callout b { display: block; margin-bottom: 4px; color: var(--ink); font-size: var(--t-sm); }
.callout p { margin: 0; font-size: var(--t-sm); }
.callout p + p { margin-top: var(--s-3); }

/* ==========================================================================
   Locations
   ========================================================================== */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
@media (max-width: 900px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .loc-grid { grid-template-columns: 1fr; } }

.loc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.loc-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.loc-card .name { font-family: var(--font-display); font-weight: 600; }
.loc-card .sub { font-size: var(--t-xs); color: var(--text-3); }
.loc-card .arrow { color: var(--text-3); transition: transform var(--dur) var(--ease); }
.loc-card:hover .arrow { transform: translateX(3px); color: var(--ink); }

/* ==========================================================================
   Reviews - built, hidden until real verified reviews exist.
   Fabricated reviews are per-se unlawful in Germany (UWG Anhang Nr. 23b/23c).
   ========================================================================== */
.reviews[hidden] { display: none; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }

.review-card { padding: var(--s-5); border: 1px solid var(--border); border-radius: var(--r-lg); }
.review-card .stars { color: var(--volt-deep); font-size: var(--t-sm); letter-spacing: 2px; margin-bottom: var(--s-3); }
.review-card .quote { font-size: var(--t-sm); color: var(--text); margin-bottom: var(--s-4); }
.review-card .who { font-size: var(--t-xs); color: var(--text-3); }

/* §5b Abs.3 UWG: must disclose whether/how reviews are verified, near the reviews */
.review-disclosure {
  margin-top: var(--s-5);
  font-size: var(--t-xs);
  color: var(--text-3);
  padding: var(--s-4);
  background: var(--page);
  border-radius: var(--r-md);
}
