/* ═══════════════════════════════════════════════════════════════
   autoverkaufen-24.de — Clean Premium Design
   System fonts only. No external dependencies.
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
  /* Neutral palette */
  --ink:      #0d1117;
  --ink-2:    #1f2937;
  --ink-3:    #374151;
  --muted:    #6b7280;
  --muted-2:  #9ca3af;

  /* Brand */
  --red:      #b91c1c;
  --red-h:    #991b1b;
  --red-s:    #fee2e2;
  --red-glow: rgba(185,28,28,.12);

  /* Navy (header/hero) */
  --navy:     #0b1527;
  --navy-2:   #162035;
  --navy-3:   #1e3050;

  /* Surfaces */
  --bg:       #f9fafb;
  --surface:  #ffffff;
  --raised:   #ffffff;
  --border:   #e5e7eb;
  --border-s: #f3f4f6;

  /* Shadows — minimal, refined */
  --s1: 0 1px 2px rgba(0,0,0,.05);
  --s2: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --s3: 0 4px 12px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.04);
  --s4: 0 8px 24px rgba(0,0,0,.09), 0 3px 8px rgba(0,0,0,.05);
  --s5: 0 20px 48px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.06);

  --r-s:  6px;
  --r:    10px;
  --r-l:  16px;
  --r-xl: 24px;
  --pill: 999px;

  /* System font — beautiful on every OS, no download */
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI Variable', 'Segoe UI',
          'Helvetica Neue', Arial, sans-serif;

  --t: .18s ease;
  --header-h: 64px;
  --max: 1200px;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--ink); background: var(--bg);
       line-height: 1.6; -webkit-font-smoothing: antialiased;
       -moz-osx-font-smoothing: grayscale; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
textarea { resize: vertical; }

/* ── Utilities ──────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 4rem 0; }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden;
              clip: rect(0,0,0,0); border: 0; }
.text-muted { color: var(--muted); }

/* ── SVG Icon base ──────────────────────────────────────────────── */
.icon {
  display: inline-block; width: 1.35rem; height: 1.35rem;
  vertical-align: middle; flex-shrink: 0;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ── Section Headers ────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 2.75rem; }
.section-label {
  display: inline-block;
  background: var(--red-s); color: var(--red);
  padding: .3rem .9rem; border-radius: var(--pill);
  font-size: .71rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: .875rem;
}
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.2;
  color: var(--ink); margin-bottom: .625rem;
}
.section-subtitle {
  color: var(--muted); font-size: 1rem; max-width: 500px;
  margin: 0 auto; line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .65rem 1.35rem; border-radius: var(--r); font-weight: 600;
  font-size: .875rem; line-height: 1; transition: all var(--t);
  text-decoration: none; white-space: nowrap; border: 1.5px solid transparent;
  cursor: pointer;
}
.btn--primary   { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-h); border-color: var(--red-h); color: #fff; text-decoration: none; }

