/* =============================================================================
   PANNENHILFE EXPERTEN – Unified Stylesheet
   Merged from: homepage, blogpost, review_blog_post, Blog-Guides-overview,
                impressum, kontakt, notrufnummern
   ============================================================================= */

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--blue-600);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ===== CSS Variables ===== */
:root {
  /* Blues */
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a5f;

  /* Greens */
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;

  /* Grays */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Oranges */
  --orange-50: #fffbeb;
  --orange-100: #fef3c7;
  --orange-500: #f59e0b;
  --orange-600: #d97706;
  --orange-700: #b45309;

  /* Reds */
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;

  /* Purples (from Blog Overview) */
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-600: #9333ea;

  /* Misc */
  --white: #fff;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Fonts */
  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;

  /* Layout */
  --section-padding: 100px 0;
  --container-width: 1180px;
  --nav-height: 72px;
  --article-max: 720px;
  --wide-max: 960px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.75;
  font-size: 16px;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input {
  font-family: inherit;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--gray-900);
}

/* ===== Utility Classes ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn svg {
  flex-shrink: 0;
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow:
    0 1px 3px rgba(37, 99, 235, 0.3),
    0 4px 12px rgba(37, 99, 235, 0.15);
}

.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.btn-green {
  background: var(--green-600);
  color: var(--white);
  box-shadow:
    0 1px 3px rgba(22, 163, 74, 0.3),
    0 4px 12px rgba(22, 163, 74, 0.15);
}

.btn-green:hover {
  background: var(--green-700);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border: 2px solid var(--blue-200);
}

.btn-outline:hover {
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.btn-sm {
  font-size: 14px;
  padding: 10px 20px;
}

.btn-lg {
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Navigation ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  height: var(--nav-height);
  transition: box-shadow 0.3s;
}

.site-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--gray-900);
  flex-shrink: 0;
}

.nav-logo svg {
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--blue-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition:
    color 0.2s,
    background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-600);
  background: var(--blue-50);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.3);
  transition: all 0.25s;
}

.nav-cta .btn:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.nav-cta .btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.3);
  transition: all 0.25s;
}

.nav-cta .btn-nav:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 16px 24px 24px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav .btn,
.mobile-nav .btn-nav {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--blue-600);
  color: var(--white);
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== Hero (Homepage) ===== */
.hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  background: linear-gradient(170deg, var(--white) 0%, var(--blue-50) 50%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue-600);
  position: relative;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--blue-200);
  border-radius: 3px;
  z-index: -1;
  opacity: 0.6;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-sub strong {
  color: var(--gray-700);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* ===== Trust Bar ===== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
}

.trust-badge svg {
  flex-shrink: 0;
  color: var(--green-600);
}

.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-bar-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-bar-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-bar-logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-300);
}

.trust-bar-sep {
  width: 1px;
  height: 20px;
  background: var(--gray-200);
}

/* ===== Steps/How It Works ===== */
.how-it-works {
  padding: var(--section-padding);
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 48px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-100));
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  margin: 0 auto 16px;
  color: var(--blue-600);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps-grid::before {
    display: none;
  }
}

/* ===== Comparison Tool ===== */
.comparison-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

#pannenhilfe-vergleich-container {
  min-height: 600px;
  background: var(--white);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.tool-placeholder {
  text-align: center;
  padding: 60px 24px;
}

.tool-placeholder-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue-600);
  animation: pulse-soft 2.5s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.tool-placeholder p {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-400);
}

.tool-placeholder p:last-child {
  font-size: 14px;
  margin-top: 6px;
  font-weight: 400;
}

/* ===== Top Picks ===== */
.top-picks {
  padding: var(--section-padding);
  background: var(--white);
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}

.pick-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.pick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pick-card.featured {
  border-color: var(--blue-600);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pick-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pick-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pick-badge.gold {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.pick-badge.blue {
  background: var(--blue-50);
  color: var(--blue-800);
  border: 1px solid var(--blue-100);
}

.pick-badge.green {
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-100);
}

.pick-badge-icon {
  width: 16px;
  height: 16px;
}

.pick-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pick-price {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.pick-price strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
}

.pick-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pick-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.5;
}

.pick-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-600);
}

.pick-card .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .picks-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .pick-card.featured {
    transform: none;
    order: -1;
  }

  .pick-card.featured:hover {
    transform: translateY(-4px);
  }
}

/* ===== Ranking ===== */
.ranking-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.ranking-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ranking-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: all 0.25s;
}

.ranking-item:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}

.ranking-item.rank-gold {
  border-color: var(--orange-500);
  background: linear-gradient(135deg, var(--white), var(--orange-50));
}

.ranking-item.rank-silver {
  border-color: var(--gray-300);
  background: linear-gradient(135deg, var(--white), var(--gray-50));
}

.ranking-item.rank-bronze {
  border-color: #d97706;
  background: linear-gradient(135deg, var(--white), #fffbeb);
}

.rank-pos {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--white);
  background: var(--gray-400);
}

