/* ═══════════════════════════════════════════════════════════
   /firma-nicht-bei-google-gefunden — seitenspezifische Styles
   ═══════════════════════════════════════════════════════════ */

/* ── Messfehler-Panel ─────────────────────────────────────── */
.messfehler-panel {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.25rem 2rem;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background: rgba(var(--card-bg-rgb), 0.4);
}
.messfehler-panel > p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-color);
}
.messfehler-panel .check-list {
  margin: 1.5rem 0;
  gap: 1rem;
}
.messfehler-panel .check-list li {
  font-size: 0.96rem;
  line-height: 1.7;
}
.messfehler-panel .check-list strong {
  color: var(--heading-color);
}

.messfehler-tun {
  margin-top: 1.75rem;
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(59, 130, 246, 0.22);
  background: rgba(59, 130, 246, 0.07);
}
.messfehler-tun p {
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.messfehler-tun p:last-child { margin-bottom: 0; }
.messfehler-hinweis {
  color: var(--text-muted);
  font-size: 0.9rem !important;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Ursachen-Liste ───────────────────────────────────────── */
.ursachen-liste {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ursache-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: rgba(var(--card-bg-rgb), 0.35);
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.ursache-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-2px);
}
.ursache-nr {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}
.ursache-body h3 {
  font-size: 1.18rem;
  line-height: 1.35;
  margin-bottom: 0.7rem;
  color: var(--heading-color);
}
.ursache-was {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 1.1rem;
}

.ursache-zeile {
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 0.7rem;
}
.ursache-zeile:last-child { margin-bottom: 0; }
.ursache-zeile p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.ursache-tun {
  background: rgba(59, 130, 246, 0.07);
  border: 1px solid rgba(59, 130, 246, 0.16);
}
.ursache-tun p { color: var(--text-color); }
.ursache-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
}
.ursache-body a,
.messfehler-tun a {
  color: var(--primary-color);
  text-decoration: underline;
}
.ursache-body code,
.messfehler-tun code {
  font-size: 0.88em;
  padding: 0.1rem 0.35rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
}

/* ── Selbsttest-Box ───────────────────────────────────────── */
.testbox {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(15, 23, 42, 0.5) 100%);
}
.testbox > p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-color);
  margin-bottom: 1.75rem;
}
.testbox .btn-primary {
  display: inline-flex;
  justify-content: center;
}
.testbox-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .messfehler-panel { padding: 1.75rem 1.25rem; }
  .ursache-card { grid-template-columns: 1fr; padding: 1.5rem 1.25rem 1.25rem; }
  .ursache-nr { margin-bottom: 0.25rem; }
  .testbox { padding: 2rem 1.25rem; }
}