.btn--outline   { background: transparent; color: var(--red); border-color: var(--red); }
.btn--outline:hover { background: var(--red); color: #fff; text-decoration: none; }

.btn--outline-white { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-white:hover { background: rgba(255,255,255,.2); text-decoration: none; color: #fff; }

.btn--white { background: #fff; color: var(--red); border-color: #fff; }
.btn--white:hover { background: var(--red-s); text-decoration: none; color: var(--red); }

.btn--ghost { background: transparent; color: var(--muted); border-color: var(--border); }
.btn--ghost:hover { background: var(--bg); color: var(--ink); text-decoration: none; }

.btn--danger { background: #dc2626; color: #fff; border-color: #dc2626; }
.btn--danger:hover { background: #b91c1c; text-decoration: none; color: #fff; }

.btn--sm  { padding: .4rem .8rem; font-size: .78rem; border-radius: var(--r-s); }
.btn--lg  { padding: .85rem 1.85rem; font-size: .95rem; }
.btn--block { width: 100%; display: flex; }
.btn--submit { font-size: .95rem; padding: .9rem 2rem; }

/* ── Tags & Badges ──────────────────────────────────────────────── */
.tag { display: inline-block; background: var(--border-s); color: var(--ink-3);
       padding: .2rem .6rem; border-radius: var(--pill); font-size: .75rem;
       font-weight: 500; border: 1px solid var(--border); }
.tag--sm { font-size: .7rem; padding: .16rem .5rem; }
.tag--xs { font-size: .65rem; padding: .12rem .4rem; }
.plz-badge { display: inline-block; background: #dbeafe; color: #1d4ed8;
             padding: .1rem .42rem; border-radius: var(--r-s);
             font-size: .69rem; font-weight: 700; letter-spacing: .01em; }

/* ── Stars ──────────────────────────────────────────────────────── */
.star, .star--on  { color: #d97706; }
.star--filled     { color: #d97706; }
.star--off        { color: #d1d5db; }

/* ── Alerts ─────────────────────────────────────────────────────── */
.alert { padding: .8rem 1.1rem; border-radius: var(--r); font-weight: 500; margin-bottom: 1rem; }
.alert--success { background: #dcfce7; color: #15803d; border-left: 3px solid #16a34a; }
.alert--error   { background: var(--red-s); color: #991b1b; border-left: 3px solid var(--red); }

/* ══════════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
  height: var(--header-h);
}
.header-inner { height: var(--header-h); display: flex; align-items: center;
                justify-content: space-between; gap: 1rem; }
.logo { display: flex; align-items: center; gap: .55rem; color: #fff;
        font-weight: 700; font-size: 1.05rem; text-decoration: none;
        letter-spacing: -.015em; }
.logo:hover { text-decoration: none; opacity: .9; }
.logo-badge {
  width: 2rem; height: 2rem; flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(185,28,28,.35));
  transition: transform var(--t), filter var(--t);
}
.logo:hover .logo-badge {
  transform: rotate(-6deg) scale(1.08);
  filter: drop-shadow(0 2px 6px rgba(185,28,28,.5));
}
.logo-text   { font-weight: 800; }
.logo-accent { color: var(--red); }
.logo--footer { color: var(--muted); }

.nav-toggle { display: flex; flex-direction: column; gap: 4px; padding: .45rem;
              border-radius: var(--r-s); background: rgba(255,255,255,.08); border: none; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: #fff;
                   border-radius: 2px; transition: var(--t); }
.main-nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
            background: var(--navy-2); padding: .875rem;
            border-bottom: 1px solid rgba(255,255,255,.06); }
.main-nav.open { display: block; }
.nav-list { display: flex; flex-direction: column; gap: .15rem; }
.nav-link { display: block; padding: .6rem .875rem; color: rgba(255,255,255,.72);
            border-radius: var(--r-s); font-weight: 500; font-size: .875rem;
            text-decoration: none; transition: var(--t); }
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,.09); color: #fff; text-decoration: none; }
.nav-link--cta { background: var(--red); color: #fff !important; text-align: center;
                 margin-top: .5rem; border-radius: var(--r); }
.nav-link--cta:hover { background: var(--red-h); }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .main-nav   { display: block !important; position: static; background: none; padding: 0; border: none; }
  .nav-list   { flex-direction: row; align-items: center; gap: .2rem; }
  .nav-link--cta { margin-top: 0; padding: .5rem 1rem; }
}

/* ══════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  padding: 5rem 0 5.5rem; position: relative; overflow: hidden;
}
/* Subtle grid overlay for premium depth */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
/* Hero mit hochgeladenem Bild */
.hero--has-image {
  background:
    linear-gradient(160deg,
      rgba(11,21,39,.88) 0%,
      rgba(22,32,53,.82) 55%,
      rgba(30,48,80,.78) 100%),
    var(--hero-bg) center/cover no-repeat;
}
.hero--has-image::before { display: none; }

/* Upload-Placeholder in Einstellungen */
.hero-upload-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .6rem; padding: 2rem; background: var(--bg);
  border: 2px dashed var(--border); border-radius: var(--r-l);
  text-align: center; margin-bottom: 1.25rem; color: var(--muted);
}
.hero-upload-placeholder p { font-size: .875rem; margin: 0; line-height: 1.6; }
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,28,28,.5), transparent);
}
.hero-content { text-align: center; max-width: 740px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(185,28,28,.15); color: #fca5a5;
  border: 1px solid rgba(185,28,28,.3);
  padding: .35rem 1rem; border-radius: var(--pill);
  font-size: .75rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  letter-spacing: -.035em; margin-bottom: 1.25rem;
}
.hero-title-accent { color: var(--red); }
.hero-subtitle {
  font-size: clamp(.95rem, 2.2vw, 1.125rem);
  color: rgba(255,255,255,.6); margin: 0 auto 2.5rem;
  max-width: 520px; line-height: 1.75; font-weight: 400;
}
.hero-search { margin-bottom: 2.5rem; }
.hero-search-inner {
  display: flex; flex-direction: column; gap: .625rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-l); padding: .75rem;
}
.search-field { position: relative; flex: 1; }
.search-field input {
  width: 100%; padding: .85rem 1rem .85rem 2.75rem;
  border-radius: var(--r); border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.9); font-size: .95rem; color: var(--ink);
  font-weight: 500; transition: all var(--t);
}
.search-field input:focus { outline: none; border-color: var(--red); background: #fff; }
.search-icon { position: absolute; left: .85rem; top: 50%; transform: translateY(-50%);
               pointer-events: none; color: var(--muted); display: flex; align-items: center; }
.search-icon .icon { width: 1.1rem; height: 1.1rem; }
.hero-trust { display: flex; justify-content: center; align-items: center;
              gap: 2rem; flex-wrap: wrap; }
.trust-item  { text-align: center; }
.trust-num   { display: block; font-size: 1.6rem; font-weight: 800; color: #fff;
               line-height: 1; letter-spacing: -.03em; }
.trust-label { display: block; font-size: .72rem; color: rgba(255,255,255,.45);
               margin-top: .2rem; text-transform: uppercase; letter-spacing: .06em; }
.trust-divider { width: 1px; height: 2.5rem; background: rgba(255,255,255,.12); }

@media (min-width: 640px) {
  .hero { padding: 6.5rem 0 7rem; }
  .hero-search-inner { flex-direction: row; }
}

/* ── USPs ───────────────────────────────────────────────────────── */
.usps { background: var(--surface); border-bottom: 1px solid var(--border); }
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; }
.usp-card { text-align: center; padding: 2rem 1.25rem;
            border-right: 1px solid var(--border); transition: background var(--t); }
.usp-card:nth-child(2n) { border-right: none; }
@media (min-width: 768px) {
  .usp-grid { grid-template-columns: repeat(4,1fr); }
  .usp-card:nth-child(2n) { border-right: 1px solid var(--border); }
  .usp-card:last-child { border-right: none; }
}
.usp-icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: var(--r);
  background: var(--red-s); color: var(--red);
  font-size: 1.35rem; margin-bottom: .875rem;
}
.usp-card h3 { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; letter-spacing: -.01em; }
.usp-card p  { font-size: .81rem; color: var(--muted); line-height: 1.55; }

/* ── How It Works ───────────────────────────────────────────────── */
.how-it-works { background: var(--bg); }
.steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.75rem; }
.step {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--surface); border-radius: var(--r-l); padding: 1.5rem;
  border: 1px solid var(--border); transition: box-shadow var(--t);
}
.step:hover { box-shadow: var(--s3); }
.step-number {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--red); color: #fff; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 1rem;
}
.step-content h3 { font-weight: 700; margin-bottom: .3rem; font-size: .9rem; letter-spacing: -.01em; }
.step-content p  { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.step-arrow { display: none; color: var(--muted-2); font-size: 1.1rem; flex-shrink: 0; }
.how-cta { display: flex; flex-wrap: wrap; gap: .875rem; justify-content: center; }
@media (min-width: 768px) {
  .steps     { flex-direction: row; align-items: center; }
  .step      { flex: 1; flex-direction: column; text-align: center; align-items: center; }
  .step-arrow { display: block; margin-top: 1.75rem; }
}

/* ── Anbieter Cards ─────────────────────────────────────────────── */
.featured-section { background: var(--bg); }
.anbieter-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
@media (min-width: 640px)  { .anbieter-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .anbieter-grid { grid-template-columns: repeat(3,1fr); } }

.anbieter-card {
  background: var(--surface); border-radius: var(--r-l); padding: 1.5rem;
  box-shadow: var(--s2); border: 1px solid var(--border);
  transition: box-shadow var(--t), transform var(--t); position: relative; overflow: hidden;
}
.anbieter-card:hover { box-shadow: var(--s4); transform: translateY(-2px); }
.anbieter-card--featured { border-color: #fcd34d; }
.card-badge {
  position: absolute; top: 0; right: 0;
  background: #fef3c7; color: #92400e;
  padding: .22rem .7rem; font-size: .69rem; font-weight: 700;
  border-bottom-left-radius: var(--r);
}
.card-plz {
  display: inline-block; background: #dbeafe; color: #1d4ed8;
  padding: .1rem .4rem; border-radius: var(--r-s); font-size: .67rem; font-weight: 700;
  margin-left: .35rem;
}
.card-header { display: flex; gap: .875rem; align-items: flex-start; margin-bottom: .875rem; }
.card-avatar {
  flex-shrink: 0; width: 3rem; height: 3rem; border-radius: var(--r);
  background: var(--navy-2); display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.2rem;
}
.card-avatar--img { background: var(--surface); padding: 4px; border: 1px solid var(--border); }
.card-avatar--img img, .list-avatar--img img, .detail-avatar--img img, .related-avatar--img img {
  display: block; width: 100%; height: 100%; object-fit: contain;
  border-radius: calc(var(--r) - 4px);
}
.card-name { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; letter-spacing: -.01em; }
.card-name a { color: var(--ink); }
.card-name a:hover { color: var(--red); text-decoration: none; }
.card-location { font-size: .78rem; color: var(--muted); }
.card-rating { display: flex; align-items: center; gap: .375rem; margin-bottom: .7rem; }
.stars { display: flex; gap: 1px; }
.rating-value { font-weight: 700; font-size: .83rem; }
.rating-count { font-size: .76rem; color: var(--muted); }
.card-desc { font-size: .83rem; color: var(--ink-3); margin-bottom: .875rem; line-height: 1.6; }
.card-tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: 1rem; }
.card-footer { display: flex; gap: .5rem; flex-wrap: wrap; }
.section-cta { text-align: center; }

/* ── Testimonials ───────────────────────────────────────────────── */
.trust-section { background: var(--surface); border-top: 1px solid var(--border); }
.testimonials-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }
.testimonial {
  background: var(--surface); border-radius: var(--r-l); padding: 1.75rem;
  border: 1px solid var(--border); border-top: 3px solid var(--red);
  box-shadow: var(--s2); position: relative; overflow: hidden;
}
.testimonial::before {
  content: '\201C'; position: absolute; top: .5rem; right: 1.25rem;
  font-size: 5rem; line-height: 1; color: var(--red-s);
  font-family: Georgia, serif; pointer-events: none;
}
.testimonial-stars { color: #d97706; font-size: .9rem; margin-bottom: .75rem; letter-spacing: 2px; }
.testimonial-text  { font-style: italic; color: var(--ink-3); margin-bottom: 1rem;
                     font-size: .875rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; flex-shrink: 0;
  background: var(--navy-2); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-author strong { font-size: .875rem; font-weight: 700; }
.testimonial-author small  { color: var(--muted); font-size: .75rem; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-section { background: var(--bg); }
.faq-container { max-width: 700px; }
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item { background: var(--surface); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; }
.faq-question { padding: 1rem 1.25rem; font-weight: 600; font-size: .875rem; cursor: pointer;
                display: flex; justify-content: space-between; align-items: center;
                list-style: none; user-select: none; color: var(--ink); }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.25rem; font-weight: 300; color: var(--red);
                        flex-shrink: 0; margin-left: 1rem; transition: transform var(--t); }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-item[open] .faq-question { color: var(--red); }
.faq-answer { padding: 0 1.25rem 1rem; color: var(--ink-3); font-size: .875rem; line-height: 1.7; }

/* ── CTA Banner ─────────────────────────────────────────────────── */
.cta-banner { background: var(--navy); position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--red);
}
.cta-inner { display: flex; flex-direction: column; align-items: center; text-align: center;
             gap: 1.75rem; padding: 3.5rem 0; }
.cta-text h2 { color: #fff; font-size: clamp(1.25rem,3vw,1.75rem); font-weight: 700;
               letter-spacing: -.025em; margin-bottom: .5rem; }
.cta-text p  { color: rgba(255,255,255,.6); font-size: .95rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
@media (min-width: 768px) {
  .cta-inner { flex-direction: row; justify-content: space-between; text-align: left; padding: 3rem 0; }
  .cta-actions { flex-shrink: 0; }
}

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.5); padding: 3.5rem 0 1.75rem;
               border-top: 3px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: .875rem; }
.footer-tagline { font-size: .85rem; line-height: 1.65; max-width: 270px; }
.footer-phone { color: #fff; font-weight: 700; font-size: 1.1rem; }
.footer-phone:hover { color: var(--red); text-decoration: none; }
.footer-hours { font-size: .76rem; }
.footer-heading { color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 700;
                  margin-bottom: .875rem; text-transform: uppercase; letter-spacing: .09em; }
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a  { color: rgba(255,255,255,.5); font-size: .85rem; transition: color var(--t); }
.footer-nav a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.25rem; text-align: center; }
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,.3); margin-bottom: .2rem; }
.footer-legal-links { display: flex; align-items: center; justify-content: center; gap: .5rem;
                       margin-bottom: .75rem; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,.55); font-size: .78rem; font-weight: 500; transition: color var(--t); }
