/* =========================================================================
   konzessionen.at — Stylesheet
   Modernes, responsives Design mit Dark-Mode-Support
   ========================================================================= */

:root {
  /* Hintergründe */
  --bg-primary: #ffffff;
  --bg-secondary: #f7f5ef;
  --bg-tertiary: #eeeae0;
  --bg-success: #E1F5EE;
  --bg-warning: #FAEEDA;

  /* Text */
  --text-primary: #1f1f1d;
  --text-secondary: #666663;
  --text-tertiary: #95948e;
  --text-success: #0F6E56;
  --text-warning: #854F0B;

  /* Akzent */
  --accent-success: #1D9E75;

  /* Ränder */
  --border-tertiary: rgba(30, 30, 28, 0.09);
  --border-secondary: rgba(30, 30, 28, 0.22);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 18px;

  /* Layout */
  --max-width: 1200px;
  --content-gutter: 40px;

  /* Font */
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #0f0f0e;
    --bg-secondary: #1a1a18;
    --bg-tertiary: #2a2a28;
    --bg-success: rgba(29, 158, 117, 0.13);
    --bg-warning: rgba(186, 117, 23, 0.13);
    --text-primary: #ebe9e4;
    --text-secondary: #9e9c96;
    --text-tertiary: #6a6964;
    --text-success: #5DCAA5;
    --text-warning: #EF9F27;
    --accent-success: #5DCAA5;
    --border-tertiary: rgba(255, 255, 255, 0.08);
    --border-secondary: rgba(255, 255, 255, 0.22);
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

/* ---------- Header / Nav ---------- */
.site-header {
  border-bottom: 0.5px solid var(--border-tertiary);
  background: var(--bg-primary);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 68px;
}
.logo {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  color: var(--text-secondary);
}
.main-nav a { transition: color 0.15s ease; }
.main-nav a:hover { color: var(--text-primary); }
.main-nav a.current {
  color: var(--text-primary);
  font-weight: 500;
  position: relative;
}
.main-nav a.current::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-success);
}
.nav-cta {
  padding: 9px 18px;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.15s ease;
}
.nav-cta:hover { opacity: 0.85; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb svg { opacity: 0.5; }
.breadcrumb .current { color: var(--text-primary); }

/* ---------- Headings ---------- */
h1, h2, h3 {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
h1 { font-size: clamp(40px, 5.5vw, 64px); letter-spacing: -0.04em; line-height: 1.04; }
h2 { font-size: clamp(28px, 3.2vw, 40px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 14px;
  display: inline-block;
}

.section-title { margin-bottom: 14px; max-width: 640px; }
.section-intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 40px;
}

/* ---------- Hero ---------- */
.hero { padding: 80px 0 72px; }
.hero h1 { max-width: 840px; margin-bottom: 28px; }
.hero h1 .muted { color: var(--text-tertiary); }
.hero-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
  font-style: italic;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Status-Pill (Live) ---------- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 16px 7px 13px;
  border: 0.5px solid var(--border-secondary);
  border-radius: 999px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg-primary);
}
.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-success);
  display: inline-block;
}
.live-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent-success);
  animation: ping-ring 1.8s ease-out infinite;
}
@keyframes ping-ring {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateX(2px); }
.btn-primary {
  background: var(--accent-success);
  color: #ffffff;
}
.btn-primary:hover { background: var(--text-success); }
.btn-dark {
  background: var(--text-primary);
  color: var(--bg-primary);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 0.5px solid var(--border-secondary);
}
.btn-outline:hover { background: var(--bg-secondary); transform: translateX(2px); }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--border-tertiary);
  border-bottom: 0.5px solid var(--border-tertiary);
}
.stats-row > div {
  padding: 32px 20px;
  border-right: 0.5px solid var(--border-tertiary);
  text-align: center;
}
.stats-row > div:last-child { border-right: none; }
.stat-label-prefix {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-right: 6px;
}
.stat-number {
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  display: inline-block;
}
.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 10px;
}

/* ---------- Section base ---------- */
section { padding: 88px 0; }
section.bg-alt {
  background: var(--bg-secondary);
  border-top: 0.5px solid var(--border-tertiary);
  border-bottom: 0.5px solid var(--border-tertiary);
}

