/* ============================================================================
   Fonts (self-hosted, keine externen Requests)
   ============================================================================ */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('/assets/fonts/DMSans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/Inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================================
   Variables
   ============================================================================ */

:root {
  --red: #b71c1c;
  --red-hover: #8e0000;
  --red-light: #fbe9e7;
  --red-bg: rgba(183,28,28,0.06);
  --amber: #e65100;
  --amber-hover: #bf360c;
  --slate: #1a1a2e;
  --text: #111827;
  --text-sub: #4B5563;
  --text-muted: #9CA3AF;
  --bg: #FFFFFF;
  --bg-warm: #F7F5F2;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --max-w: 1040px;
}

/* ============================================================================
   Reset
   ============================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, select, input { font-family: inherit; }
ul { list-style: none; }

/* ============================================================================
   Layout
   ============================================================================ */

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ============================================================================
   Header (glasmorphism)
   ============================================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 60px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  flex-shrink: 0;
}
.logo:hover { color: var(--red); }
.logo svg { flex-shrink: 0; }

.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: color 0.15s;
}
.nav a:hover { color: var(--text); }

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 6px;
  padding: 6px 14px;
  transition: all 0.15s;
  margin-left: 4px;
}
.nav-cta:hover { background: var(--red); color: #fff; }

.mobile-menu { display: none; }

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu {
    display: flex;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text);
  }
}

/* ============================================================================
   Hero
   ============================================================================ */

.hero {
  background: var(--bg-warm);
  padding: 72px 24px 64px;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
}

.hero h1 .hl {
  background: var(--red-light);
  padding: 0 6px;
  border-radius: 4px;
  color: var(--red);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-sub);
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}

.search-bar select,
.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9375rem;
  color: var(--text);
  padding: 14px 16px;
  flex: 1;
  min-width: 0;
}

.search-bar select {
  flex: 0 0 auto;
  width: 210px;
  border-right: 1px solid var(--border);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.search-bar input::placeholder { color: var(--text-muted); }

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.search-btn:hover { background: var(--red-hover); }

.trust-line {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-line span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trust-line svg { color: var(--red); }

@media (max-width: 600px) {
  .hero { padding: 48px 16px 40px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.9375rem; }

  .search-bar {
    flex-direction: column;
    border-radius: var(--radius);
  }
  .search-bar select {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .search-bar input {
    border-bottom: 1px solid var(--border);
  }
  .search-btn {
    padding: 14px;
    border-radius: 0;
  }
  .trust-line { gap: 16px; flex-wrap: wrap; }
}

/* ============================================================================
   Section Header (reusable)
   ============================================================================ */

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-header p {
  color: var(--text-sub);
  font-size: 0.9375rem;
  margin-top: 4px;
}

/* ============================================================================
   Categories
   ============================================================================ */

.categories {
  padding: 64px 24px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cat-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.cat-card:hover {
  border-color: var(--red);
  box-shadow: 0 2px 8px rgba(183,28,28,0.08);
}

.cat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cat-body h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.cat-body p {
  font-size: 0.8125rem;
  color: var(--text-sub);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.cat-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
}

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

@media (max-width: 540px) {
  .cat-grid { grid-template-columns: 1fr; }
  .categories { padding: 48px 16px; }
}

/* ============================================================================
   Top Cities
   ============================================================================ */

.cities {
  background: var(--bg-warm);
  padding: 56px 24px;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.city-tag {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-sub);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 14px;
  transition: all 0.15s;
}

.city-tag:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}

.city-tag span {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 400;
  margin-left: 4px;
}

/* ============================================================================
   Trust / Stats
   ============================================================================ */

.stats {
  padding: 48px 24px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 540px) {
  .stats-grid { gap: 24px; flex-wrap: wrap; }
  .stat-num { font-size: 1.75rem; }
}

/* ============================================================================
   How It Works
   ============================================================================ */

.how {
  padding: 64px 24px;
  background: var(--bg-warm);
}

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

.step {
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red-bg);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .how { padding: 48px 16px; }
}

/* ============================================================================
   CTA (Dark Box)
   ============================================================================ */

.cta {
  padding: 80px 24px;
}

.cta-box {
  background: var(--slate);
  border-radius: 12px;
  padding: 56px 40px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cta-box p {
  color: #9CA3AF;
  font-size: 0.9375rem;
  margin-bottom: 28px;
  line-height: 1.55;
}

.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-amber:hover { background: var(--amber-hover); }

@media (max-width: 600px) {
  .cta { padding: 48px 16px; }
  .cta-box { padding: 40px 24px; }
}

/* ============================================================================
   Footer
   ============================================================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer-brand .logo {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-sub);
  padding: 3px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

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

/* ============================================================================
   Breadcrumbs
   ============================================================================ */

.breadcrumbs {
  padding: 16px 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-sub);
  transition: color 0.15s;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.bc-sep {
  margin: 0 6px;
  color: var(--text-muted);
}

/* ============================================================================
   Category Hero (Unterseiten)
   ============================================================================ */

.category-hero {
  padding: 40px 0 32px;
}

.category-hero h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}

.category-hero p {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.55;
  max-width: 640px;
}

.category-hero__stats {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.category-hero__stats span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--red);
  background: var(--red-light);
  padding: 4px 12px;
  border-radius: 4px;
}

/* ============================================================================
   City Hero (Unterseiten)
   ============================================================================ */

.city-hero {
  padding: 40px 0 32px;
}

.city-hero h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}