.footer-legal-links a:hover { color: #fff; text-decoration: none; }
.footer-legal-sep { color: rgba(255,255,255,.2); font-size: .75rem; }

/* ══════════════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .5rem 1.25rem;
}
.trust-bar-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600; color: var(--ink-3);
}
.trust-bar-icon { width: 1.1rem; height: 1.1rem; }
.trust-bar-item--green { color: #15803d; }
.trust-bar-item--blue  { color: #1d4ed8; }
.trust-bar-item--red   { color: var(--red); }
.trust-bar-sep  { width: 1px; height: 1.1rem; background: var(--border); }
@media (max-width: 479px) { .trust-bar-sep { display: none; } }

/* ══════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--navy);
  border-top: 3px solid var(--red);
  padding: 1.1rem 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: none; }
.cookie-inner {
  display: flex; align-items: center; gap: 1.25rem;
  flex-wrap: wrap; justify-content: space-between;
}
.cookie-text { color: rgba(255,255,255,.8); font-size: .83rem; line-height: 1.6; flex: 1; min-width: 200px; }
.cookie-text a { color: #fca5a5; font-weight: 600; }
.cookie-text a:hover { color: #fff; text-decoration: none; }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  padding: .5rem 1.1rem; border-radius: var(--r); font-size: .82rem;
  font-weight: 700; cursor: pointer; border: 1.5px solid transparent; transition: all var(--t);
}
.cookie-btn--accept { background: var(--red); color: #fff; border-color: var(--red); }
.cookie-btn--accept:hover { background: var(--red-h); border-color: var(--red-h); }
.cookie-btn--decline { background: transparent; color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.2); }
.cookie-btn--decline:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════════════════════════════════
   LEGAL PAGES (Datenschutz / Impressum / AGB)
   ══════════════════════════════════════════════════════════════════ */
.legal-section { padding: 3rem 0 5rem; }
.legal-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: 860px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.2rem; font-weight: 700; margin: 2rem 0 .75rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--border-s);
  letter-spacing: -.02em; color: var(--ink-2);
}
.legal-content h3 {
  font-size: 1rem; font-weight: 700; margin: 1.25rem 0 .5rem; color: var(--ink-2);
}
.legal-content p  { color: var(--ink-3); line-height: 1.8; margin-bottom: .875rem; font-size: .9rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: .875rem; }
.legal-content ul li { color: var(--ink-3); font-size: .9rem; line-height: 1.7; list-style: disc; margin-bottom: .2rem; }
.legal-content a  { color: var(--red); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }
.legal-box {
  background: var(--surface); border-radius: var(--r-l); padding: 1.5rem 2rem;
  border: 1px solid var(--border); box-shadow: var(--s2);
}
.legal-toc { background: var(--bg); border-radius: var(--r); padding: 1.25rem 1.5rem;
             border: 1px solid var(--border); margin-bottom: 2rem; }
.legal-toc h3 { font-size: .8rem; font-weight: 700; text-transform: uppercase;
                letter-spacing: .08em; color: var(--muted); margin-bottom: .75rem; }