.rank-gold .rank-pos {
  background: var(--orange-500);
}

.rank-silver .rank-pos {
  background: var(--gray-400);
}

.rank-bronze .rank-pos {
  background: var(--orange-700);
}

.rank-info {
  flex: 1;
  min-width: 0;
}

.rank-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}

.rank-detail {
  font-size: 14px;
  color: var(--gray-500);
}

.rank-score {
  text-align: right;
  flex-shrink: 0;
}

.rank-score-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
}

.rank-score-label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}

.rank-bar-wrap {
  flex: 0 0 160px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rank-bar {
  flex: 1;
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}

.rank-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--blue-600);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0;
}

.rank-gold .rank-bar-fill {
  background: var(--orange-500);
}

@media (max-width: 600px) {
  .ranking-item {
    flex-wrap: wrap;
    gap: 12px;
  }

  .rank-bar-wrap {
    flex: 0 0 100%;
  }
}

/* ===== Savings ===== */
.savings-section {
  padding: var(--section-padding);
  background: var(--white);
}

.savings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.savings-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-comparison-bar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pcb-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  width: 110px;
  flex-shrink: 0;
  text-align: right;
}

.pcb-track {
  flex: 1;
  height: 40px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.pcb-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0;
}

.pcb-fill.red {
  background: linear-gradient(90deg, var(--red-500), var(--red-600));
}

.pcb-fill.orange {
  background: linear-gradient(90deg, var(--orange-500), var(--orange-600));
}

.pcb-fill.green {
  background: linear-gradient(90deg, var(--green-500), var(--green-600));
}

.pcb-fill.blue {
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
}

.savings-text h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.savings-text p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 12px;
}

.savings-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.savings-stat {
  flex: 1;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.savings-stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--green-700);
}

.savings-stat-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .savings-grid {
    grid-template-columns: 1fr;
  }

  .savings-stat-row {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== Explainer Cards ===== */
.explainer-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.explainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.explainer-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.explainer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.explainer-card.person {
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  border-color: var(--blue-200);
}

.explainer-card.vehicle {
  background: linear-gradient(135deg, var(--orange-50), var(--white));
  border-color: var(--orange-100);
}

.explainer-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.explainer-card.person .explainer-icon {
  background: var(--blue-100);
  color: var(--blue-600);
}

.explainer-card.vehicle .explainer-icon {
  background: var(--orange-100);
  color: var(--orange-600);
}

.explainer-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.explainer-card > p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.explainer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.explainer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

.explainer-list li svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.explainer-card.person .explainer-list svg {
  color: var(--blue-600);
}

.explainer-card.vehicle .explainer-list svg {
  color: var(--orange-600);
}

.explainer-price-tag {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gray-500);
}

.explainer-price-tag strong {
  font-size: 20px;
  color: var(--gray-900);
}

@media (max-width: 768px) {
  .explainer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Comparison Table ===== */
.comparison-table-section {
  padding: var(--section-padding);
  background: var(--white);
}

.comparison-table-section .table-scroll {
  margin-top: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.comparison-table-section .table-scroll::-webkit-scrollbar {
  height: 8px;
}

.comparison-table-section .table-scroll::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  background: var(--gray-50);
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--gray-200);
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}

.comparison-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}

.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  vertical-align: middle;
}

.comparison-table td:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gray-900);
  background: var(--white);
  position: sticky;
  left: 0;
  z-index: 1;
  white-space: nowrap;
  border-right: 1px solid var(--gray-100);
}

.comparison-table tbody tr:hover td {
  background: var(--blue-50);
}

.comparison-table tbody tr:hover td:first-child {
  background: var(--blue-50);
}

.table-check {
  color: var(--green-600);
  font-weight: 700;
}

.table-cross {
  color: var(--gray-300);
}

.table-highlight {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-700);
}

.table-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

.table-badge.winner {
  background: var(--orange-100);
  color: var(--orange-700);
}

.table-badge.value {
  background: var(--blue-50);
  color: var(--blue-700);
}

.table-badge.family {
  background: var(--green-50);
  color: var(--green-700);
}

.scroll-hint {
  display: none;
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 12px;
  font-family: var(--font-display);
}

@media (max-width: 960px) {
  .scroll-hint {
    display: block;
  }
}

/* ===== Schutzbriefe ===== */
.schutzbriefe-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.sb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.sb-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.25s;
}

.sb-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.sb-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sb-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.sb-price-tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.sb-type {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.sb-detail {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .sb-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 550px) {
  .sb-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Hersteller ===== */
.hersteller-section {
  padding: var(--section-padding);
  background: var(--white);
}

.hersteller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.hg-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all 0.25s;
}

.hg-card:hover {
  background: var(--white);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.hg-brand {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hg-free-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 2px 8px;
  border-radius: 100px;
}

.hg-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hg-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.hg-row-label {
  color: var(--gray-400);
}

.hg-row-value {
  font-weight: 600;
  color: var(--gray-700);
  text-align: right;
}

.hg-row-value.yes {
  color: var(--green-600);
}

.hg-row-value.no {
  color: var(--gray-300);
}

/* ===== Kreditkarten ===== */
.kreditkarten-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.kk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.kk-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.25s;
  position: relative;
}

.kk-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.kk-card.kk-highlight {
  border-color: var(--green-600);
  border-width: 2px;
}

.kk-card.kk-highlight::before {
  content: "Tipp";
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--green-600);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 100px;
}