/* ---------- Features grid (3×2) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border-tertiary);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.2s ease;
}
.feature-card:hover { transform: translateY(-3px); }
.feature-card.highlight {
  background: var(--bg-success);
  color: var(--text-success);
}
.feature-card.highlight h3 { color: var(--text-success); }
.feature-card.highlight p { color: var(--text-success); opacity: 0.88; }
.feature-card.highlight .feature-icon {
  background: var(--accent-success);
  color: #ffffff;
  border-color: transparent;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  border: 0.5px solid var(--border-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------- Path cards (2-column) ---------- */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.path-card {
  background: var(--bg-primary);
  border: 0.5px solid var(--border-tertiary);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s ease;
}
.path-card:hover { transform: translateY(-3px); }
.path-card .feature-icon {
  background: var(--bg-secondary);
  border-color: transparent;
  width: 48px;
  height: 48px;
}
.path-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 12px;
}
.path-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.path-card > p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.check-list svg {
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--accent-success);
}

/* ---------- Process steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-step .step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-success);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 22px;
}
.process-step h3 {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 500;
}
.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------- Branchen Tags ---------- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  padding: 9px 16px;
  background: var(--bg-primary);
  border: 0.5px solid var(--border-tertiary);
  border-radius: 999px;
  font-size: 13px;
  transition: transform 0.15s ease;
}
.tag:hover { transform: translateY(-2px); }
.tag.tag-accent {
  background: var(--bg-success);
  color: var(--text-success);
  font-weight: 500;
}
.tag.tag-more { color: var(--text-secondary); }

/* ---------- Branchen Cluster ---------- */
.branchen-search {
  max-width: 580px;
  margin: 0 auto 44px;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  border: 0.5px solid var(--border-secondary);
  border-radius: 999px;
  padding: 0 6px 0 20px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.branchen-search:focus-within {
  border-color: var(--accent-success);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.12);
}
.branchen-search svg { flex-shrink: 0; color: var(--text-tertiary); }
.branchen-search input {
  flex: 1;
  padding: 14px 12px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--text-primary);
  min-width: 0;
}
.branchen-search input::placeholder { color: var(--text-tertiary); }
.branchen-count {
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border-radius: 999px;
  margin-right: 2px;
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cluster-card {
  background: var(--bg-primary);
  border: 0.5px solid var(--border-tertiary);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.cluster-card:hover { transform: translateY(-2px); }
.cluster-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.cluster-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}
.cluster-header h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
  line-height: 1.25;
}
.cluster-count {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}
.cluster-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  flex: 1;
  align-content: flex-start;
}
.cluster-items li {
  padding: 6px 11px;
  background: var(--bg-secondary);
  border: 0.5px solid var(--border-tertiary);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-primary);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  line-height: 1.3;
}
.cluster-items li.match {
  background: var(--bg-success);
  color: var(--text-success);
  border-color: transparent;
  font-weight: 500;
}
.cluster-items .cluster-more-item { display: none; }
.cluster-card.expanded .cluster-more-item { display: inline-block; }
.cluster-toggle {
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0;
  margin-top: auto;
  transition: color 0.15s ease;
}
.cluster-toggle:hover { color: var(--accent-success); }

.cluster-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 44px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  background: var(--bg-primary);
  border: 0.5px solid var(--border-tertiary);
  border-radius: var(--radius-lg);
}

.cluster-items li.is-clickable { cursor: pointer; }
.cluster-items li.is-clickable:hover {
  background: var(--bg-success);
  color: var(--text-success);
  border-color: transparent;
}
.cluster-items li.is-clickable:focus-visible {
  outline: 2px solid var(--accent-success);
  outline-offset: 2px;
}

.click-hint {
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 24px;
  font-style: italic;
}

/* Cluster-Chips (Homepage-Teaser) */
.cluster-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.cluster-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px 10px 18px;
  background: var(--bg-primary);
  border: 0.5px solid var(--border-tertiary);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-primary);
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.cluster-chip:hover {
  border-color: var(--accent-success);
  transform: translateY(-2px);
}
.cluster-chip .chip-count {
  padding: 3px 9px;
  background: var(--bg-secondary);
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}
.cluster-chip:hover .chip-count {
  background: var(--accent-success);
  color: #ffffff;
}

