/*
Theme Name: AnfragenHeld Marketing
Theme URI: https://anfragenheld.com
Author: Benesch Solutions GmbH
Author URI: https://anfragenheld.com
Description: Marketing-Landingpage für AnfragenHeld — KI-gestütztes Anfragen-Management für E-Mail & WhatsApp. Statisches WordPress-Theme mit vollem SEO, Schema.org, OG-Tags. Inhalt ist im Theme hartcodiert (keine Page-Bearbeitung im WP-Admin nötig).
Version: 1.1.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anfragenheld
Tags: marketing, landing-page, business, custom-colors
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; tab-size: 4; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #0A1438;
  line-height: 1.5;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font: inherit; }

:root {
  --brand: #1A4FD6;
  --brand-10: rgba(26, 79, 214, 0.10);
  --brand-15: rgba(26, 79, 214, 0.15);
  --brand-08: rgba(26, 79, 214, 0.08);
  --navy: #0A1438;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --green-500: #22c55e;
  --amber-400: #fbbf24;
  --red-400: #f87171;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section { padding: 3.5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
.section--sm { padding: 2.5rem 0; }
@media (min-width: 768px) { .section--sm { padding: 4rem 0; } }

.section--gray { background: var(--gray-50); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }

.eyebrow { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand); margin: 0 0 0.75rem; }
.h2 { font-size: 1.5rem; font-weight: 800; line-height: 1.2; color: var(--navy); margin: 0 0 1rem; }
@media (min-width: 640px) { .h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .h2 { font-size: 2.75rem; margin-bottom: 1.25rem; } }
.lead { font-size: 1rem; color: var(--gray-500); line-height: 1.65; max-width: 42rem; margin: 0 auto; }
@media (min-width: 768px) { .lead { font-size: 1.125rem; } }
.section-head { text-align: center; max-width: 48rem; margin: 0 auto 2.5rem; }
@media (min-width: 768px) { .section-head { margin-bottom: 4rem; } }

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--gray-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 768px) { .navbar__inner { height: 4.5rem; } }
.navbar__brand { display: flex; align-items: center; }
.navbar__logo { height: 2rem; width: auto; }
.navbar__links { display: none; }
@media (min-width: 768px) { .navbar__links { display: flex; align-items: center; gap: 2rem; } }
.navbar__link { font-size: 0.875rem; font-weight: 500; color: var(--gray-500); transition: color 0.2s; }
.navbar__link:hover { color: var(--navy); }
.navbar__cta { display: none; }
@media (min-width: 768px) { .navbar__cta { display: inline-flex; } }

/* "Zur App" Sekundär-Link in Desktop-Navbar */
.navbar__cta-group { display: none; }
@media (min-width: 768px) { .navbar__cta-group { display: inline-flex; align-items: center; gap: 1rem; } }
.navbar__app-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 600; color: var(--gray-700);
  padding: 0.5rem 0;
  transition: color 0.15s;
}
.navbar__app-link:hover { color: var(--brand); }
.navbar__app-arrow { width: 0.875rem; height: 0.875rem; transition: transform 0.15s; }
.navbar__app-link:hover .navbar__app-arrow { transform: translateX(2px); }

/* Mobile-Variante: "Zur App" zusätzlich vor dem Haupt-CTA */
.navbar__mobile-link--app {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--brand);
}
.navbar__mobile-link--app .navbar__app-arrow { width: 1rem; height: 1rem; }

.navbar__burger { display: inline-flex; flex-direction: column; gap: 0.25rem; background: none; border: 0; padding: 0.5rem; margin-right: -0.5rem; }
@media (min-width: 768px) { .navbar__burger { display: none; } }
.navbar__burger span { width: 1.25rem; height: 2px; background: var(--navy); border-radius: 999px; transition: transform 0.3s, opacity 0.3s; transform-origin: center; }
.navbar.is-open .navbar__burger span:nth-child(1) { transform: rotate(45deg) translateY(4.5px); }
.navbar.is-open .navbar__burger span:nth-child(2) { opacity: 0; transform: scale(0); }
.navbar.is-open .navbar__burger span:nth-child(3) { transform: rotate(-45deg) translateY(-4.5px); }