.kk-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.kk-fee {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.kk-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kk-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.5;
}

.kk-feature-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-600);
}

.kk-feature-list li.caveat svg {
  color: var(--orange-500);
}

@media (max-width: 900px) {
  .kk-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 550px) {
  .kk-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Providers Grid ===== */
.providers {
  padding: var(--section-padding);
  background: var(--white);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.provider-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.25s;
  cursor: pointer;
}

.provider-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.provider-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-600);
  flex-shrink: 0;
}

.provider-info h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.provider-type {
  font-size: 12.5px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.provider-price {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-600);
}

/* ===== Advantages ===== */
.advantages {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.advantage-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.advantage-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue-600);
}

.advantage-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-padding);
  background: var(--white);
}

.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
}

.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.faq-item.open {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--blue-600);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--blue-600);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== Ratgeber/Article Cards ===== */
.ratgeber {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.ratgeber-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.article-card a.card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.article-img {
  height: 180px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-300);
}

.article-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-600);
  margin-bottom: 8px;
}

.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.article-link:hover {
  gap: 10px;
}

@media (max-width: 768px) {
  .ratgeber-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== Newsletter ===== */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--white);
  color: var(--blue-700);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}

@media (max-width: 500px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ===== Article Layout (Blog) ===== */
.article-hero {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 48px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.article-hero-inner {
  max-width: var(--article-max);
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--gray-500);
  transition: color 0.2s;
}

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

.breadcrumb svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.article-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.article-hero h1 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 640px;
}

.article-lead {
  font-size: 19px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.author-chip {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.author-date {
  font-size: 13px;
  color: var(--gray-400);
}

.meta-separator {
  width: 1px;
  height: 24px;
  background: var(--gray-200);
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}

.meta-tag svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Cover Image */
.article-cover {
  max-width: var(--wide-max);
  margin: 0 auto;
  padding: 0 24px;
}

.cover-image {
  width: 100%;
  aspect-ratio: 21/9;
  background: linear-gradient(135deg, var(--blue-600) 0%, #1e40af 40%, #312e81 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cover-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--white);
  text-align: center;
  padding: 40px;
}

.cover-visual .cover-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-visual .cover-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.cover-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.cover-badge {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Article grid layout with sidebar */
.article-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 0;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 64px;
  align-items: start;
}

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* TOC Sidebar */
.toc-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
  padding: 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}

.toc-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-list a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: all 0.2s;
  line-height: 1.4;
}

.toc-list a:hover {
  color: var(--blue-600);
  background: var(--blue-50);
  border-left-color: var(--blue-600);
}

.toc-list a.active {
  color: var(--blue-600);
  background: var(--blue-50);
  border-left-color: var(--blue-600);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .toc-sidebar {
    display: none;
  }
}

/* Mobile TOC */
.mobile-toc {
  display: none;
  margin: 0 auto;
  max-width: var(--article-max);
  padding: 0 24px;
}

.mobile-toc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
}

.mobile-toc-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform 0.3s;
}

.mobile-toc-toggle.open svg {
  transform: rotate(180deg);
}

.mobile-toc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-toc-content.open {
  max-height: 500px;
}

.mobile-toc-content .toc-list {
  padding: 12px 20px 16px;
}

@media (max-width: 1024px) {
  .mobile-toc {
    display: block;
    margin-bottom: 32px;
  }
}

/* ===== Article Content ===== */
.article-content {
  max-width: var(--article-max);
  min-width: 0;
}

.article-content h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 56px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  scroll-margin-top: 100px;
}

.article-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.article-content h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 36px 0 14px;
  scroll-margin-top: 100px;
}

.article-content p {
  margin-bottom: 20px;
  color: var(--gray-700);
}

.article-content strong {
  color: var(--gray-900);
  font-weight: 600;
}

.article-content a:not(.btn):not(.btn-cta-primary):not(.btn-cta-ghost):not(.compare-cta) {
  color: var(--blue-600);
  text-decoration: underline;
  text-decoration-color: var(--blue-200);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.article-content a:not(.btn):not(.btn-cta-primary):not(.btn-cta-ghost):not(.compare-cta):hover {
  text-decoration-color: var(--blue-600);
}

.article-content ul,
.article-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
  color: var(--gray-700);
}

.article-content li {
  margin-bottom: 8px;
}

.article-content .btn,
.article-content .btn-cta-primary,
.article-content .btn-cta-ghost {
  text-decoration: none;
}