/* ---------- Gewerbe-Detail-Modal ---------- */
.gewerbe-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.gewerbe-modal[hidden] { display: none; }
.gewerbe-modal.is-open { opacity: 1; visibility: visible; }

.gewerbe-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  cursor: pointer;
}

.gewerbe-modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-primary);
  border: 0.5px solid var(--border-secondary);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.3);
  transform: scale(0.96) translateY(12px);
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.gewerbe-modal.is-open .gewerbe-modal-card {
  transform: scale(1) translateY(0);
}

.gewerbe-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  padding: 0;
}
.gewerbe-modal-close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.gm-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-right: 36px;
}
.gm-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.gm-cluster {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.gm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 0.5px solid var(--border-tertiary);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.gm-stat {
  padding: 16px 12px;
  text-align: center;
  border-right: 0.5px solid var(--border-tertiary);
}
.gm-stat:last-child { border-right: none; }
.gm-stat-value {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.gm-stat-label {
  font-size: 10.5px;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  line-height: 1.35;
}
.trend-up   { color: var(--accent-success); }
.trend-down { color: #c45a3c; }
.trend-flat { color: var(--text-secondary); }

.gm-verdienst {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.gm-verdienst-head {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.gm-verdienst-title {
  font-size: 12px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.3;
}
.gm-verdienst-meta {
  font-size: 10.5px;
  color: var(--text-tertiary);
  margin-top: 3px;
}
.gm-verdienst-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-success);
  white-space: nowrap;
  text-align: right;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.gm-facts {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 4px 16px;
  margin-bottom: 22px;
}
.gm-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--border-tertiary);
  font-size: 13px;
}
.gm-fact:last-child { border-bottom: none; }
.gm-fact-label {
  color: var(--text-secondary);
}
.gm-fact-value {
  color: var(--text-primary);
  font-weight: 500;
  text-align: right;
}

.gm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.gm-actions .btn {
  text-align: center;
  justify-content: center;
  font-size: 13px;
  padding: 12px 14px;
}

.gm-disclaimer {
  font-size: 11px;
  color: var(--text-tertiary);
  text-align: center;
  line-height: 1.45;
}

@media (max-width: 480px) {
  .gewerbe-modal-card { padding: 32px 20px 24px; }
  .gm-stats { grid-template-columns: 1fr; }
  .gm-stat { border-right: none; border-bottom: 0.5px solid var(--border-tertiary); }
  .gm-stat:last-child { border-bottom: none; }
  .gm-actions { grid-template-columns: 1fr; }
  .gm-verdienst {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .gm-verdienst-value { text-align: left; }
}

/* ---------- Preise ---------- */
.pricing-wrap { max-width: 880px; margin: 0 auto; }
.pricing-intro { text-align: center; margin-bottom: 48px; }
.pricing-intro h2 { margin: 0 auto 14px; max-width: 540px; }
.pricing-intro p { max-width: 540px; margin: 0 auto; font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

.price-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--bg-primary);
  border: 2px solid var(--accent-success);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  position: relative;
  transition: transform 0.2s ease;
}
.price-card:hover { transform: translateY(-3px); }
.price-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--accent-success);
  color: #ffffff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-amount {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 16px;
  display: block;
}
.price-unit {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
  margin-bottom: 30px;
}
.price-card .check-list {
  text-align: left;
  margin-bottom: 28px;
}
.price-card .check-list li {
  font-size: 14px;
  color: var(--text-primary);
}

.rates-wrap {
  max-width: 640px;
  margin: 40px auto 0;
}
.rates-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 20px;
}
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.rate-card {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border-tertiary);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
}
.rate-card .rate-head {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.rate-card .rate-price {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.rate-card .rate-sub {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 8px;
}
.price-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 18px;
}

.roi-callout {
  max-width: 640px;
  margin: 44px auto 0;
  background: var(--bg-success);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.roi-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-success);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.roi-callout h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-success);
  margin-bottom: 4px;
}
.roi-callout p {
  font-size: 14px;
  color: var(--text-success);
  opacity: 0.88;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Vorteile ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
.benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-success);
  color: var(--accent-success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}