.legal-toc ol  { padding-left: 1.25rem; }
.legal-toc ol li { font-size: .875rem; margin-bottom: .35rem; list-style: decimal; }
.legal-toc ol li a { color: var(--ink-3); font-weight: 500; }
.legal-toc ol li a:hover { color: var(--red); }
.legal-last-updated {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #dbeafe; color: #1e40af; padding: .3rem .9rem;
  border-radius: var(--pill); font-size: .75rem; font-weight: 700; margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════════════════ */
.page-hero { background: var(--navy); padding: 2.25rem 0; }
.page-hero--sm { padding: 1.75rem 0; }
.breadcrumb { color: rgba(255,255,255,.35); font-size: .78rem; margin-bottom: .5rem; }
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--t); }
.breadcrumb a:hover { color: #fff; text-decoration: none; }
.breadcrumb span { margin: 0 .35rem; }
.page-title    { color: #fff; font-size: clamp(1.35rem,4vw,2rem); font-weight: 700;
                 letter-spacing: -.025em; margin-bottom: .35rem; }
.page-subtitle { color: rgba(255,255,255,.55); font-size: .95rem; }

/* ══════════════════════════════════════════════════════════════════
   ANBIETER LIST
   ══════════════════════════════════════════════════════════════════ */
.filter-section { background: var(--surface); border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.filter-grid { display: grid; grid-template-columns: 1fr; gap: .75rem; }
.filter-field { display: flex; flex-direction: column; gap: .3rem; }
.filter-field label { font-size: .7rem; font-weight: 700; color: var(--muted);
                       text-transform: uppercase; letter-spacing: .07em; }
.filter-field input, .filter-field select {
  padding: .6rem .875rem; border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: .875rem; background: var(--bg); color: var(--ink); transition: all var(--t);
}
.filter-field input:focus, .filter-field select:focus {
  outline: none; border-color: var(--red); background: #fff;
}
.filter-actions { display: flex; gap: .5rem; align-items: flex-end; }
@media (min-width: 640px)  { .filter-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .filter-grid { grid-template-columns: 2fr 1fr 1fr 1fr auto; align-items: end; } }

.results-section {}
.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.results-count  { font-size: .875rem; color: var(--muted); }
.results-count strong { color: var(--ink); font-size: .95rem; font-weight: 700; }
.clear-filter   { color: var(--red); margin-left: .75rem; font-size: .82rem; font-weight: 600; }

.anbieter-list { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 2.5rem; }
.anbieter-list-item {
  background: var(--surface); border-radius: var(--r-l); padding: 1.35rem;
  box-shadow: var(--s2); border: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr; gap: 1.1rem;
  position: relative; transition: box-shadow var(--t);
}
.anbieter-list-item:hover { box-shadow: var(--s4); }
.anbieter-list-item--featured { border-color: #fcd34d; }
.list-badge { position: absolute; top: 0; right: 0; background: #fef3c7; color: #92400e;
              padding: .22rem .875rem; font-size: .69rem; font-weight: 700;
              border-bottom-left-radius: var(--r); }
.list-avatar { display: none; width: 3.5rem; height: 3.5rem; border-radius: var(--r);
               background: var(--navy-2); align-items: center; justify-content: center;
               color: #fff; font-weight: 700; font-size: 1.4rem; flex-shrink: 0; }
.list-avatar--img { background: var(--surface); padding: 4px; border: 1px solid var(--border); }
.list-body { flex: 1; min-width: 0; }
.list-header-row { display: flex; align-items: flex-start; gap: .75rem; flex-wrap: wrap; margin-bottom: .25rem; }
.list-name { font-size: 1rem; font-weight: 700; letter-spacing: -.01em; }
.list-name a { color: var(--ink); }
.list-name a:hover { color: var(--red); text-decoration: none; }
.list-rating { display: flex; align-items: center; gap: .35rem; margin-left: auto; flex-shrink: 0; }
.stars-inline { display: flex; gap: 1px; font-size: .83rem; }
.rating-text  { font-size: .79rem; color: var(--muted); font-weight: 600; }
.list-location { font-size: .79rem; color: var(--muted); margin-bottom: .5rem; }
.list-desc { font-size: .855rem; color: var(--ink-3); line-height: 1.6; margin-bottom: .65rem; }
.list-tags { display: flex; flex-wrap: wrap; gap: .3rem; }
.list-actions { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
@media (min-width: 640px) {
  .anbieter-list-item { grid-template-columns: auto 1fr auto; }
  .list-avatar { display: flex; }
  .list-actions { flex-direction: column; align-items: stretch; min-width: 160px; }
}

.empty-state { text-align: center; padding: 3.5rem 1rem; }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: .55; }
.empty-state h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .45rem; }
.empty-state p  { color: var(--muted); margin-bottom: 1.25rem; font-size: .875rem; }
.results-cta-card { background: var(--navy); border-radius: var(--r-xl); padding: 2.25rem;
                    text-align: center; color: #fff; border-top: 3px solid var(--red); }
.results-cta-card h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: .5rem; }
.results-cta-card p  { color: rgba(255,255,255,.6); margin-bottom: 1.25rem; font-size: .9rem; }

/* ── Leaflet Map ────────────────────────────────────────────────── */
.map-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
#anbieter-map { height: 420px; width: 100%; background: #e8f4f8; }

/* Detail-Seite Karte */
.detail-map-section { margin: 2rem 0; }
.detail-map-title {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1rem; font-weight: 700; letter-spacing: -.01em;
  color: var(--ink-2); margin-bottom: .875rem;
}
.detail-map-title .icon { color: var(--red); width: 1.15rem; height: 1.15rem; }
#detail-map {
  height: 360px; width: 100%; border-radius: var(--r-l);
  border: 1px solid var(--border); background: #e8f4f8;
  overflow: hidden; box-shadow: var(--s2);
}
.map-marker { width: 14px; height: 14px; border-radius: 50%; background: var(--red);
              border: 2.5px solid #fff; box-shadow: 0 2px 6px rgba(185,28,28,.4); }
.map-marker--lg { width: 22px; height: 22px; border-width: 3px;
                   box-shadow: 0 3px 12px rgba(185,28,28,.45); }
.map-popup strong a { color: var(--ink); text-decoration: none; font-size: .875rem; font-weight: 700; }
.map-popup strong a:hover { color: var(--red); }
.map-popup > div { font-size: .78rem; color: var(--muted); margin-top: .2rem; }
.map-stars { color: #d97706; font-size: .78rem; }
.map-popup-link { display: inline-block; margin-top: .55rem; font-size: .78rem; color: var(--red); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════════
   ANBIETER DETAIL
   ══════════════════════════════════════════════════════════════════ */
.detail-section {}
.detail-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .detail-grid { grid-template-columns: 1fr 360px; } }
.detail-header { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.75rem; flex-wrap: wrap; }
.detail-avatar { flex-shrink: 0; width: 5rem; height: 5rem; border-radius: var(--r-l);
                 background: var(--navy-2); display: flex; align-items: center; justify-content: center;
                 color: #fff; font-weight: 700; font-size: 2rem; }
.detail-avatar--img { background: var(--surface); padding: 5px; border: 1px solid var(--border); }
.detail-badge  { display: inline-block; background: #fef3c7; color: #92400e; padding: .2rem .7rem;
                 border-radius: var(--pill); font-size: .72rem; font-weight: 700; margin-bottom: .4rem; }
.detail-title  { font-size: clamp(1.35rem,3.5vw,1.85rem); font-weight: 700;
                 letter-spacing: -.025em; margin-bottom: .25rem; }
.detail-location { color: var(--muted); font-size: .875rem; margin-bottom: .5rem; }
.detail-rating { display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; }
.stars-large   { display: flex; gap: 2px; }
.stars-large .star { font-size: 1.2rem; }
.rating-value-lg { font-size: 1.05rem; font-weight: 700; }
.rating-count-lg { font-size: .83rem; color: var(--muted); }
.detail-body, .detail-services, .detail-vorteile, .detail-marken {
  background: var(--surface); border-radius: var(--r-l); padding: 1.5rem;
  border: 1px solid var(--border); margin-bottom: 1.1rem;
}
.detail-body h2, .detail-services h2, .detail-vorteile h2, .detail-marken h2 {
  font-size: .9rem; font-weight: 700; margin-bottom: .875rem; letter-spacing: -.01em;
  color: var(--ink-2); padding-bottom: .7rem; border-bottom: 1px solid var(--border-s);
}
.detail-desc { color: var(--ink-3); line-height: 1.75; font-size: .9rem; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.service-item  { display: flex; align-items: center; gap: .5rem; font-size: .875rem; }
.service-check { color: #16a34a; width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
.vorteile-list { display: flex; flex-direction: column; gap: .5rem; }
.vorteil-item  { display: flex; align-items: center; gap: .6rem; font-size: .875rem; font-weight: 500; }
.vorteil-icon  { color: #16a34a; width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
.detail-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { background: var(--surface); border-radius: var(--r-l); padding: 1.5rem;
                box-shadow: var(--s3); border: 1px solid var(--border);
                position: sticky; top: calc(var(--header-h) + 1rem); }
.contact-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -.01em; }
.contact-btn { display: flex; align-items: center; gap: .875rem; padding: .8rem 1rem;
               border-radius: var(--r); border: 1.5px solid var(--border);
               margin-bottom: .55rem; text-decoration: none; transition: all var(--t); color: var(--ink); }
.contact-btn:hover { border-color: var(--red); text-decoration: none; }
.contact-btn--phone:hover { border-color: #16a34a; background: #f0fdf4; }
.contact-btn-icon { width: 1.4rem; height: 1.4rem; flex-shrink: 0; }
.contact-btn strong { display: block; font-size: .875rem; font-weight: 700; color: var(--ink); }
.contact-btn small  { font-size: .75rem; color: var(--muted); }
.contact-divider { text-align: center; color: var(--muted); font-size: .76rem; margin: .8rem 0; position: relative; }
.contact-divider::before, .contact-divider::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: var(--border); }
.contact-divider::before { left: 0; } .contact-divider::after { right: 0; }
.contact-hint { text-align: center; font-size: .74rem; color: var(--muted); margin-top: .6rem; }
.btn--block { width: 100%; }
.info-card { background: var(--bg); border-radius: var(--r-l); padding: 1.25rem; border: 1px solid var(--border); }
.info-row  { display: flex; gap: .75rem; margin-bottom: .875rem; font-size: .875rem; }
.info-row:last-child { margin-bottom: 0; }
.info-icon { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: .15rem; color: var(--muted); }
.related-section h2 { font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 1rem; }
.related-grid { display: grid; gap: .75rem; }
@media (min-width: 640px)  { .related-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .related-grid { grid-template-columns: repeat(3,1fr); } }
.related-card { background: var(--surface); border-radius: var(--r); padding: 1rem;
                display: flex; align-items: center; gap: .875rem;
                border: 1px solid var(--border); transition: box-shadow var(--t); }
.related-card:hover { box-shadow: var(--s3); }
.related-avatar { width: 2.75rem; height: 2.75rem; border-radius: var(--r-s);
                  background: var(--navy-2); display: flex; align-items: center; justify-content: center;
                  color: #fff; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.related-avatar--img { background: var(--surface); padding: 3px; border: 1px solid var(--border); }
.related-body { flex: 1; min-width: 0; }
.related-name { font-weight: 700; font-size: .875rem; color: var(--ink); display: block; margin-bottom: .15rem; }
.related-name:hover { color: var(--red); }
.related-location { font-size: .75rem; color: var(--muted); }
.related-rating   { font-size: .75rem; color: var(--muted); display: flex; align-items: center; gap: 2px; margin-top: .2rem; }

/* ══════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 300px; } }
.form-errors { background: var(--red-s); border: 1px solid #fca5a5; border-radius: var(--r);
               padding: 1rem 1.25rem; margin-bottom: 1.5rem; color: #991b1b; }
.form-errors ul { margin-top: .5rem; padding-left: 1.25rem; list-style: disc; }
.contact-form { background: var(--surface); border-radius: var(--r-xl); padding: 2rem;
                border: 1px solid var(--border); }
.form-title { font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 1.5rem; }
.form-group-set { border: none; padding: 0; margin-bottom: 1.25rem; }
.form-legend { font-size: .7rem; font-weight: 700; color: var(--ink-2); margin-bottom: .875rem;
               padding-bottom: .5rem; border-bottom: 2px solid var(--border-s);
               width: 100%; display: block; text-transform: uppercase; letter-spacing: .07em; }
.form-row { display: grid; grid-template-columns: 1fr; gap: .875rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .875rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--ink-2); }
.form-group--required label::after { content: ' *'; color: var(--red); }
.form-optional { font-weight: 400; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  padding: .7rem .9rem; border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: .875rem; color: var(--ink); transition: border-color var(--t);
  background: var(--bg); width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
}
.form-group--checkbox .checkbox-label {
  display: flex; align-items: flex-start; gap: .75rem;
  cursor: pointer; font-size: .875rem; color: var(--ink-3); line-height: 1.5;
  user-select: none;
}
.form-group--checkbox .checkbox-label a {
  color: var(--red); font-weight: 600;
}
.form-group--checkbox .checkbox-label a:hover { text-decoration: underline; }

/* Custom Checkbox */
.form-group--checkbox input[type=checkbox] {
  appearance: none; -webkit-appearance: none;
  width: 1.2rem; height: 1.2rem; flex-shrink: 0; margin-top: .15rem;
  border: 2px solid var(--border); border-radius: 4px;
  background: var(--bg); cursor: pointer;
  transition: border-color var(--t), background var(--t);
  position: relative; display: grid; place-items: center;
}
.form-group--checkbox input[type=checkbox]:hover {
  border-color: var(--red);
}
.form-group--checkbox input[type=checkbox]:checked {
  background: var(--red); border-color: var(--red);
}
.form-group--checkbox input[type=checkbox]:checked::after {
  content: '';
  width: .35rem; height: .6rem;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}
.form-group--checkbox input[type=checkbox]:focus-visible {
  outline: 2px solid var(--red); outline-offset: 2px;
}
/* Honeypot — komplett versteckt, nur für Bots sichtbar */
.hp-wrap {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none;
}

/* Math-CAPTCHA */
.captcha-group label { font-size: .875rem; font-weight: 600; color: var(--ink-2); }
.captcha-row { display: flex; align-items: center; gap: .875rem; flex-wrap: wrap; margin-top: .3rem; }
.captcha-hint { font-size: .75rem; color: var(--muted); }

.form-hint { font-size: .74rem; color: var(--muted); }
.form-note { font-size: .74rem; color: var(--muted); text-align: center; margin-top: .75rem; }
.contact-info-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card { background: var(--surface); border-radius: var(--r-l); padding: 1.25rem;
                     border: 1px solid var(--border); }
.contact-info-card--phone { background: var(--navy); border: none; }
.contact-info-card h3 { font-size: .72rem; font-weight: 700; margin-bottom: .875rem;
                         color: var(--ink-2); text-transform: uppercase; letter-spacing: .08em; }
.contact-info-card--phone h3 { color: rgba(255,255,255,.7); }
.contact-benefits { display: flex; flex-direction: column; gap: .5rem; }
.contact-benefits li { display: flex; align-items: center; gap: .6rem; font-size: .875rem; }
.contact-benefits li span { color: #16a34a; font-weight: 700; }
.phone-cta { display: flex; align-items: center; gap: .875rem; text-decoration: none;
             background: rgba(255,255,255,.08); border-radius: var(--r); padding: .875rem;
             border: 1px solid rgba(255,255,255,.1); transition: var(--t); }
.phone-cta:hover { background: rgba(255,255,255,.14); text-decoration: none; }
.phone-icon { font-size: 1.6rem; flex-shrink: 0; }
.phone-cta strong { display: block; color: #fff; font-size: 1.05rem; font-weight: 700; }
.phone-cta small  { color: rgba(255,255,255,.6); font-size: .74rem; }
.contact-steps { display: flex; flex-direction: column; gap: .45rem; padding-left: 1.25rem; }
.contact-steps li { font-size: .875rem; color: var(--ink-3); list-style: decimal; }
.thankyou-section { padding: 4.5rem 0; }
.thankyou-card { max-width: 540px; margin: 0 auto; text-align: center;
                 background: var(--surface); border-radius: var(--r-xl); padding: 3rem 2rem;
                 border: 1px solid var(--border); box-shadow: var(--s4); }
.thankyou-icon  { font-size: 3.5rem; margin-bottom: 1rem; }
.thankyou-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -.025em; margin-bottom: .75rem; }
.thankyou-text  { color: var(--muted); line-height: 1.7; margin-bottom: 1.75rem; font-size: .925rem; }
.thankyou-steps { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
@media (min-width: 480px) { .thankyou-steps { flex-direction: row; justify-content: center; } }
.ty-step { display: flex; align-items: center; gap: .45rem; font-size: .8rem; color: var(--muted);
           padding: .45rem .8rem; border-radius: var(--pill); background: var(--bg); border: 1px solid var(--border); }
.ty-step--done { color: #15803d; background: #dcfce7; border-color: #bbf7d0; font-weight: 600; }
.ty-step span  { width: 1.4rem; height: 1.4rem; border-radius: 50%; display: flex; align-items: center;
                 justify-content: center; background: var(--border); color: var(--muted);
                 font-size: .72rem; font-weight: 700; flex-shrink: 0; }
.ty-step--done span { background: #16a34a; color: #fff; }
.thankyou-actions { display: flex; gap: .875rem; justify-content: center; flex-wrap: wrap; }
.error-section { padding: 5.5rem 0; }
.error-card { text-align: center; }
.error-code  { font-size: 6rem; font-weight: 900; color: var(--border); line-height: 1; margin-bottom: .5rem; }
.error-title { font-size: 1.4rem; font-weight: 700; margin-bottom: .5rem; }
.error-text  { color: var(--muted); margin-bottom: 1.5rem; }
.error-actions { display: flex; gap: .875rem; justify-content: center; }

/* ══════════════════════════════════════════════════════════════════
   BRAND MARQUEE
   ══════════════════════════════════════════════════════════════════ */
.brand-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
}
/* Fade-Masken links/rechts */
.brand-strip::before,
.brand-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 6rem; z-index: 2; pointer-events: none;
}
.brand-strip::before { left: 0;  background: linear-gradient(90deg,  var(--surface) 30%, transparent); }
.brand-strip::after  { right: 0; background: linear-gradient(-90deg, var(--surface) 30%, transparent); }

.brand-strip-label {
  text-align: center; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2);
  margin-bottom: 1rem;
}

.brand-track-wrap { overflow: hidden; }

.brand-track {
  display: flex; align-items: center; gap: .875rem;
  width: max-content;
  /* Geschwindigkeit und Startpunkt werden per JS gesetzt */
  animation: brand-marquee 40s linear infinite;
}
.brand-track:hover { animation-play-state: paused; }

@keyframes brand-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-shift, -50%)); }
}

/* Einheitliche Marken-Chips */
.brand-chip {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  flex-shrink: 0; width: 5.5rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: .75rem .5rem .6rem;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  cursor: default;
}
.brand-chip:hover {
  border-color: var(--red); box-shadow: var(--s2); transform: translateY(-2px);
}
.brand-chip-img {
  width: 2rem; height: 2rem; object-fit: contain;
  filter: grayscale(100%) opacity(.7);
  transition: filter var(--t);
}
.brand-chip:hover .brand-chip-img { filter: grayscale(0%) opacity(1); }
.brand-chip-name {
  font-size: .62rem; font-weight: 700; letter-spacing: .04em;
  color: var(--muted); text-align: center; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%;
}
.brand-chip:hover .brand-chip-name { color: var(--ink-2); }

/* ══════════════════════════════════════════════════════════════════
   SEO SECTION (Homepage)
   ══════════════════════════════════════════════════════════════════ */
.seo-section { background: var(--surface); border-top: 1px solid var(--border); }
.seo-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .seo-grid { grid-template-columns: 1fr 380px; align-items: start; } }
.seo-benefits { display: flex; flex-direction: column; gap: .65rem; padding: 0; }
.seo-benefits li {
  display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--ink-3);
}
.seo-benefits li .icon { color: #16a34a; flex-shrink: 0; margin-top: .15rem; }
.seo-coverage { background: var(--bg); border-radius: var(--r-xl); padding: 1.75rem;
                 border: 1px solid var(--border); }
.seo-coverage h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; letter-spacing: -.01em; }
.bundesland-grid { display: flex; flex-wrap: wrap; gap: .4rem; }
.bundesland-item {
  display: inline-block; background: var(--surface); color: var(--ink-3);
  border: 1px solid var(--border); border-radius: var(--r-s);
  padding: .28rem .65rem; font-size: .76rem; font-weight: 500;
  transition: all var(--t); text-decoration: none;
}
.bundesland-item:hover { background: var(--red-s); color: var(--red);
                          border-color: rgba(185,28,28,.25); text-decoration: none; }

/* ══════════════════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }

.blog-card {
  background: var(--surface); border-radius: var(--r-l); padding: 1.75rem;
  border: 1px solid var(--border); box-shadow: var(--s2);
  transition: box-shadow var(--t), transform var(--t);
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--s4); transform: translateY(-2px); }
.blog-card--featured {
  grid-column: 1 / -1; flex-direction: row; gap: 2rem; align-items: center;
  border-left: 4px solid var(--red);
}
@media (max-width: 639px) { .blog-card--featured { flex-direction: column; } }
.blog-card-body { flex: 1; }
.blog-meta { margin-bottom: .6rem; }
.blog-date { font-size: .75rem; color: var(--muted); font-weight: 600;
              text-transform: uppercase; letter-spacing: .05em; }
.blog-title { font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em;
              margin-bottom: .6rem; line-height: 1.3; }
.blog-title a { color: var(--ink); }
.blog-title a:hover { color: var(--red); text-decoration: none; }
.blog-card--featured .blog-title { font-size: 1.4rem; }
.blog-excerpt { font-size: .875rem; color: var(--ink-3); line-height: 1.7; margin-bottom: 1rem; }
.blog-read-more { display: inline-flex; align-items: center; gap: .3rem;
                   font-size: .82rem; font-weight: 700; color: var(--red);
                   margin-top: auto; }
.blog-read-more:hover { text-decoration: none; opacity: .8; }

/* Blog Post */
.blog-post-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .blog-post-layout { grid-template-columns: 1fr 300px; align-items: start; } }

.blog-post-content { min-width: 0; }
.blog-post-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--border-s); }
.blog-post-title { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 800;
                    letter-spacing: -.035em; line-height: 1.15; margin: .6rem 0 1rem; }