/* ===== Callout Boxes ===== */
.callout {
  margin: 32px 0;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.callout svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.callout-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.callout-body {
  flex: 1;
  min-width: 0;
}

.callout-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 4px;
}

.callout-body p {
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.65;
}

.callout p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.callout.info {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
}

.callout.info .callout-icon {
  background: var(--blue-100);
  color: var(--blue-600);
}

.callout.success {
  background: var(--green-50);
  border: 1px solid var(--green-100);
}

.callout.success .callout-icon {
  background: var(--green-100);
  color: var(--green-600);
}

.callout.warning {
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
}

.callout.warning .callout-icon {
  background: var(--orange-100);
  color: var(--orange-600);
}

.callout.danger {
  background: var(--red-50);
  border: 1px solid var(--red-100);
}

.callout.danger .callout-icon {
  background: var(--red-100);
  color: var(--red-600);
}

/* ===== Inline Comparison Cards ===== */
.compare-card {
  margin: 32px 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  flex-wrap: wrap;
  gap: 12px;
}

.compare-provider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-logo {
  width: 48px;
  height: 48px;
  background: var(--blue-600);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.compare-provider h4 {
  font-size: 18px;
  font-weight: 700;
}

.compare-provider .compare-sub {
  font-size: 13px;
  color: var(--gray-400);
}

.compare-price {
  text-align: right;
}

.compare-price .price-big {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
}

.compare-price .price-label {
  font-size: 12px;
  color: var(--gray-400);
}

.compare-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-pros,
.compare-cons {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.compare-pros h5,
.compare-cons h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.compare-pros h5 {
  color: var(--green-600);
}

.compare-cons h5 {
  color: var(--red-500);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

.compare-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.compare-list.pro li svg {
  color: var(--green-600);
}

.compare-list.con li svg {
  color: var(--red-400);
}

.compare-footer {
  padding: 16px 24px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.compare-badge {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.compare-badge.gold {
  background: var(--orange-100);
  color: var(--orange-700);
}

.compare-badge.value {
  background: var(--blue-50);
  color: var(--blue-700);
}

.compare-badge.family {
  background: var(--green-50);
  color: var(--green-700);
}

.compare-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.compare-cta:hover {
  gap: 10px;
}

.compare-aff-footer {
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--green-50), var(--white));
  border-top: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 550px) {
  .compare-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .compare-aff-footer {
    flex-direction: column;
  }

  .compare-aff-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Stats ===== */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.stat-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-600);
}

.stat-label {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 4px;
}

@media (max-width: 550px) {
  .stat-row {
    grid-template-columns: 1fr;
  }
}

/* ===== Quotes ===== */
.article-quote {
  margin: 36px 0;
  padding: 28px 32px;
  background: var(--gray-50);
  border-left: 4px solid var(--blue-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-quote p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.6;
  margin-bottom: 8px;
  font-style: italic;
}

.article-quote cite {
  font-size: 14px;
  color: var(--gray-400);
  font-style: normal;
}

/* ===== Article Tables ===== */
.article-table {
  margin: 32px 0;
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.article-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.article-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  background: var(--gray-50);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--gray-200);
  white-space: nowrap;
}

.article-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

.article-table tbody tr:hover td {
  background: var(--blue-50);
}

.article-table .highlight {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-700);
}

/* ===== CTA Banners ===== */
.cta-banner {
  margin: 48px 0;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--gray-900);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.cta-left {
  padding: 44px 40px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-left .cta-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-400);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-left .cta-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--blue-400);
  border-radius: 2px;
}

.cta-left h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-left p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.65;
  margin-bottom: 24px;
}

.cta-left .cta-btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-left .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  transition: all 0.25s;
}

.cta-left .btn-cta-primary:hover {
  background: var(--blue-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

.cta-left .btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-400);
  background: none;
  border: none;
  padding: 8px 4px;
  transition: color 0.2s;
}

.cta-left .btn-cta-ghost:hover {
  color: var(--white);
}

.cta-right {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.05));
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.cta-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
}

.cta-stat-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.cta-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-stat-icon.icon-gold {
  background: rgba(251, 191, 36, 0.15);
  color: var(--orange-500);
}

.cta-stat-icon.icon-green {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green-500);
}

.cta-stat-icon.icon-blue {
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue-500);
}

.cta-stat-text .cta-stat-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.cta-stat-text .cta-stat-label {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.35;
}

@media (max-width: 700px) {
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-left {
    padding: 32px 28px;
  }

  .cta-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 28px 28px;
  }
}

/* ===== Author Bio ===== */
.author-bio {
  margin: 48px 0;
  padding: 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 20px;
  align-items: center;
}

.author-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  flex-shrink: 0;
}

.author-bio-info h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.author-bio-info .author-role {
  font-size: 13px;
  color: var(--blue-600);
  font-weight: 600;
  margin-bottom: 8px;
}

.author-bio-info p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 550px) {
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Share Bar ===== */
.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin: 32px 0;
}

