/* =========================================================
   rechtschutzfinder.de — Design-Tokens & Basisstile
   Farbrichtung: Dunkelblau + Hellblau, abgeleitet aus dem Logo
   ========================================================= */

:root {
  /* Primärfarbe — Dunkelblau aus dem Logo (Schild): Vertrauen, Seriosität */
  --color-primary: #0b2a53;
  --color-primary-dark: #071c39;
  --color-primary-light: #eaf3fb;

  /* Akzentfarbe — Hellblau/Cyan aus dem Logo (Lupe): Handlung, Frische */
  --color-accent: #0095bb;
  --color-accent-dark: #007494;
  --color-accent-light: #e3f6fb;
  --color-accent-strong: #00a7c8;
  --color-gold: #d99b2b;

  /* Neutrale Basis */
  --color-background: #f6f9fc;
  --color-surface: #ffffff;
  --color-surface-muted: #eef5f9;

  /* Text */
  --color-text: #111f2d;
  --color-text-muted: #465866;
  --color-text-inverse: #ffffff;

  /* Rand & Zustände */
  --color-border: #d8e0e7;
  --color-focus: #007494;

  --color-success: #18794e;
  --color-warning: #a15c00;
  --color-error: #b42318;
  --color-info: #175cd3;

  /* Typografie */
  --font-base: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Abstände */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  /* Radius & Schatten */
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(23, 33, 43, 0.06);
  --shadow-md: 0 8px 24px rgba(23, 33, 43, 0.08);
  --shadow-lg: 0 16px 40px rgba(23, 33, 43, 0.12);
  --shadow-xl: 0 24px 70px rgba(7, 28, 57, 0.16);

  --container: 1120px;
}

/* -------------------- Reset -------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 149, 187, 0.09), transparent 28rem),
    linear-gradient(180deg, #fbfdff 0%, var(--color-background) 24rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

ul {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  margin: 0 0 var(--space-2);
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-primary-dark);
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.25rem); }
h2 { font-size: clamp(1.6rem, 2.2vw + 1rem, 2.25rem); }
h3 { font-size: 1.25rem; }

p {
  margin: 0 0 var(--space-2);
  color: var(--color-text-muted);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

section {
  padding: var(--space-6) 0;
}

/* -------------------- Header / Navigation -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 224, 231, 0.8);
  box-shadow: 0 10px 30px rgba(7, 28, 57, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-primary-dark);
}

.nav__brand span {
  color: var(--color-accent);
}

.nav__logo {
  height: 46px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
}

.nav__links a {
  color: var(--color-text);
  font-weight: 650;
  font-size: 0.95rem;
}

.nav__links a:hover {
  color: var(--color-primary);
}

.nav__cta {
  display: none;
}

.nav__toggle {
  display: inline-flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav__toggle svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-primary-dark);
}

@media (min-width: 860px) {
  .nav__toggle { display: none; }
  .nav__links {
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    padding: 0;
  }
  .nav__cta { display: inline-flex; }
}

@media (max-width: 859px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--color-surface);
    padding: var(--space-3);
    gap: var(--space-2);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__links.is-open {
    display: flex;
  }
  .nav__links .btn {
    width: 100%;
    justify-content: center;
  }
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 750;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
  stroke: currentColor;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent-strong));
  color: var(--color-text-inverse);
  box-shadow: 0 12px 24px rgba(0, 116, 148, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #005c76, #008bad);
  box-shadow: 0 16px 30px rgba(0, 116, 148, 0.28);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-primary-dark);
  border-color: rgba(11, 42, 83, 0.22);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(0, 149, 187, 0.45);
  color: var(--color-accent-dark);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* -------------------- Hero -------------------- */
.hero {
  padding: var(--space-7) 0 var(--space-6);
  background:
    linear-gradient(135deg, rgba(231, 241, 248, 0.98) 0%, rgba(255, 255, 255, 0.82) 56%, rgba(227, 246, 251, 0.82) 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -42% 44%;
  height: 28rem;
  background: linear-gradient(120deg, rgba(0, 149, 187, 0.12), rgba(11, 42, 83, 0.1));
  transform: skewY(-8deg);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: var(--space-2);
  border: 1px solid rgba(0, 149, 187, 0.18);
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  color: #06182f;
  max-width: 12ch;
}

.hero__lead {
  font-size: 1.15rem;
  max-width: 46ch;
  color: #314656;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
  color: #314656;
  font-size: 0.9rem;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}

.hero__trust svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  min-height: 520px;
}