.blog-post-lead { font-size: 1.05rem; color: var(--ink-3); line-height: 1.7; font-weight: 400; }
.blog-post-footer { display: flex; gap: .875rem; flex-wrap: wrap; margin-top: 2.5rem;
                     padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* Prose — Blog-Inhalt-Styling */
.prose { color: var(--ink-3); line-height: 1.8; font-size: .95rem; }
.prose h2 { font-size: 1.3rem; font-weight: 700; color: var(--ink); margin: 2rem 0 .75rem;
             letter-spacing: -.02em; padding-bottom: .5rem; border-bottom: 2px solid var(--border-s); }
.prose h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink-2); margin: 1.5rem 0 .5rem; }
.prose p  { margin-bottom: 1rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { list-style: disc; margin-bottom: .35rem; }
.prose ol li { list-style: decimal; margin-bottom: .35rem; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a  { color: var(--red); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose blockquote { border-left: 4px solid var(--red); padding: .875rem 1.25rem;
                     background: var(--red-s); border-radius: 0 var(--r) var(--r) 0;
                     margin: 1.25rem 0; color: var(--ink-2); }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.25rem; font-size: .875rem; }
.prose th { background: var(--bg); padding: .6rem .875rem; text-align: left; font-weight: 700;
             border-bottom: 2px solid var(--border); }
.prose td { padding: .6rem .875rem; border-bottom: 1px solid var(--border-s); }

/* Blog Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.blog-sidebar-card { background: var(--surface); border-radius: var(--r-l); padding: 1.5rem;
                      border: 1px solid var(--border); box-shadow: var(--s2); }
.blog-sidebar-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .75rem; letter-spacing: -.01em; }
.blog-sidebar-card p  { font-size: .875rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }
.blog-related-list { display: flex; flex-direction: column; gap: .75rem; list-style: none; padding: 0; }
.blog-related-list li { border-bottom: 1px solid var(--border-s); padding-bottom: .65rem; }
.blog-related-list li:last-child { border-bottom: none; padding-bottom: 0; }
.blog-related-list a { font-size: .875rem; font-weight: 600; color: var(--ink); display: block; margin-bottom: .15rem; }
.blog-related-list a:hover { color: var(--red); text-decoration: none; }
.blog-related-list small { font-size: .72rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════════════════
   ADMIN
   ══════════════════════════════════════════════════════════════════ */
.admin-login-page { background: var(--bg); }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; }
.admin-login-card { background: var(--surface); border-radius: var(--r-xl); padding: 2.5rem;
                    box-shadow: var(--s5); width: 100%; max-width: 380px; border: 1px solid var(--border); }
.admin-login-logo { display: flex; align-items: center; justify-content: center; gap: .6rem;
                    font-size: 1.25rem; font-weight: 800; margin-bottom: .5rem; letter-spacing: -.02em; }
.admin-login-logo span:first-child { font-size: 2rem; }
.admin-login-title { text-align: center; font-size: .85rem; color: var(--muted); margin-bottom: 1.75rem; }
.admin-form .form-group { margin-bottom: 1rem; }
.admin-back-link { display: block; text-align: center; margin-top: 1.5rem; font-size: .82rem; color: var(--muted); }

.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: var(--navy); display: flex; flex-direction: column;
                 position: fixed; top: 0; left: -240px; height: 100vh; z-index: 200;
                 transition: left .22s ease; overflow-y: auto;
                 border-right: 1px solid rgba(255,255,255,.05); }