.share-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all 0.2s;
}

.share-btn:hover {
  border-color: var(--blue-200);
  color: var(--blue-600);
  background: var(--blue-50);
}

/* ===== Related Articles ===== */
.related-section {
  max-width: var(--wide-max);
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.related-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.02em;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.related-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-img.img-blue {
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  color: var(--blue-300);
}

.related-img.img-green {
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  color: var(--green-300);
}

.related-img.img-orange {
  background: linear-gradient(135deg, var(--orange-50), var(--orange-100));
  color: var(--orange-300);
}

.related-body {
  padding: 20px;
}

.related-body .related-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-600);
  margin-bottom: 6px;
}

.related-body h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.related-body p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 12px;
}

.related-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.related-link:hover {
  gap: 8px;
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===== Review Components ===== */

/* Test Verdict Card */
.verdict-card {
  margin: 32px 0;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.verdict-header {
  display: flex;
  align-items: stretch;
}

.verdict-score-col {
  background: linear-gradient(135deg, var(--green-600), #0d9044);
  color: var(--white);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.verdict-score-col::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.verdict-score-big {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.verdict-score-max {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  opacity: 0.7;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.verdict-score-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 16px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.verdict-details-col {
  flex: 1;
  padding: 32px 36px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.verdict-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.verdict-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.verdict-bar-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.verdict-bar-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  width: 100px;
  flex-shrink: 0;
  text-align: right;
}

.verdict-bar-track {
  flex: 1;
  height: 10px;
  background: var(--gray-100);
  border-radius: 5px;
  overflow: hidden;
}

.verdict-bar-fill {
  height: 100%;
  border-radius: 5px;
  background: var(--green-500);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0;
}

.verdict-bar-fill.excellent {
  background: var(--green-500);
}
.verdict-bar-fill.good {
  background: var(--blue-500);
}
.verdict-bar-fill.ok {
  background: var(--orange-500);
}

.verdict-bar-value {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  width: 32px;
  flex-shrink: 0;
}

.verdict-cta {
  padding: 20px 28px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.verdict-cta-text {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gray-500);
}

.verdict-cta-text strong {
  color: var(--gray-900);
}

@media (max-width: 600px) {
  .verdict-header {
    flex-direction: column;
  }
  .verdict-score-col {
    min-width: 0;
    padding: 28px 24px;
  }
  .verdict-details-col {
    padding: 24px 20px;
  }
}

@media (max-width: 500px) {
  .verdict-cta {
    flex-direction: column;
  }
  .verdict-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Tariff Cards */
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
  align-items: stretch;
}

.tariff-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: var(--white);
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tariff-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.tariff-card.recommended {
  border-color: var(--green-600);
  border-width: 2px;
}

.tariff-card.recommended::before {
  content: "Empfehlung";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--green-600);
  color: var(--white);
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.tariff-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.tariff-price {
  font-family: var(--font-display);
  margin-bottom: 16px;
}

.tariff-price .price-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
}

.tariff-price .price-period {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
}

.tariff-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.tariff-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tariff-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.5;
}

.tariff-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.tariff-features li.included svg {
  color: var(--green-600);
}

.tariff-features li.excluded svg {
  color: var(--gray-300);
}

.tariff-features li.excluded {
  color: var(--gray-400);
}

.tariff-cta-wrap {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

@media (max-width: 768px) {
  .tariff-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Pro Contra Split */
.pro-contra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 32px 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pro-side,
.contra-side {
  padding: 28px 24px;
}

.pro-side {
  background: linear-gradient(180deg, var(--green-50), var(--white));
  border-right: 1px solid var(--gray-200);
}

.contra-side {
  background: linear-gradient(180deg, var(--red-50), var(--white));
}

.pro-contra-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.pro-side .pro-contra-title {
  color: var(--green-700);
}

.contra-side .pro-contra-title {
  color: var(--red-500);
}

.pro-contra-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pro-contra-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.55;
}

.pro-contra-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.pro-side .pro-contra-list svg {
  color: var(--green-600);
}

.contra-side .pro-contra-list svg {
  color: var(--red-400);
}

@media (max-width: 600px) {
  .pro-contra {
    grid-template-columns: 1fr;
  }

  .pro-side {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
}

/* Timeline */
.timeline {
  margin: 32px 0;
  padding-left: 28px;
  border-left: 3px solid var(--blue-100);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--blue-600);
  border: 3px solid var(--blue-100);
  border-radius: 50%;
}

.timeline-item.highlight::before {
  background: var(--green-600);
  border-color: var(--green-100);
  box-shadow: 0 0 0 4px var(--green-50);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 2px;
}

.timeline-item.highlight .timeline-year {
  color: var(--green-600);
}

.timeline-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.55;
}

/* Score Badge Inline */
.score-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 13px;
  vertical-align: middle;
}

.score-inline.sehr-gut {
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-100);
}

.score-inline.gut {
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-100);
}

/* Affiliate Note */
.aff-note {
  font-size: 11px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 6px;
  line-height: 1.4;
}

/* Affiliate Strip */
.aff-strip {
  margin: 36px 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--green-50), var(--white));
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.aff-strip.blue {
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  border-color: var(--blue-100);
}