.benefit p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Dark CTA Section ---------- */
.cta-dark {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 80px 0;
}
.cta-dark h2 { margin-bottom: 18px; max-width: 560px; }
.cta-dark p {
  font-size: 15px;
  opacity: 0.75;
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 36px;
}
.btn-on-dark-primary {
  background: var(--accent-success);
  color: #ffffff;
}
.btn-on-dark-outline {
  background: transparent;
  color: var(--bg-primary);
  border: 0.5px solid var(--bg-primary);
}
.btn-on-dark-outline:hover { background: rgba(255,255,255,0.08); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 32px 0;
  font-size: 13px;
  color: var(--text-tertiary);
  border-top: 0.5px solid var(--border-tertiary);
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--text-primary); }

/* ---------- Forms (Anbieten-Seite) ---------- */
.vorab-check-wrap { max-width: 640px; margin: 0 auto; }
.vorab-check-intro { text-align: center; margin-bottom: 44px; }
.vorab-check-intro .status-pill {
  background: var(--bg-success);
  color: var(--text-success);
  border: none;
}
.vorab-check-intro h2 { margin: 0 auto 16px; max-width: 540px; }
.vorab-check-intro p { max-width: 520px; margin: 0 auto; font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

.vc-form-card {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border-tertiary);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.vc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.vc-field label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.vc-field select {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-primary);
  border: 0.5px solid var(--border-secondary);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='%23666663' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.vc-field select:hover { border-color: var(--text-secondary); }
.vc-field select:focus { outline: 2px solid var(--accent-success); outline-offset: 2px; }

.vc-check-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--accent-success);
  color: #ffffff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease;
}
.vc-check-btn:hover { background: var(--text-success); transform: scale(1.02); }
.vc-check-btn:disabled {
  cursor: wait;
  opacity: 0.9;
  transform: none;
}
.vc-check-btn:disabled:hover { background: var(--accent-success); transform: none; }

.spinner {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 10px;
  vertical-align: -1px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.vc-result { margin-top: 22px; }
.vc-success, .vc-error { animation: slide-up 0.4s ease-out; }
@keyframes slide-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.vc-success {
  background: var(--bg-success);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--text-success);
}
.vc-success-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.vc-success-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-success);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vc-success-title { font-size: 16px; font-weight: 500; }
.vc-success-sub { font-size: 13px; opacity: 0.85; margin-top: 2px; }
.vc-success-body { font-size: 14px; line-height: 1.65; opacity: 0.9; margin-bottom: 18px; }
.vc-success-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.vc-success .btn-primary { background: var(--accent-success); color: #ffffff; }
.vc-success .btn-outline-success {
  background: transparent;
  color: var(--text-success);
  border: 0.5px solid var(--text-success);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.vc-error {
  padding: 16px 20px;
  background: var(--bg-warning);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-warning);
}

.vc-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 20px;
  line-height: 1.6;
}

/* ---------- Email-Anfrage (Erwerben) ---------- */
.email-request { max-width: 640px; margin: 0 auto; }
.email-request .vorab-check-intro { text-align: center; margin-bottom: 40px; }

.email-card {
  background: var(--bg-primary);
  border: 0.5px solid var(--border-secondary);
  border-radius: var(--radius-lg);
  padding: 44px 40px 36px;
  text-align: center;
}

.email-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-bottom: 10px;
}

.email-card-addr {
  display: inline-block;
  font-size: 26px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  text-decoration: none;
  padding-bottom: 28px;
  border-bottom: 0.5px solid var(--border-tertiary);
  margin-bottom: 28px;
  transition: color 0.15s ease;
}
.email-card-addr:hover { color: var(--accent-success); }