.hero__image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(216, 224, 231, 0.82);
  box-shadow: var(--shadow-xl);
}

.hero__card {
  background: var(--color-surface);
  border: 1px solid rgba(216, 224, 231, 0.9);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(7, 28, 57, 0.16);
  padding: var(--space-3);
}

.hero__visual .hero__card {
  position: absolute;
  left: -1.5rem;
  right: 2rem;
  bottom: -1.5rem;
  max-width: 440px;
}

.hero__card h3 {
  margin-bottom: var(--space-1);
}

.hero__card p {
  font-size: 0.78rem;
  margin: var(--space-2) 0 0;
}

.hero__card-kicker {
  display: inline-flex;
  color: var(--color-accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.hero__card-button {
  width: 100%;
  margin-top: var(--space-2);
}

@media (max-width: 899px) {
  .hero__visual {
    min-height: auto;
  }

  .hero__visual .hero__card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -2rem var(--space-2) 0;
  }
}

@media (max-width: 520px) {
  .nav__logo {
    height: 38px;
  }

  .hero {
    padding-top: var(--space-5);
  }

  .hero h1 {
    max-width: none;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .steps-panel {
    padding: var(--space-3);
  }
}

/* -------------------- Section headers -------------------- */
.section-head {
  max-width: 62ch;
  margin: 0 auto var(--space-5);
  text-align: center;
}

.section-head__logo {
  height: 40px;
  width: auto;
  margin: 0 auto var(--space-2);
}

.section-head .eyebrow {
  display: inline-block;
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

/* -------------------- Cards / Grid -------------------- */
.grid {
  display: grid;
  gap: var(--space-3);
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--color-surface);
  border: 1px solid rgba(216, 224, 231, 0.92);
  border-radius: 14px;
  padding: var(--space-3);
  box-shadow: 0 10px 28px rgba(7, 28, 57, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  border-color: rgba(0, 149, 187, 0.32);
  box-shadow: 0 18px 42px rgba(7, 28, 57, 0.1);
  transform: translateY(-2px);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}

.card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-accent-dark);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* -------------------- How it works -------------------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steps-panel {
  background: #fff;
  border: 1px solid rgba(216, 224, 231, 0.95);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(7, 28, 57, 0.08);
  padding: var(--space-4);
  margin-bottom: var(--space-5);
  position: relative;
  overflow: hidden;
}

.steps-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-strong), var(--color-gold));
}

.steps-panel__head {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto var(--space-4);
}

.steps-panel__head .eyebrow {
  display: inline-block;
  color: var(--color-accent-dark);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

.steps-panel__head h3 {
  font-size: clamp(1.35rem, 1.4vw + 1rem, 1.8rem);
  margin-bottom: 0;
}

.step {
  position: relative;
  min-height: 100%;
  padding: 4.9rem var(--space-3) var(--space-3);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border: 1px solid rgba(216, 224, 231, 0.82);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(7, 28, 57, 0.05);
  text-align: center;
}

.step::after {
  content: "";
  position: absolute;
  top: 3.1rem;
  left: var(--space-3);
  right: var(--space-3);
  height: 1px;
  background: rgba(216, 224, 231, 0.72);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-dark));
  color: var(--color-text-inverse);
  font-weight: 700;
  position: absolute;
  top: 1.15rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 20px rgba(0, 116, 148, 0.18);
  z-index: 1;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.step p {
  margin-bottom: 0;
}

/* -------------------- Alt section -------------------- */
.section-muted {
  background: linear-gradient(180deg, var(--color-surface-muted), #f7fbfd);
}

.section-dark {
  background: var(--color-primary-dark);
  color: var(--color-text-inverse);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-text-inverse);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

/* -------------------- Testimonials -------------------- */
.quote {
  background: var(--color-surface);
  border: 1px solid rgba(216, 224, 231, 0.92);
  border-radius: 14px;
  padding: var(--space-3);
  box-shadow: 0 10px 28px rgba(7, 28, 57, 0.06);
}

.quote__stars {
  color: var(--color-gold);
  margin-bottom: var(--space-1);
  font-size: 0.95rem;
}

.quote__author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: var(--space-2);
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.quote__avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* -------------------- FAQ -------------------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-2) 0;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  padding-bottom: var(--space-2);
  margin: 0;
}