.aff-strip-left {
  flex: 1;
  min-width: 200px;
}

.aff-strip-left h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.aff-strip-left p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.5;
}

.aff-strip-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.aff-strip-price {
  text-align: right;
}

.aff-strip-price .price-from {
  font-size: 12px;
  color: var(--gray-400);
}

.aff-strip-price .price-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
}

.aff-strip-price .price-period {
  font-size: 12px;
  color: var(--gray-400);
}

@media (max-width: 600px) {
  .aff-strip {
    flex-direction: column;
    text-align: center;
  }

  .aff-strip-right {
    flex-direction: column;
    width: 100%;
  }

  .aff-strip-right .btn {
    width: 100%;
    justify-content: center;
  }

  .aff-strip-price {
    text-align: center;
  }
}

/* Sticky Bottom Bar */
.sticky-aff-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 14px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sticky-aff-bar.visible {
  transform: translateY(0);
}

.sticky-aff-bar-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.sticky-aff-bar-text .test-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--orange-100);
  color: var(--orange-700);
  padding: 4px 12px;
  border-radius: 100px;
}

.sticky-aff-bar .aff-note {
  margin: 0;
  margin-left: 4px;
}

@media (max-width: 650px) {
  .sticky-aff-bar {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px;
  }

  .sticky-aff-bar-text {
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  .sticky-aff-bar .btn {
    flex: 1;
    justify-content: center;
  }

  .sticky-aff-bar .aff-note {
    display: none;
  }
}

/* Compare Affiliate Footer */
.compare-aff-footer {
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--green-50), var(--white));
  border-top: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 500px) {
  .compare-aff-footer {
    flex-direction: column;
  }

  .compare-aff-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Blog Overview ===== */

/* Page Hero (used by overview, legal, contact, emergency pages) */
.page-hero {
  padding-top: calc(var(--nav-height) + 56px);
  padding-bottom: 56px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.page-hero h1 .hl {
  color: var(--red-600);
}

.page-hero p {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Category Filter */
.cat-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cat-btn {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.cat-btn:hover {
  border-color: var(--blue-200);
  color: var(--blue-600);
}

.cat-btn.active {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

/* Featured Article */
.featured-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

.featured-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--orange-600);
  margin-bottom: 16px;
}

.featured-label svg {
  width: 16px;
  height: 16px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition:
    box-shadow 0.4s,
    transform 0.4s;
  cursor: pointer;
}

.featured-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.featured-visual {
  position: relative;
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #3b82f6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  min-height: 320px;
}

.featured-visual::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.featured-badge-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.featured-score {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
}

.featured-score .score-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.featured-score .score-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-visual .testsieger-badge {
  position: relative;
  z-index: 1;
  background: var(--orange-500);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.featured-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-body .article-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}

.cat-test {
  background: var(--green-50);
  color: var(--green-600);
  border: 1px solid var(--green-100);
}

.cat-vergleich {
  background: var(--blue-50);
  color: var(--blue-600);
  border: 1px solid var(--blue-100);
}

.cat-ratgeber {
  background: var(--orange-50);
  color: var(--orange-700);
  border: 1px solid var(--orange-100);
}

.cat-notruf {
  background: var(--red-50);
  color: var(--red-600);
  border: 1px solid var(--red-100);
}

.cat-tipps {
  background: var(--purple-50);
  color: var(--purple-600);
  border: 1px solid var(--purple-100);
}

.featured-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.featured-body p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-400);
}

.meta-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--blue-600);
  transition: gap 0.25s;
}

.featured-cta:hover {
  gap: 14px;
}

.featured-cta svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 800px) {
  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-visual {
    min-height: 220px;
    padding: 32px 24px;
  }

  .featured-body {
    padding: 28px 24px;
  }
}

/* Article Grid (Blog Overview) */
.grid-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.grid-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.grid-section-header h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

.article-count {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gray-400);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
}

/* Card Visual (Blog Overview) */
.card-visual {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-visual-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  padding: 24px;
}

.bg-blue {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
}