.city-hero p {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.55;
  max-width: 640px;
}

/* ============================================================================
   Sections (generic)
   ============================================================================ */

.section {
  padding: 48px 0;
}

.section--alt {
  background: var(--bg-warm);
  padding: 48px 24px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

/* ============================================================================
   Grids
   ============================================================================ */

.grid {
  display: grid;
  gap: 12px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

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

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

/* ============================================================================
   City Card (auf Kategorie-Seiten)
   ============================================================================ */

.city-card {
  display: block;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.city-card:hover {
  border-color: var(--red);
  box-shadow: 0 2px 8px rgba(183,28,28,0.08);
}

.city-card h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.city-card__bl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================================
   Category Link (Cross-Links auf Stadt-Seiten)
   ============================================================================ */

.category-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.category-link:hover {
  border-color: var(--red);
  box-shadow: 0 2px 8px rgba(183,28,28,0.08);
}

.category-link__icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================================
   Service Card (Anbieter)
   ============================================================================ */

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 12px;
  transition: box-shadow 0.15s;
}

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

.service-card--premium {
  border-color: var(--red);
  background: rgba(183,28,28,0.02);
  box-shadow: 0 2px 8px rgba(183,28,28,0.08);
}

.service-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.service-card__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.service-card__badges {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.service-card__address {
  font-size: 0.875rem;
  color: var(--text-sub);
  margin-bottom: 8px;
}

.service-card__rating {
  margin-bottom: 12px;
}

.service-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.service-card__footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ============================================================================
   Badges
   ============================================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge--verified {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge--premium {
  background: var(--red-light);
  color: var(--red);
}

/* ============================================================================
   Rating
   ============================================================================ */

.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
}

.rating__stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

.rating__score {
  font-weight: 600;
  color: var(--text);
}

.review-count {
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 400;
}

/* ============================================================================
   Tags
   ============================================================================ */

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-sub);
  background: var(--border-light);
  padding: 3px 10px;
  border-radius: 4px;
}

/* ============================================================================
   Buttons
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 6px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}
.btn--primary:hover {
  background: var(--red-hover);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn--sm {
  font-size: 0.8125rem;
  padding: 7px 14px;
}

.btn--lg {
  font-size: 1rem;
  padding: 14px 28px;
}

/* ============================================================================
   Price Info (Stadt-Seiten)
   ============================================================================ */

.price-info {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 32px;
  margin: 24px 0;
}

.price-info h2 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.price-info p {
  font-size: 0.9375rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================================
   FAQ (Accordion)
   ============================================================================ */

.faq-section {
  padding: 48px 0;
}

.faq-section h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--red);
}

.faq-q {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  transition: color 0.15s;
}

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

.faq-q::after {
  content: '+';
  float: right;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq-item[open] .faq-q::after {
  content: '-';
  color: var(--red);
}

.faq-q:hover {
  color: var(--red);
}

.faq-a {
  padding: 0 20px 16px;
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ============================================================================
   Empty State
   ============================================================================ */

.empty-state {
  text-align: center;
  padding: 48px 24px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  margin: 16px 0;
}

.empty-state p {
  font-size: 0.9375rem;
  color: var(--text-sub);
  margin-bottom: 16px;
  line-height: 1.55;
}

/* ============================================================================
   Pricing Cards (Anbieter-werden)
   ============================================================================ */

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.15s;
}

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

.pricing-card--featured {
  border-color: var(--red);
  box-shadow: 0 2px 12px rgba(183,28,28,0.1);
  position: relative;
}

.pricing-card--featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 20px;
}

.pricing-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-card li {
  font-size: 0.875rem;
  color: var(--text-sub);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-card li.muted {
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ============================================================================
   Benefit Cards (Anbieter-werden)
   ============================================================================ */

.benefit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.15s;
}

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

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================================
   Static Pages (Impressum, Datenschutz)
   ============================================================================ */

.static-page {
  padding: 48px 0 64px;
}

.static-page h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.static-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 12px;
}

.static-page p {
  font-size: 0.9375rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 12px;
}

.static-page strong {
  color: var(--text);
}