/* -------------------- CTA band -------------------- */
.cta-band {
  background:
    linear-gradient(135deg, rgba(7, 28, 57, 0.96), rgba(0, 116, 148, 0.92)),
    url("../img/hero-rechtsschutz-vergleich.jpg") center / cover;
  border-radius: 16px;
  padding: var(--space-5);
  text-align: center;
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.cta-band h2,
.cta-band p {
  color: var(--color-text-inverse);
}

.cta-band .btn-secondary {
  background: transparent;
  border-color: var(--color-text-inverse);
  color: var(--color-text-inverse);
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* -------------------- Footer -------------------- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-6) 0 var(--space-3);
}

.footer__grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: var(--space-5);
}

.footer__brand {
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: var(--space-1);
}

.footer__brand span {
  color: var(--color-accent);
}

.footer__logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: var(--space-1);
}

.footer h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* -------------------- Werbehinweis (Affiliate-Kennzeichnung) --------------------
   Zentrale Komponente: Jedes Element, das zu Affiliate-Werbung führt oder
   selbst Affiliate-Werbung ist (Link, Button, Banner-Container, verlinktes
   Anbieterlogo), erhält das Attribut `data-affiliate`. Das Sternchen wird
   dadurch automatisch und einheitlich ergänzt - es darf nicht mehr manuell
   in den Linktext getippt werden.

   Beispiel Link/Button:  <a href="..." data-affiliate>Zum Anbieter</a>
   Beispiel Banner/Logo:  <a href="..." data-affiliate><img ...></a>
   Interne Links/Buttons (z. B. Anker auf derselben Seite) erhalten das
   Attribut NICHT.
   -------------------------------------------------------------------- */
[data-affiliate] {
  position: relative;
}

[data-affiliate]::after {
  content: "*";
  margin-left: 0.2em;
  font-weight: 800;
  color: var(--color-accent-dark);
}

.affiliate-banner-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: var(--space-2);
}

.footer__affiliate {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: var(--space-4);
  padding-top: var(--space-3);
}

.footer__affiliate h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.footer__affiliate p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 78ch;
}

/* -------------------- Legal pages -------------------- */
.legal {
  padding: var(--space-6) 0;
}

.legal .container {
  max-width: 800px;
}

.legal h2 {
  margin-top: var(--space-5);
  font-size: 1.35rem;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal address {
  font-style: normal;
}

.legal ul {
  padding-left: 1.2rem;
  margin-bottom: var(--space-2);
}

.legal li {
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

/* -------------------- Hero steps -------------------- */
.hero-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.hero-steps li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--color-text);
}

.hero-steps li span {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-light));
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------- Rechner / Calculator -------------------- */
.calculator-card {
  background: var(--color-surface);
  border: 1px solid rgba(216, 224, 231, 0.95);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
}

/* -------------------- Comparison table -------------------- */
.table-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.filter-btn {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.filter-btn:hover {
  border-color: var(--color-primary);
}

.filter-btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.compare-table th,
.compare-table td {
  padding: 0.9rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.compare-table th {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 700;
}

.compare-table td:first-child,
.compare-table th:first-child {
  text-align: left;
  color: var(--color-text);
  font-weight: 500;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr.is-hidden {
  display: none;
}

.compare-table .yes {
  color: var(--color-accent-dark);
  font-weight: 700;
}

.compare-table .no {
  color: var(--color-text-muted);
}

.compare-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-3);
}

/* -------------------- Affiliate note -------------------- */
.affiliate-note {
  max-width: 62ch;
  margin: var(--space-4) auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* -------------------- Footer social -------------------- */
.footer__social {
  display: flex;
  gap: 0.7rem;
  margin-top: var(--space-2);
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
}

.footer__social a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

/* -------------------- Utilities -------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