.bg-green {
  background: linear-gradient(135deg, #065f46, #16a34a);
}

.bg-red {
  background: linear-gradient(135deg, #991b1b, #ef4444);
}

.bg-orange {
  background: linear-gradient(135deg, #7c2d12, #f59e0b);
}

.bg-purple {
  background: linear-gradient(135deg, #581c87, #9333ea);
}

.bg-gray {
  background: linear-gradient(135deg, #334155, #64748b);
}

.card-visual-icon {
  color: rgba(255, 255, 255, 0.12);
  position: absolute;
  right: -20px;
  bottom: -20px;
}

.card-visual-text {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
}

.card-visual-text .big-num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.9;
}

.card-visual-text .sub-text {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.7;
  margin-top: 6px;
}

.card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.card-cat-test {
  background: rgba(22, 163, 74, 0.15);
  color: #4ade80;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.card-cat-vergleich {
  background: rgba(37, 99, 235, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.card-cat-notruf {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.card-cat-tipps {
  background: rgba(147, 51, 234, 0.15);
  color: #d8b4fe;
  border: 1px solid rgba(147, 51, 234, 0.2);
}

.card-cat-ratgeber {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 20px;
}

.card-meta {
  font-size: 12px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-meta svg {
  width: 14px;
  height: 14px;
}

.card-arrow {
  width: 32px;
  height: 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.25s;
  flex-shrink: 0;
}

.article-card:hover .card-arrow {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
  transform: translateX(3px);
}

/* Newsletter Section (Blog Overview variant) */
.newsletter-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.newsletter-card {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.newsletter-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.newsletter-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }

  .newsletter-text p {
    margin: 0 auto 0;
  }

  .newsletter-form {
    justify-content: center;
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== Legal Pages ===== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  letter-spacing: -0.01em;
}

.legal-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 10px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--gray-700);
  font-size: 15.5px;
}

.legal-content a {
  color: var(--blue-600);
  text-decoration: underline;
  text-decoration-color: var(--blue-200);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.legal-content a:hover {
  text-decoration-color: var(--blue-600);
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
  color: var(--gray-700);
  font-size: 15.5px;
}

.legal-content li {
  margin-bottom: 6px;
}

/* Info Cards (Impressum) */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.info-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

.info-card p strong {
  color: var(--gray-700);
}

@media (max-width: 550px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* Section Divider */
.legal-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 40px 0;
  border: none;
}

/* ===== Contact Page ===== */
.contact-layout {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 840px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-form-card > p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--red-500);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
  background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue-600);
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox span {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--blue-600);
  text-decoration: underline;
  text-decoration-color: var(--blue-200);
  text-underline-offset: 2px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--blue-600);
  color: var(--white);
  box-shadow:
    0 1px 3px rgba(37, 99, 235, 0.3),
    0 4px 12px rgba(37, 99, 235, 0.15);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-submit:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Form Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--green-50);
  border: 2px solid var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-600);
}

.form-success h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}

.sidebar-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}

.sidebar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sidebar-icon.blue {
  background: var(--blue-50);
  color: var(--blue-600);
}

.sidebar-icon.green {
  background: var(--green-50);
  color: var(--green-600);
}

.sidebar-icon.orange {
  background: var(--orange-50);
  color: var(--orange-600);
}

.sidebar-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.sidebar-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

.sidebar-card a {
  color: var(--blue-600);
  font-weight: 600;
  transition: color 0.2s;
}

.sidebar-card a:hover {
  color: var(--blue-700);
}

.sidebar-detail {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  display: block;
  margin-top: 6px;
}

/* FAQ Mini (Contact) */
.faq-mini {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.faq-mini h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-mini h3 svg {
  color: var(--blue-600);
}

.faq-mini .faq-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 14px 0;
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
}

.faq-mini .faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-q {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.6;
  padding-top: 10px;
  margin-bottom: 0;
}

/* ===== Emergency Numbers Page ===== */

/* Emergency Page Hero (override with gradient background) */
.page-hero.emergency-hero {
  background: linear-gradient(135deg, var(--red-50), var(--orange-50), var(--white));
  border-bottom: 1px solid var(--gray-100);
}

.page-hero.emergency-hero .page-hero-inner {
  max-width: 880px;
  text-align: left;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--gray-500);
  transition: color 0.2s;
}

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

.breadcrumb svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Emergency Banner */
.emergency-banner {
  max-width: 880px;
  margin: -28px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.emergency-card {
  background: var(--red-600);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25);
  flex-wrap: wrap;
}

.emergency-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emergency-card-text {
  flex: 1;
  min-width: 200px;
}

.emergency-card-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.emergency-card-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.5;
}

.emergency-numbers {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.em-num {
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  min-width: 120px;
  backdrop-filter: blur(4px);
}

.em-num .num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  display: block;
  letter-spacing: 0.02em;
}

.em-num .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

@media (max-width: 700px) {
  .emergency-card {
    flex-direction: column;
    text-align: center;
  }

  .emergency-numbers {
    justify-content: center;
    width: 100%;
  }
}

/* Page Content (Emergency Numbers) */
.page-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.page-content h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 48px 0 20px;
  letter-spacing: -0.01em;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  margin-bottom: 16px;
  color: var(--gray-700);
  font-size: 15.5px;
}

.page-content a:not(.btn):not(.club-link) {
  color: var(--blue-600);
  text-decoration: underline;
  text-decoration-color: var(--blue-200);
  text-underline-offset: 3px;
}

/* Quick Jump Links */
.quick-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 40px;
}

.quick-jump a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  padding: 8px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  transition: all 0.2s;
  white-space: nowrap;
}