.email-checklist {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.email-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.email-checklist li svg {
  flex-shrink: 0;
  color: var(--accent-success);
  margin-top: 4px;
}
.email-checklist li strong {
  color: var(--text-primary);
  font-weight: 500;
}

.email-card-btn {
  display: inline-flex;
  min-width: 220px;
  justify-content: center;
}

.email-gewerbe-notice {
  background: var(--bg-success);
  color: var(--text-success);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-bottom: 28px;
  font-size: 13px;
  text-align: center;
  line-height: 1.45;
}
.email-gewerbe-notice strong { font-weight: 500; }

@media (max-width: 640px) {
  .email-card { padding: 36px 24px 28px; }
  .email-card-addr { font-size: 20px; }
  .email-card-btn { width: 100%; }
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  padding: 22px 0;
  border-bottom: 0.5px solid var(--border-tertiary);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 900px) {
  :root { --content-gutter: 24px; }
  section { padding: 64px 0; }
  .hero { padding: 56px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .paths-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row > div { border-bottom: 0.5px solid var(--border-tertiary); }
  .stats-row > div:nth-child(2n) { border-right: none; }
  .stats-row > div:nth-child(n+3) { border-bottom: none; }
  .benefits-grid { grid-template-columns: 1fr; gap: 18px; }
  .rates-grid { grid-template-columns: 1fr; }
  .cluster-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { gap: 18px; font-size: 13px; }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .vc-fields { grid-template-columns: 1fr; }
  .cluster-grid { grid-template-columns: 1fr; }
  .branchen-search { flex-wrap: wrap; padding: 6px 6px 6px 16px; }
  .branchen-count { margin: 0 0 4px 0; order: 3; width: 100%; text-align: center; }
  .main-nav a:not(.nav-cta) { display: none; }
  .price-card { padding: 32px 24px; }
  .price-amount { font-size: 48px; }
  .site-footer .container { flex-direction: column; gap: 12px; text-align: center; }
}

/* ---------- Legal-Tabellen (Impressum) ---------- */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.legal-table tr {
  border-bottom: 0.5px solid var(--border-tertiary);
}
.legal-table tr:last-child { border-bottom: none; }
.legal-table th {
  text-align: left;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 13px;
  padding: 14px 18px 14px 0;
  width: 38%;
  vertical-align: top;
}
.legal-table td {
  padding: 14px 0;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.55;
}
.legal-table a {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: var(--border-secondary);
  text-underline-offset: 2px;
}
.legal-table a:hover { color: var(--accent-success); }

.legal-page h2 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.legal-page h3 {
  font-size: 15px;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.legal-page p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-page p a,
.legal-page li a {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: var(--border-secondary);
  text-underline-offset: 2px;
}
.legal-page p a:hover,
.legal-page li a:hover { color: var(--accent-success); }
.legal-page ul {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.75;
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-page ul li { margin-bottom: 6px; }
.legal-page strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-primary);
  border: 0.5px solid var(--border-secondary);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.2);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 22px;
  animation: cookie-slide-in 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.cookie-banner.is-leaving {
  animation: cookie-slide-out 0.3s ease forwards;
}
@keyframes cookie-slide-in {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes cookie-slide-out {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(30px); opacity: 0; }
}
.cookie-banner-text {
  flex: 1;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.cookie-banner-text strong {
  color: var(--text-primary);
  font-weight: 500;
}
.cookie-banner-text a {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: var(--border-secondary);
  text-underline-offset: 2px;
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  font-family: inherit;
  border: 0.5px solid var(--border-secondary);
  white-space: nowrap;
}
.cookie-btn-reject {
  background: transparent;
  color: var(--text-secondary);
}
.cookie-btn-reject:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}
.cookie-btn-accept {
  background: var(--accent-success);
  color: #fff;
  border-color: var(--accent-success);
}
.cookie-btn-accept:hover {
  background: #168a63;
  border-color: #168a63;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 20px;
  }
  .cookie-banner-actions {
    justify-content: flex-end;
  }
}

/* ---------- WhatsApp-Widget ---------- */
.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 22px -4px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 80;
}
.whatsapp-widget:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px -4px rgba(37, 211, 102, 0.7);
  color: #fff;
}
.whatsapp-widget:active {
  transform: translateY(0) scale(0.98);
}
/* Wenn Cookie-Banner noch sichtbar: WhatsApp-Button etwas nach oben */
.cookie-banner ~ .whatsapp-widget { bottom: 22px; }
@media (max-width: 640px) {
  .whatsapp-widget { right: 18px; bottom: 18px; width: 52px; height: 52px; }
  .cookie-banner:not(.is-leaving) ~ .whatsapp-widget { bottom: 200px; }
}

/* ---------- Danke-Seite ---------- */
.thankyou-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--bg-success);
  color: var(--accent-success);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(29, 158, 117, 0.08);
  animation: thankyou-pop 0.5s cubic-bezier(0.2, 1.2, 0.3, 1);
}
@keyframes thankyou-pop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.thankyou-card {
  background: var(--bg-primary);
  border: 0.5px solid var(--border-secondary);
  border-radius: var(--radius-lg);
  padding: 44px 40px 36px;
  margin-bottom: 24px;
}