.admin-sidebar.open { left: 0; }
.admin-logo { padding: 1.25rem 1rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.admin-logo a { color: #fff; font-weight: 700; display: flex; align-items: center; gap: .6rem;
                text-decoration: none; font-size: 1rem; letter-spacing: -.015em; }
.admin-nav { flex: 1; padding: .75rem .5rem; display: flex; flex-direction: column; gap: .15rem; }
.admin-nav-link { display: flex; align-items: center; gap: .75rem; padding: .6rem .875rem;
                  border-radius: var(--r-s); color: rgba(255,255,255,.6); font-size: .845rem;
                  font-weight: 500; text-decoration: none; transition: all var(--t); }
.admin-nav-link:hover { background: rgba(255,255,255,.08); color: #fff; text-decoration: none; }
.admin-nav-link.active { background: rgba(185,28,28,.2); color: #fff;
                          border-left: 2px solid var(--red); padding-left: calc(.875rem - 2px); }
.admin-nav-link--logout { color: rgba(255,120,120,.7); margin-top: auto; }
.admin-nav-link--logout:hover { background: rgba(185,28,28,.12); color: #fca5a5; }
.nav-icon { font-size: .9rem; flex-shrink: 0; width: 1.1rem; text-align: center; }
.admin-sidebar-footer { padding: .75rem .5rem; border-top: 1px solid rgba(255,255,255,.07);
                         display: flex; flex-direction: column; gap: .15rem; }
.admin-main { flex: 1; margin-left: 0; display: flex; flex-direction: column; min-width: 0; }
.admin-topbar { background: var(--surface); border-bottom: 1px solid var(--border);
                padding: 0 1.25rem; height: 60px; display: flex; align-items: center; gap: 1rem;
                position: sticky; top: 0; z-index: 100; }
.sidebar-toggle { font-size: 1.1rem; padding: .4rem .6rem; border-radius: var(--r-s);
                  background: var(--bg); border: 1px solid var(--border); }
.admin-topbar-right { margin-left: auto; display: flex; align-items: center; gap: 1rem; }
.admin-user { font-size: .82rem; color: var(--muted); font-weight: 600; }
.admin-alert { margin: 0; font-size: .8rem; padding: .4rem .875rem; }
.admin-content { padding: 1.5rem; flex: 1; }
@media (min-width: 1024px) {
  .admin-sidebar { left: 0; position: sticky; height: 100vh; }
  .sidebar-toggle { display: none; }
}
.admin-page-header { display: flex; justify-content: space-between; align-items: flex-start;
                      flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.admin-page-header h1 { font-size: 1.4rem; font-weight: 700; letter-spacing: -.025em; }
.admin-page-header p  { color: var(--muted); font-size: .83rem; margin-top: .2rem; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4,1fr); } }
.stat-card { background: var(--surface); border-radius: var(--r-l); padding: 1.25rem;
             border: 1px solid var(--border); border-left: 3px solid;
             display: flex; gap: .875rem; align-items: center; }
.stat-card--blue   { border-left-color: #3b82f6; }
.stat-card--green  { border-left-color: #16a34a; }
.stat-card--orange { border-left-color: #d97706; }
.stat-card--purple { border-left-color: #8b5cf6; }
.stat-icon  { font-size: 1.4rem; flex-shrink: 0; }
.stat-value { font-size: 1.6rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.stat-label { font-size: .72rem; color: var(--muted); margin-top: .2rem; font-weight: 600;
              text-transform: uppercase; letter-spacing: .05em; }
.admin-card { background: var(--surface); border-radius: var(--r-l); border: 1px solid var(--border);
              margin-bottom: 1.5rem; overflow: hidden; }
.admin-card--info { background: #f0f9ff; border-color: #bae6fd; }
.admin-card-header { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
                     display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h2 { font-size: .9rem; font-weight: 700; letter-spacing: -.01em; }
.admin-card-body { padding: 1.25rem; }
.admin-card-body .form-group { margin-bottom: 1rem; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .845rem; }
.admin-table th { background: var(--bg); padding: .6rem 1rem; text-align: left; font-size: .68rem;
                  font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
                  border-bottom: 1.5px solid var(--border); white-space: nowrap; }
.admin-table td { padding: .875rem 1rem; border-bottom: 1px solid var(--border-s); vertical-align: top; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg); }
.row--inactive td { opacity: .45; }
.actions-cell { white-space: nowrap; }
.badge-count { background: var(--red); color: #fff; border-radius: var(--pill);
               padding: .1rem .42rem; font-size: .68rem; font-weight: 700; margin-left: .3rem; }
.badge-featured { background: #fef3c7; color: #92400e; border-radius: var(--pill);
                  padding: .14rem .5rem; font-size: .7rem; font-weight: 700; }
.rating-mini { background: #fef3c7; color: #92400e; border-radius: var(--pill);
               padding: .14rem .5rem; font-size: .74rem; font-weight: 700; }
.tags-mini { display: flex; flex-wrap: wrap; gap: .25rem; }
.status-toggle { padding: .28rem .65rem; border-radius: var(--pill); font-size: .74rem;
                 font-weight: 700; cursor: pointer; border: none; transition: var(--t); }
.status-toggle--active   { background: #dcfce7; color: #15803d; }
.status-toggle--inactive { background: var(--red-s); color: #991b1b; }
.status-badge { padding: .22rem .6rem; border-radius: var(--pill); font-size: .7rem;
                font-weight: 700; display: inline-block; letter-spacing: .02em; }
.status-badge--neu            { background: #dbeafe; color: #1e40af; }
.status-badge--in_bearbeitung { background: #fef3c7; color: #92400e; }
.status-badge--abgeschlossen  { background: #dcfce7; color: #15803d; }
.empty-text { color: var(--muted); font-size: .875rem; padding: 1.5rem; text-align: center; }
.quick-actions { display: grid; grid-template-columns: 1fr; gap: .75rem; }
@media (min-width: 640px) { .quick-actions { grid-template-columns: repeat(3,1fr); } }
.quick-action-btn { display: flex; align-items: center; gap: .75rem; padding: 1rem 1.1rem;
                    background: var(--surface); border-radius: var(--r-l); border: 1.5px solid var(--border);
                    font-weight: 600; font-size: .875rem; color: var(--ink); text-decoration: none;
                    transition: all var(--t); }
.quick-action-btn:hover { border-color: var(--red); color: var(--red); text-decoration: none; }
.quick-action-btn--alert { border-color: rgba(185,28,28,.3); }
.status-tabs { display: flex; gap: .3rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.status-tab { padding: .45rem 1rem; border-radius: var(--pill); font-size: .8rem; font-weight: 600;
              color: var(--muted); background: var(--surface); border: 1.5px solid var(--border);
              text-decoration: none; transition: all var(--t); }
.status-tab:hover { border-color: var(--red); color: var(--red); text-decoration: none; }
.status-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.status-tab--neu.active { background: var(--red); border-color: var(--red); }
.tab-count { background: rgba(0,0,0,.1); border-radius: var(--pill); padding: 0 .38rem; font-size: .68rem; margin-left: .3rem; }
.status-tab.active .tab-count { background: rgba(255,255,255,.2); }
.anfragen-list { display: flex; flex-direction: column; gap: 1rem; }
.anfrage-card { background: var(--surface); border-radius: var(--r-l); padding: 1.35rem;
                border: 1px solid var(--border); border-left: 3px solid var(--border); }
.anfrage-card--neu            { border-left-color: #3b82f6; }
.anfrage-card--in_bearbeitung { border-left-color: #d97706; }
.anfrage-card--abgeschlossen  { border-left-color: #16a34a; }
.anfrage-header { display: flex; justify-content: space-between; align-items: center;
                  flex-wrap: wrap; gap: .5rem; margin-bottom: .875rem; }
.anfrage-name  { font-size: .95rem; font-weight: 700; letter-spacing: -.01em; }
.anfrage-date  { font-size: .74rem; color: var(--muted); }
.anfrage-body  { margin-bottom: 1rem; }
.anfrage-contact { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: .6rem; font-size: .875rem; }
.anfrage-contact a { color: var(--red); font-weight: 600; }
.anfrage-fahrzeug { font-size: .875rem; color: var(--ink-3); margin-bottom: .5rem;
                    padding: .6rem .875rem; background: var(--bg); border-radius: var(--r);
                    border: 1px solid var(--border-s); }
.anfrage-nachricht { font-size: .875rem; color: var(--ink-3); font-style: italic;
                     margin-bottom: .5rem; padding: .6rem .875rem 0; border-left: 2.5px solid var(--border); }
.anfrage-admin-notiz { font-size: .79rem; background: #fef3c7; padding: .45rem .7rem;
                        border-radius: var(--r-s); margin-bottom: .5rem; }
.anfrage-actions { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.anfrage-status-form { display: flex; gap: .5rem; flex-wrap: wrap; flex: 1; }
.status-select { padding: .35rem .6rem; border: 1.5px solid var(--border); border-radius: var(--r);
                 font-size: .8rem; background: var(--bg); }
.admin-notiz-input { flex: 1; min-width: 160px; padding: .35rem .6rem; border: 1.5px solid var(--border);
                     border-radius: var(--r); font-size: .8rem; }
.admin-form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 1024px) { .admin-form-grid { grid-template-columns: 1fr 290px; align-items: start; } }
.admin-form-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.form-submit-area { display: flex; flex-direction: column; gap: .5rem; background: var(--surface);
                    border-radius: var(--r-l); padding: 1.25rem; border: 1px solid var(--border); }
.admin-form .form-group { margin-bottom: 1rem; }
code { background: var(--bg); padding: .1rem .4rem; border-radius: var(--r-s);
       font-size: .8rem; font-family: monospace; border: 1px solid var(--border); }
.crawl-progress { display: flex; align-items: center; gap: .875rem; background: var(--bg);
                  border: 1px solid var(--border); border-radius: var(--r); padding: .7rem 1rem; }
.crawl-spinner { width: 18px; height: 18px; border: 2px solid var(--border);
                 border-top-color: var(--red); border-radius: 50%;
                 animation: spin .7s linear infinite; flex-shrink: 0; }
@keyframes spin { to { transform: rotate(360deg); } }
#crawl-msg { font-size: .875rem; color: var(--muted); font-weight: 500; }
.crawler-action-bar { display: flex; align-items: center; gap: 1rem; padding: .875rem 1.25rem;
                      background: var(--bg); border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.crawler-results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr));
                         gap: 0; border-top: 1px solid var(--border); }
.crawler-bl-group { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.crawler-bl-header { display: flex; justify-content: space-between; align-items: center;
                      padding: .6rem 1rem; background: var(--bg); border-bottom: 1px solid var(--border);
                      font-size: .7rem; font-weight: 800; text-transform: uppercase;
                      letter-spacing: .07em; color: var(--ink-3); }
.crawler-city-list { padding: .4rem 0; }
.crawler-city-item { display: flex; align-items: flex-start; gap: .6rem; padding: .45rem 1rem;
                     cursor: pointer; transition: background var(--t); }
.crawler-city-item:hover:not(.already-imported) { background: var(--bg); }
.crawler-city-item.already-imported { opacity: .4; cursor: default; }
.city-info { display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.city-name  { font-weight: 600; font-size: .875rem; }
.city-badge { font-size: .67rem; font-weight: 700; }
.city-badge--done { color: #16a34a; }
.city-url   { font-size: .69rem; color: var(--muted); white-space: nowrap; overflow: hidden;
              text-overflow: ellipsis; max-width: 200px; display: block; }
.city-url:hover { color: var(--red); }
.city-desc  { font-size: .7rem; color: var(--muted); line-height: 1.4;
              display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.city-contact { display: flex; flex-wrap: wrap; gap: .28rem; margin-top: .12rem; }
.city-contact-item { font-size: .69rem; background: var(--bg); color: var(--ink-3);
                     padding: .08rem .38rem; border-radius: var(--r-s); border: 1px solid var(--border); }
.city-contact-item--rating { background: #fef3c7; color: #92400e; }
.crawler-import-bar { display: flex; gap: .875rem; align-items: center; padding: 1.25rem;
                      border-top: 1.5px solid var(--border); background: var(--bg); }
.contact-found-banner { display: flex; align-items: center; flex-wrap: wrap; gap: .75rem;
                         padding: .75rem 1.25rem; background: #f0fdf4;
                         border-bottom: 1px solid #bbf7d0; font-size: .875rem; }
.contact-found-label { color: #15803d; font-weight: 700; }
.contact-found-item  { background: #dcfce7; color: #15803d; padding: .22rem .7rem;
                        border-radius: var(--pill); font-size: .78rem; font-weight: 600; }
.debug-panel { display: inline-flex; flex-direction: column; gap: .35rem; background: var(--bg);
               border: 1px solid var(--border); border-radius: var(--r); padding: .875rem 1.1rem;
               margin: .875rem 0; text-align: left; min-width: 270px; }
.debug-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: .8rem; }
.debug-label { color: var(--muted); }
.debug-val { font-weight: 700; }
.debug-val--ok   { color: #16a34a; }
.debug-val--warn { color: #d97706; }
.debug-val--err  { color: var(--red); }
.debug-hints { max-width: 460px; margin: .4rem auto 0; text-align: left; font-size: .82rem; }
.debug-hints p  { margin-bottom: .5rem; color: var(--ink-3); }
.debug-hints ul { padding-left: 1.25rem; display: flex; flex-direction: column; gap: .28rem; color: var(--muted); }
.debug-hints li { list-style: disc; }
.domain-list { display: flex; flex-direction: column; }
.domain-item { display: flex; align-items: center; gap: .75rem; padding: .75rem 1.25rem;
               text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--border-s);
               transition: background var(--t); }
.domain-item:hover { background: var(--bg); }
.domain-item--active { background: #eff6ff; border-left: 2.5px solid #3b82f6; }
.domain-item-text { flex: 1; min-width: 0; }
.domain-item-name  { display: block; font-size: .875rem; font-weight: 700;
                     overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.domain-item-count { font-size: .72rem; color: var(--muted); }
.domain-item-contact { display: flex; gap: .25rem; font-size: .8rem; }