.quick-jump a:hover {
  color: var(--blue-600);
  border-color: var(--blue-200);
  background: var(--blue-50);
  text-decoration: none;
}

/* Club Cards */
.club-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.3s;
}

.club-card:hover {
  box-shadow: var(--shadow-lg);
}

.club-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-100);
  flex-wrap: wrap;
}

.club-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.club-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
}

.club-logo.adac {
  background: #ffcc00;
  color: var(--gray-900);
}

.club-logo.avd {
  background: #003366;
}

.club-logo.ace {
  background: #e30613;
}

.club-logo.mobil {
  background: #009640;
}

.club-logo.acv {
  background: #0072bc;
}

.club-logo.bavc {
  background: #1a3c6e;
}

.club-logo.arcd {
  background: #b5121b;
}

.club-logo.ks {
  background: #004f9f;
}

.club-logo.vcd {
  background: #4caf50;
}

.club-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.club-subtitle {
  font-size: 13px;
  color: var(--gray-400);
}

.club-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.badge-green {
  background: var(--green-50);
  color: var(--green-600);
  border: 1px solid var(--green-100);
}

.badge-blue {
  background: var(--blue-50);
  color: var(--blue-600);
  border: 1px solid var(--blue-100);
}

.badge-orange {
  background: var(--orange-50);
  color: var(--orange-700);
  border: 1px solid var(--orange-100);
}

/* Phone Table */
.phone-table {
  width: 100%;
  border-collapse: collapse;
}

.phone-table th {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  padding: 12px 28px;
  text-align: left;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.phone-table td {
  padding: 14px 28px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
  vertical-align: top;
}

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

.phone-table .phone-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-table .phone-label svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.phone-number {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: 0.02em;
}

.phone-number a {
  color: var(--gray-900);
  text-decoration: none;
  transition: color 0.2s;
}

.phone-number a:hover {
  color: var(--blue-600);
}

.phone-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* Phone Tags */
.phone-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 100px;
  margin-left: 8px;
  white-space: nowrap;
}

.tag-free {
  background: var(--green-50);
  color: var(--green-600);
}

.tag-24h {
  background: var(--orange-50);
  color: var(--orange-600);
}

.tag-app {
  background: var(--blue-50);
  color: var(--blue-600);
}

/* Club Footer */
.club-footer {
  padding: 14px 28px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.club-footer-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.club-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  margin-left: auto;
  transition: color 0.2s;
  text-decoration: none;
}

.club-link:hover {
  color: var(--blue-700);
}

@media (max-width: 600px) {
  .phone-table th,
  .phone-table td {
    padding: 10px 16px;
  }

  .phone-number {
    font-size: 15px;
  }

  .club-header {
    padding: 16px;
  }

  .phone-tag {
    display: none;
  }
}

/* Callout (Emergency Page variant) */
.callout {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin: 24px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.callout svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.callout p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.callout.info {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-700);
}

.callout.warning {
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  color: var(--orange-700);
}

.callout.danger {
  background: var(--red-50);
  border: 1px solid var(--red-100);
  color: var(--red-600);
}

/* Overview Table */
.overview-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.overview-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.overview-table th {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  padding: 14px 16px;
  text-align: left;
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-200);
  white-space: nowrap;
  position: sticky;
  top: 0;
}

.overview-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  vertical-align: middle;
}

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

.overview-table tr:hover td {
  background: var(--blue-50);
}

.overview-table .club-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-900);
  white-space: nowrap;
}

.overview-table .club-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.overview-table .num-cell {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-800);
}

.overview-table .num-cell a {
  color: var(--gray-800);
  text-decoration: none;
}

.overview-table .num-cell a:hover {
  color: var(--blue-600);
}

.yes-icon {
  color: var(--green-600);
}

.no-icon {
  color: var(--gray-300);
}

/* ===== Reading Progress ===== */
.reading-progress {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 999;
  pointer-events: none;
}

.reading-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay variants (homepage) */
.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

/* Delay variants (kontakt) */
.fade-in-d1 {
  transition-delay: 0.1s;
}

.fade-in-d2 {
  transition-delay: 0.2s;
}

.fade-in-d3 {
  transition-delay: 0.3s;
}

/* ===== Footer (Homepage Full) ===== */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  padding-right: 20px;
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-500);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-affiliate {
  font-size: 12px;
  color: var(--gray-600);
  max-width: 520px;
  text-align: right;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-affiliate {
    text-align: left;
  }
}

/* ===== Footer (Simple - Blog/Legal/Contact/Emergency Pages) ===== */
.site-footer.simple {
  padding: 48px 0;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner .nav-logo {
  color: var(--white);
  font-size: 17px;
}

.footer-copy {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links .active {
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Final Responsive Overrides ===== */
@media (max-width: 480px) {
  :root {
    --section-padding: 64px 0;
    --nav-height: 64px;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 56px;
  }

  .page-hero {
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 36px;
  }
}