.thankyou-card-head {
  text-align: center;
  margin-bottom: 28px;
}
.thankyou-step {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-success);
  color: var(--text-success);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.thankyou-card-head h2 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.thankyou-card-head p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto;
}

.thankyou-mailto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--bg-secondary);
  border: 0.5px solid var(--border-tertiary);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.thankyou-mailto:hover {
  border-color: var(--accent-success);
  color: var(--accent-success);
  background: var(--bg-primary);
}
.thankyou-mailto svg { flex-shrink: 0; }

.thankyou-checklist-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}

.thankyou-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.thankyou-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  line-height: 1.55;
}
.thankyou-checklist li svg {
  flex-shrink: 0;
  color: var(--accent-success);
  margin-top: 4px;
}
.thankyou-checklist li > div {
  display: flex;
  flex-direction: column;
}
.thankyou-checklist li strong {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 2px;
}
.thankyou-checklist li span {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.4;
}

.thankyou-timeline {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg-success);
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
}
.thankyou-timeline-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-primary);
  color: var(--accent-success);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou-timeline strong {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.thankyou-timeline p {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

.thankyou-farewell {
  text-align: center;
  padding: 0 8px;
  margin-bottom: 36px;
}
.thankyou-farewell p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}
.thankyou-signature {
  margin-top: 28px !important;
  font-size: 14px !important;
  color: var(--text-secondary);
  line-height: 1.7;
}
.thankyou-signature strong {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
}
.thankyou-signature-sub {
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.thankyou-back {
  text-align: center;
}
.thankyou-back a {
  color: var(--text-secondary);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s ease;
}
.thankyou-back a:hover { color: var(--accent-success); }

@media (max-width: 640px) {
  .thankyou-card { padding: 32px 22px 28px; }
  .thankyou-card-head h2 { font-size: 22px; }
  .thankyou-mailto { font-size: 14px; padding: 14px 16px; flex-wrap: wrap; }
  .thankyou-timeline { flex-direction: column; gap: 12px; padding: 20px; }
}

/* ---------- Konzessions-Analyse: Gutschein-Box ---------- */
.analyse-voucher {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-success);
  border-radius: var(--radius-md);
  margin-top: 28px;
  text-align: left;
}
.analyse-voucher svg {
  flex-shrink: 0;
  color: var(--accent-success);
  margin-top: 2px;
}
.analyse-voucher strong {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.analyse-voucher span {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

/* ---------- Vorab-Check: Analyse-Hinweis-Box ---------- */
.vc-analyse-hint {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin-top: 20px;
  border: 0.5px solid var(--border-tertiary);
}
.vc-analyse-icon {
  flex-shrink: 0;
  color: var(--text-secondary);
  margin-top: 1px;
}
.vc-analyse-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.vc-analyse-text strong {
  color: var(--text-primary);
  font-weight: 500;
}
.vc-analyse-text a {
  color: var(--accent-success);
  text-decoration: underline;
  text-decoration-color: rgba(29, 158, 117, 0.4);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s ease;
}
.vc-analyse-text a:hover {
  text-decoration-color: var(--accent-success);
}

/* ---------- Kontakt-Seite ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  padding: 32px 30px 28px;
  background: var(--bg-primary);
  border: 0.5px solid var(--border-tertiary);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
a.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-success);
  box-shadow: 0 8px 24px -6px rgba(29, 158, 117, 0.15);
}
a.contact-card:hover .contact-action {
  color: var(--accent-success);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  margin-bottom: 22px;
  transition: background 0.2s ease, color 0.2s ease;
}
a.contact-card:hover .contact-icon {
  background: var(--bg-success);
  color: var(--accent-success);
}
.contact-icon-whatsapp {
  background: #25D366;
  color: #fff;
}
a.contact-card:hover .contact-icon-whatsapp {
  background: #1da851;
  color: #fff;
}

.contact-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.contact-value {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 18px;
  word-break: break-word;
}
.contact-value-address {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  letter-spacing: 0;
}
.contact-action {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: auto;
  letter-spacing: -0.005em;
  transition: color 0.15s ease;
}
.contact-card-static {
  cursor: default;
}

.contact-footer-note {
  max-width: 580px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-card { padding: 28px 24px 24px; }
  .contact-value { font-size: 16px; }
}