.navbar__mobile {
  position: absolute; left: 0; right: 0; top: 4rem;
  background: #fff; border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  opacity: 0; transform: translateY(-8px);
  pointer-events: none; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.25s;
}
.navbar.is-open .navbar__mobile {
  opacity: 1; transform: translateY(0);
  pointer-events: auto; visibility: visible;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}
.navbar__mobile-inner { display: flex; flex-direction: column; padding: 1rem 1.5rem; }
.navbar__mobile-link { padding: 0.875rem 0; font-size: 1rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--gray-100); }
.navbar__mobile-link:last-of-type { border-bottom: 0; }
.navbar__mobile .btn-primary { margin-top: 0.75rem; }
body.is-locked { overflow: hidden; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand); color: #fff;
  padding: 0.625rem 1.5rem; border-radius: 0.5rem;
  font-weight: 600; font-size: 0.875rem; line-height: 1;
  border: 0; text-decoration: none;
  box-shadow: 0 4px 6px rgba(26, 79, 214, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 16px rgba(26, 79, 214, 0.25); }
.btn-primary--lg { padding: 0.875rem 1.75rem; font-size: 1rem; border-radius: 0.75rem; }
@media (min-width: 640px) { .btn-primary--lg { padding: 1rem 2rem; font-size: 1.125rem; } }
.btn-primary--block { display: flex; width: 100%; }
.btn-text {
  display: inline-flex; align-items: center;
  font-weight: 600; font-size: 0.9375rem; color: var(--brand);
  transition: text-decoration 0.2s;
}
.btn-text:hover { text-decoration: underline; }
.btn-arrow { width: 1rem; height: 1rem; margin-left: 0.25rem; }
.btn-arrow--lg { width: 1.25rem; height: 1.25rem; margin-left: 0.5rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 6rem 0 3rem;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(239, 246, 255, 0.8), #ffffff 40%, #ffffff);
}
@media (min-width: 768px) { .hero { padding: 9rem 0 6rem; } }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--brand) 1px, transparent 1px);
  background-size: 32px 32px; opacity: 0.03;
}
.hero__inner { position: relative; z-index: 10; max-width: 64rem; margin: 0 auto; text-align: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  border: 1px solid #c7d2fe; background: #eff6ff; margin-bottom: 1.5rem;
}
.hero__badge-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: var(--green-500); animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.hero__badge-text { font-size: 0.875rem; font-weight: 500; color: var(--brand); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero__h1 { font-size: 2rem; font-weight: 800; line-height: 1.1; margin: 0 0 1.25rem; }
@media (min-width: 640px) { .hero__h1 { font-size: 3rem; } }
@media (min-width: 768px) { .hero__h1 { font-size: 3.75rem; margin-bottom: 1.5rem; } }
@media (min-width: 1024px) { .hero__h1 { font-size: 4rem; } }
.hero__h1-dark { color: var(--navy); }
.hero__h1-grad {
  background-image: linear-gradient(to right, #1A4FD6, #4F7AE8, #1A4FD6);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__sub { font-size: 1rem; color: var(--gray-500); max-width: 36rem; margin: 0 auto 1.5rem; line-height: 1.65; }
@media (min-width: 768px) { .hero__sub { font-size: 1.25rem; margin-bottom: 2rem; } }

.hero__checks {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.5rem 1rem; margin-bottom: 2rem;
  font-size: 0.75rem; color: var(--gray-600);
}
@media (min-width: 640px) { .hero__checks { gap: 0.5rem 1.5rem; font-size: 0.875rem; margin-bottom: 2.5rem; } }
.hero__check { display: inline-flex; align-items: center; gap: 0.375rem; }
.hero__check-icon { width: 1rem; height: 1rem; color: var(--green-500); flex-shrink: 0; }

.hero__ctas { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; }
@media (min-width: 640px) { .hero__ctas { flex-direction: row; } }

.hero__preview { margin: 2.5rem auto 0; max-width: 64rem; }
@media (min-width: 768px) { .hero__preview { margin-top: 4rem; } }
.hero__preview-frame {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 1rem; overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(10, 38, 80, 0.15);
}
.hero__preview-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; background: rgba(249, 250, 251, 0.8); border-bottom: 1px solid var(--gray-100); }
.hero__preview-dots { display: flex; gap: 0.375rem; }
.hero__preview-dots span { width: 0.75rem; height: 0.75rem; border-radius: 9999px; }
.hero__preview-dots span:nth-child(1) { background: var(--red-400); }
.hero__preview-dots span:nth-child(2) { background: var(--amber-400); }
.hero__preview-dots span:nth-child(3) { background: #4ade80; }
.hero__preview-url { flex: 1; display: flex; justify-content: center; }
.hero__preview-url span { padding: 0.25rem 1rem; background: #fff; border: 1px solid var(--gray-200); border-radius: 0.375rem; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.75rem; color: var(--gray-400); }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 42rem; margin: 0 auto; }
.stats__item { text-align: center; padding: 0 0.5rem; }
@media (min-width: 640px) { .stats__item { padding: 0 1rem; } }
.stats__item + .stats__item { border-left: 1px solid var(--gray-200); }
.stats__value { font-size: 1.125rem; font-weight: 800; color: var(--navy); font-variant-numeric: tabular-nums; }
@media (min-width: 640px) { .stats__value { font-size: 1.875rem; } }
@media (min-width: 768px) { .stats__value { font-size: 2.25rem; } }
.stats__label { font-size: 0.625rem; color: var(--gray-500); margin: 0.25rem 0 0; }
@media (min-width: 640px) { .stats__label { font-size: 0.875rem; } }

/* ============================================================
   CARD GRIDS (Problem)
   ============================================================ */
.cards { display: grid; grid-template-columns: 1fr; gap: 0.75rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 768px) { .cards { gap: 1.5rem; } }
.card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1rem;
  transition: border-color 0.2s;
  height: 100%;
}
@media (min-width: 640px) { .card { padding: 1.25rem; } }
@media (min-width: 768px) { .card { padding: 1.75rem; } }
.card:hover { border-color: var(--gray-200); }
.card__icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: var(--brand-10); color: var(--brand); display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
@media (min-width: 640px) { .card__icon { width: 3rem; height: 3rem; border-radius: 0.75rem; margin-bottom: 1.25rem; } }
.card__icon svg { width: 1.5rem; height: 1.5rem; }
.card__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 0.375rem; }
@media (min-width: 640px) { .card__title { font-size: 1.125rem; margin-bottom: 0.5rem; } }
.card__desc { color: var(--gray-500); line-height: 1.65; font-size: 0.8125rem; margin: 0; }
@media (min-width: 640px) { .card__desc { font-size: 0.9375rem; } }

/* ============================================================
   SOLUTION (TIMELINE)
   ============================================================ */
.timeline { max-width: 56rem; margin: 0 auto; }
.timeline__row { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; }
@media (min-width: 640px) { .timeline__row { gap: 1.25rem; margin-bottom: 1rem; } }
.timeline__row:last-child { margin-bottom: 0; }
.timeline__num-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline__num {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.75rem;
}
@media (min-width: 640px) { .timeline__num { width: 3rem; height: 3rem; border-radius: 0.75rem; font-size: 0.875rem; } }
.timeline__line { width: 2px; flex: 1; min-height: 1.25rem; background: var(--gray-200); margin-top: 0.375rem; }
@media (min-width: 640px) { .timeline__line { min-height: 2rem; margin-top: 0.5rem; } }
.timeline__row:last-child .timeline__line { display: none; }
.timeline__body {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 0.75rem;
  padding: 0.875rem;
  flex: 1;
  transition: border-color 0.2s;
}
@media (min-width: 640px) { .timeline__body { padding: 1.5rem; } }
.timeline__body:hover { border-color: #dbeafe; }
.timeline__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 0.25rem; }
@media (min-width: 640px) { .timeline__title { font-size: 1.125rem; } }
.timeline__desc { color: var(--gray-500); font-size: 0.8125rem; line-height: 1.65; margin: 0; }
@media (min-width: 640px) { .timeline__desc { font-size: 0.9375rem; } }

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc { max-width: 42rem; margin: 0 auto; background: #fff; border: 1px solid var(--gray-200); border-radius: 1rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); padding: 1.25rem; }
@media (min-width: 640px) { .calc { padding: 2rem; } }
@media (min-width: 768px) { .calc { padding: 2.5rem; } }
.calc__field { margin-bottom: 2rem; }
.calc__field:last-of-type { margin-bottom: 0; }
.calc__label-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.calc__label { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.calc__value { font-size: 0.875rem; font-weight: 700; color: var(--brand); }
.calc__range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 0.5rem; border-radius: 9999px;
  background: linear-gradient(to right, var(--brand) 0%, var(--brand) var(--p, 0%), var(--gray-200) var(--p, 0%));
  cursor: pointer;
}
.calc__range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 1.25rem; height: 1.25rem; border-radius: 9999px; background: var(--brand); border: 2px solid #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.15); cursor: pointer; }
.calc__range::-moz-range-thumb { width: 1.25rem; height: 1.25rem; border-radius: 9999px; background: var(--brand); border: 2px solid #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.15); cursor: pointer; }
.calc__range-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--gray-400); margin-top: 0.25rem; }
.calc__result { margin-top: 2rem; padding: 1rem; border-radius: 0.75rem; background: var(--brand-08); }
@media (min-width: 640px) { .calc__result { padding: 1.5rem; } }
.calc__result-label { font-size: 0.875rem; color: var(--gray-500); margin: 0 0 0.5rem; }
.calc__result-big { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; }
@media (min-width: 640px) { .calc__result-big { font-size: 1.875rem; } }
@media (min-width: 768px) { .calc__result-big { font-size: 2.25rem; } }
.calc__result-divider { border-top: 1px solid #dbeafe; padding-top: 1rem; margin-top: 1rem; }
.calc__result-savings { font-size: 1.125rem; font-weight: 700; color: var(--brand); margin: 0.5rem 0 0; }
.calc__result-note { font-size: 0.75rem; color: var(--gray-400); margin: 0.5rem 0 0; }
.calc__cta { text-align: center; margin-top: 1.5rem; }

/* ============================================================
   PROCESS (CARDS)
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 640px) { .process { gap: 1.5rem; } }
@media (min-width: 1024px) { .process { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative; background: #fff; border: 1px solid var(--gray-100);
  border-radius: 1rem; padding: 1rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s; height: 100%; display: flex; flex-direction: column;
}
@media (min-width: 640px) { .step { padding: 1.75rem; } }
.step:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.08); }
.step__time { display: inline-block; font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; background: var(--brand-10); color: var(--brand); padding: 0.25rem 0.625rem; border-radius: 9999px; margin-bottom: 0.75rem; }
@media (min-width: 640px) { .step__time { font-size: 0.75rem; margin-bottom: 1rem; } }
.step__num { font-size: 1.875rem; font-weight: 800; color: var(--brand-15); margin-bottom: 0.5rem; }
@media (min-width: 640px) { .step__num { font-size: 2.25rem; margin-bottom: 0.75rem; } }
.step__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 0.375rem; }
@media (min-width: 640px) { .step__title { font-size: 1.125rem; margin-bottom: 0.5rem; } }
.step__desc { color: var(--gray-500); font-size: 0.8125rem; line-height: 1.65; margin: 0; flex: 1; }
@media (min-width: 640px) { .step__desc { font-size: 0.9375rem; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1rem; }
.reviews-stars { display: flex; }
.reviews-star { width: 1.25rem; height: 1.25rem; color: var(--amber-400); }
.reviews-score { font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.reviews-count { font-size: 0.875rem; color: var(--gray-400); }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 1rem; padding: 1rem; display: flex; flex-direction: column; height: 100%; transition: border-color 0.2s; }
@media (min-width: 640px) { .review { padding: 1.5rem; } }
.review:hover { border-color: var(--gray-200); }
.review__stars { display: flex; margin-bottom: 0.625rem; }
.review__star { width: 0.875rem; height: 0.875rem; color: var(--amber-400); }
.review__star--off { color: var(--gray-200); }
.review__text { color: var(--gray-600); font-size: 0.8125rem; line-height: 1.65; flex: 1; margin: 0 0 0.875rem; }
@media (min-width: 640px) { .review__text { font-size: 0.875rem; } }
.review__author { display: flex; align-items: center; gap: 0.625rem; padding-top: 0.75rem; border-top: 1px solid var(--gray-100); }
.review__avatar { width: 2rem; height: 2rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 2px rgba(0,0,0,0.1); color: rgba(255,255,255,0.9); }
.review__avatar svg { width: 1rem; height: 1rem; }
.review__name { font-size: 0.875rem; font-weight: 600; color: var(--navy); margin: 0; }
.review__role { font-size: 0.6875rem; color: var(--gray-400); margin: 0; }

.review--hidden { display: none; }
.reviews-grid.is-expanded .review--hidden { display: flex; }
.reviews-toggle-wrap { text-align: center; margin-top: 2rem; }
.reviews-toggle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.5rem; border-radius: 0.75rem; border: 1px solid var(--gray-200);
  font-size: 0.875rem; font-weight: 600; color: var(--navy);
  background: #fff; transition: border-color 0.2s, background 0.2s;
}
.reviews-toggle:hover { border-color: var(--gray-300); background: var(--gray-50); }
.reviews-toggle svg { width: 1rem; height: 1rem; transition: transform 0.3s; }
.reviews-grid.is-expanded ~ .reviews-toggle-wrap .reviews-toggle svg { transform: rotate(180deg); }

/* Gradient avatars (9 colors, cycled) */
.av-g-0 { background-image: linear-gradient(to bottom right, #3b82f6, #4f46e5); }
.av-g-1 { background-image: linear-gradient(to bottom right, #34d399, #0d9488); }
.av-g-2 { background-image: linear-gradient(to bottom right, #8b5cf6, #7c3aed); }
.av-g-3 { background-image: linear-gradient(to bottom right, #fb7185, #db2777); }
.av-g-4 { background-image: linear-gradient(to bottom right, #fbbf24, #f97316); }
.av-g-5 { background-image: linear-gradient(to bottom right, #22d3ee, #3b82f6); }
.av-g-6 { background-image: linear-gradient(to bottom right, #e879f9, #a855f7); }
.av-g-7 { background-image: linear-gradient(to bottom right, #a3e635, #10b981); }
.av-g-8 { background-image: linear-gradient(to bottom right, #38bdf8, #2563eb); }

/* ============================================================
   FAQ — Custom Accordion mit smooth height-animation
   ============================================================ */
.faq { max-width: 48rem; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--gray-200); border-radius: 0.75rem; overflow: hidden; margin-bottom: 0.75rem; transition: border-color 0.2s; }
.faq__item.is-open { border-color: var(--brand); }
.faq__summary {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: 0; width: 100%;
  cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.125rem 1.25rem; font-size: 1rem; font-weight: 600; color: var(--navy);
  transition: background 0.15s;
}
.faq__summary:hover { background: var(--gray-50); }
.faq__summary:focus-visible { outline: 2px solid var(--brand); outline-offset: -2px; }
.faq__q { flex: 1; }
.faq__chev { flex-shrink: 0; color: var(--gray-400); transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s; }
.faq__item.is-open .faq__chev { transform: rotate(180deg); color: var(--brand); }
.faq__panel { height: 0; overflow: hidden; transition: height 0.32s cubic-bezier(0.22, 1, 0.36, 1); }
.faq__item.is-open .faq__panel { /* JS setzt height inline */ }
.faq__answer { padding: 0 1.25rem 1.25rem; color: var(--gray-500); line-height: 1.7; font-size: 0.9375rem; margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq__panel, .faq__chev { transition: none; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact { max-width: 80rem; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .contact { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.contact__h2 { font-size: 1.5rem; font-weight: 800; line-height: 1.2; color: var(--navy); margin: 0 0 1rem; }
@media (min-width: 640px) { .contact__h2 { font-size: 2.25rem; margin-bottom: 1.25rem; } }
.contact__sub { font-size: 1.125rem; color: var(--gray-500); line-height: 1.65; margin: 0 0 2rem; }
.contact__points { display: flex; flex-direction: column; gap: 1rem; }
.contact__point { display: flex; align-items: center; gap: 0.75rem; }
.contact__point-icon { width: 1.5rem; height: 1.5rem; border-radius: 9999px; background: var(--brand-15); color: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__point-icon svg { width: 0.875rem; height: 0.875rem; }
.contact__point-text { color: var(--gray-600); font-size: 0.9375rem; }

.form-card { background: var(--gray-50); border-radius: 1rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08); border: 1px solid var(--gray-200); padding: 1.25rem; }
@media (min-width: 640px) { .form-card { padding: 2rem; } }
.form-card__title { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin: 0 0 0.25rem; }
.form-card__sub { color: var(--gray-400); font-size: 0.875rem; margin: 0 0 1.5rem; }
.form-field { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 0.375rem; }
.form-input, .form-select {
  width: 100%; height: 3rem; padding: 0 1rem;
  border-radius: 0.5rem; border: 1px solid var(--gray-200); background: #fff;
  color: var(--navy); transition: border-color 0.2s, box-shadow 0.2s;
}
.form-select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem; padding-right: 2.5rem; }
.form-input::placeholder { color: var(--gray-400); }
.form-input:focus, .form-select:focus { outline: 0; border-color: transparent; box-shadow: 0 0 0 2px var(--brand-15); }
.form-error { background: #fef2f2; border: 1px solid #fecaca; border-radius: 0.5rem; padding: 0.75rem; font-size: 0.875rem; color: #b91c1c; margin-bottom: 1rem; }
.form-error:empty { display: none; }
.form-submit { margin-top: 0.5rem; }
.form-note { font-size: 0.75rem; color: var(--gray-400); text-align: center; margin: 0.5rem 0 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 2.5rem 0; background: #fff; border-top: 1px solid var(--gray-100); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .footer__inner { flex-direction: row; justify-content: space-between; gap: 1.5rem; } }
.footer__logo { height: 1.75rem; }
.footer__links { display: flex; align-items: center; gap: 1.5rem; font-size: 0.875rem; color: var(--gray-400); }
.footer__link { transition: color 0.2s; }
.footer__link:hover { color: var(--gray-600); }
.footer__copy { font-size: 0.875rem; color: #d1d5db; }

/* Visually-hidden helper for a11y */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ============================================================ */
.container--narrow { max-width: 48rem; }
.legal { padding: 5rem 0 3rem; background: linear-gradient(to bottom, #f8fafc, #fff); min-height: calc(100vh - 4rem); }
.legal__eyebrow { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); margin: 0 0 0.5rem; }
.legal__h1 { font-size: 1.875rem; font-weight: 800; color: var(--navy); line-height: 1.15; margin: 0 0 0.5rem; }
@media (min-width: 640px) { .legal__h1 { font-size: 2.25rem; } }
.legal__meta { color: var(--gray-400); font-size: 0.875rem; margin: 0 0 2rem; }
.legal__h2 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin: 0 0 0.75rem; }
.legal__h3 { font-size: 0.9375rem; font-weight: 700; color: var(--navy); margin: 1.25rem 0 0.5rem; }
.legal__section { background: #fff; border: 1px solid var(--gray-100); border-radius: 1rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04); padding: 1.25rem; margin-bottom: 1.25rem; color: var(--gray-600); line-height: 1.7; font-size: 0.9375rem; }
@media (min-width: 640px) { .legal__section { padding: 1.75rem; margin-bottom: 1.5rem; } }
.legal__section p { margin: 0 0 0.875rem; }
.legal__section p:last-child { margin-bottom: 0; }
.legal__link { color: var(--brand); }
.legal__link:hover { text-decoration: underline; }
.legal__toc { background: #fff; border: 1px solid var(--gray-100); border-radius: 1rem; padding: 1.25rem; margin-bottom: 2rem; }
.legal__toc-title { font-size: 0.75rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 0.75rem; }
.legal__toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; display: grid; grid-template-columns: 1fr; gap: 0.25rem; }
@media (min-width: 640px) { .legal__toc ol { grid-template-columns: 1fr 1fr; } }
.legal__toc li { counter-increment: toc; }
.legal__toc a { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0.75rem; border-radius: 0.5rem; color: var(--gray-600); font-size: 0.875rem; font-weight: 500; transition: background 0.15s, color 0.15s; }
.legal__toc a::before { content: counter(toc, decimal-leading-zero); display: inline-flex; align-items: center; justify-content: center; width: 1.75rem; height: 1.75rem; background: var(--brand-08); color: var(--brand); border-radius: 0.5rem; font-size: 0.6875rem; font-weight: 700; flex-shrink: 0; }
.legal__toc a:hover { background: var(--gray-50); color: var(--navy); }
.legal__box { background: var(--gray-50); border-radius: 0.75rem; padding: 1rem; margin: 0 0 1rem; }
.legal__box p { margin: 0 0 0.5rem; }
.legal__box p:last-child { margin-bottom: 0; }
.legal__box-label { font-size: 0.6875rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.075em; margin: 0 0 0.375rem; }
.legal__alert { background: #fffbeb; border: 1px solid #fde68a; border-radius: 0.75rem; padding: 1rem; }
.legal__alert p { margin: 0; color: #475569; }
.legal__chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.375rem; margin: 0.5rem 0 1rem; }
.legal__chips li { font-size: 0.75rem; color: var(--gray-600); background: var(--gray-50); border: 1px solid var(--gray-100); padding: 0.25rem 0.625rem; border-radius: 0.5rem; }
.legal__table { width: 100%; border-collapse: collapse; margin: 0 0 1rem; font-size: 0.875rem; }
.legal__table th, .legal__table td { text-align: left; padding: 0.75rem; border-bottom: 1px solid var(--gray-100); vertical-align: top; }
.legal__table th { font-weight: 700; color: var(--navy); background: var(--gray-50); font-size: 0.8125rem; }
.legal__table tr:last-child td { border-bottom: 0; }
.legal__rights { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
@media (min-width: 640px) { .legal__rights { grid-template-columns: 1fr 1fr; } }
.legal__rights li { background: var(--gray-50); border-radius: 0.5rem; padding: 0.625rem 0.875rem; font-size: 0.875rem; color: var(--gray-600); }
.legal__rights li strong { color: var(--navy); font-weight: 600; }
.legal__updated { text-align: center; color: var(--gray-400); font-size: 0.75rem; margin: 2rem 0 0; }
.hide-mobile { }
@media (max-width: 639px) { .hide-mobile { display: none !important; } }

/* ============================================================
   CHANNELS / KANÄLE
   ============================================================ */
.channels__group-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin: 0 0 1rem;
}
.channels__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 64rem;
  margin: 0 auto 2.25rem;
}
.channel {
  flex: 1 1 220px;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.channel:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(10, 38, 80, 0.10);
  border-color: var(--gray-300);
}
.channel--soon { border-style: dashed; background: var(--gray-50); }
.channel__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.channel__icon svg { width: 1.6rem; height: 1.6rem; }
.channel__icon--mail { background: var(--brand-10); color: var(--brand); }
.channel__icon--whatsapp { background: rgba(37, 211, 102, 0.14); color: #1faa55; }
.channel__icon--facebook { background: rgba(24, 119, 242, 0.12); color: #1877F2; }
.channel__icon--instagram {
  background: linear-gradient(45deg, #feda75, #d62976 45%, #962fbf 80%, #4f5bd5);
  color: #fff;
}
.channel__wordmark {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.channel__logo {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.wm-immoscout { color: #FF4D3C; }
.wm-autoscout { color: var(--navy); }
.wm-24 { border-radius: 0.3rem; padding: 0 0.28rem; margin-left: 0.08rem; }
.wm-24--immo { background: #FF4D3C; color: #fff; }
.wm-24--auto { background: #F5C800; color: var(--navy); }
.channel__name { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0; }
.channel__desc { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.55; margin: 0.25rem 0 0; }
.channel__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-top: auto;
}
.channel__pill--live { background: rgba(34, 197, 94, 0.14); color: #15803d; }
.channel__pill--detect { background: var(--brand-10); color: var(--brand); }
.channel__pill--soon { background: var(--gray-100); color: var(--gray-500); }
.channel__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--green-500);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.channels__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  max-width: 48rem;
  margin: 0.5rem auto 0;
}
.channels__flow-step {
  display: inline-flex;
  align-items: center;
  background: var(--brand-08);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
}
.channels__flow-arrow { color: var(--brand); flex-shrink: 0; }

/* Hero-Kanal-Leiste (Chips) */
.hero__channels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.75rem;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  box-shadow: 0 1px 2px rgba(10, 38, 80, 0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.hero__chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(10, 38, 80, 0.10);
  border-color: var(--gray-300);
}
.hero__chip-ic { display: inline-flex; }
.hero__chip-ic svg { width: 1rem; height: 1rem; display: block; }
.hero__chip-ic--mail { color: var(--brand); }
.hero__chip-ic--wa { color: #1faa55; }
.hero__chip--plat { font-size: 1rem; }
.hero__chip-soon { font-size: 0.8125rem; font-weight: 500; color: var(--gray-400); padding: 0 0.25rem; }

