/* ============================================================================
   Hundeservice24 Design System v3
   Fonts: Plus Jakarta Sans (Headlines) + Inter (Body), self-hosted (DSGVO)
   Colors: Green #2D7A4F + Coral #E8642C
   ============================================================================ */

/* Fonts */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/PlusJakartaSans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/PlusJakartaSans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/PlusJakartaSans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/PlusJakartaSans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/PlusJakartaSans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/PlusJakartaSans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/Inter-latin.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/Inter-latin.woff2) format('woff2');
}

/* Variables */
:root {
  --green: #2D7A4F;
  --green-hover: #225e3c;
  --green-light: #edf7f1;
  --coral: #E8642C;
  --coral-hover: #d4571f;
  --text: #111827;
  --text-sub: #374151;
  --text-muted: #9CA3AF;
  --bg: #FFFFFF;
  --bg-warm: #F8F7F5;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --max-w: 1040px;
}

/* Skip Nav */
.skip-nav {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--green);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0 0 6px 0;
}
.skip-nav:focus { left: 0; }

/* Privacy Bar */
.privacy-bar {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  padding: 10px 24px;
  text-align: center;
  line-height: 1.5;
}
.privacy-bar a { color: var(--green-light); text-decoration: underline; }
.privacy-bar__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.25rem;
  cursor: pointer;
  margin-left: 12px;
  vertical-align: middle;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.privacy-bar__close:hover { color: #fff; }

/* Sticky CTA (mobile, ratgeber) */
.sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
    transform: translateY(100%);
    transition: transform 0.3s;
  }
  .sticky-cta--visible { transform: translateY(0); }
  .sticky-cta .btn { width: 100%; justify-content: center; }
}

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

/* iOS Auto-Zoom verhindern (font-size < 16px löst Zoom auf iOS Safari aus) */
@media (max-width: 768px) {
  input, select, textarea { font-size: 16px; }
}

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

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

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

/* ============================================================================
   Header
   ============================================================================ */

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

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

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

.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: color 0.15s;
}
.nav a:hover { color: var(--text); }
.nav a[aria-current="page"] { color: var(--green); font-weight: 600; }

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

.mobile-menu { display: none; }

@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-top: 1px solid var(--border); z-index: 100; }
  .nav--open { display: flex; }
  .nav--open a { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .nav--open a:last-child { border-bottom: none; }
  .nav--open .nav-cta { margin-top: 8px; text-align: center; padding: 12px 14px; }
  .header-inner { position: relative; }
  .mobile-menu {
    display: flex;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--text);
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn--green {
  background: var(--green);
  color: #fff;
  font-size: 0.875rem;
  padding: 10px 20px;
}
.btn--green:hover { background: var(--green-hover); color: #fff; }

.btn--coral {
  background: var(--coral);
  color: #fff;
  font-size: 0.9375rem;
  padding: 12px 24px;
}
.btn--coral:hover { background: var(--coral-hover); color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--text-sub);
  border-color: var(--border);
  font-size: 0.8125rem;
  padding: 6px 12px;
}
.btn--outline:hover { border-color: var(--green); color: var(--green); }

.btn--sm { font-size: 0.8125rem; padding: 8px 14px; }
@media (max-width: 768px) {
  .service-card__actions .btn--sm { min-height: 44px; padding: 10px 16px; }
}

/* ============================================================================
   Hero (Homepage)
   ============================================================================ */

.hero {
  position: relative;
  background: url('/assets/images/hero-homepage.png') center/cover no-repeat;
  padding: 96px 24px 80px;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}


.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

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

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}

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

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

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

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

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

.trust-line span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-line svg { color: rgba(255,255,255,0.85); }

@media (max-width: 600px) {
  .hero { padding: 64px 16px 56px; min-height: 360px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.875rem; padding: 0 8px; }
  .search-bar { flex-direction: column; }
  .search-bar select { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .search-bar input { border-bottom: 1px solid var(--border); }
  .search-btn { padding: 14px; border-radius: 0; }
  .trust-line { gap: 10px; flex-wrap: wrap; justify-content: center; font-size: 0.75rem; }
  .trust-line span { white-space: nowrap; }
}

/* ============================================================================
   Page Hero (Category / City pages)
   ============================================================================ */

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

.page-hero--category,
.page-hero--city {
  background: transparent;
  padding: 40px 0 32px;
  margin-top: 0;
}

.page-hero__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.page-hero__icon svg { width: 24px; height: 24px; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.page-hero p {
  color: var(--text-sub);
  font-size: 0.9375rem;
  max-width: 600px;
  line-height: 1.55;
}

.page-hero__stats {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.page-hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-sub);
  background: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.page-hero__stat svg { color: var(--green); }

@media (max-width: 600px) {
  .page-hero h1 { font-size: 1.375rem; }
  .page-hero--category,
  .page-hero--city { padding: 32px 0 24px; }
  .page-hero__stats { flex-wrap: wrap; gap: 6px; }
  .page-hero__stat { font-size: 0.75rem; padding: 4px 10px; }
}

/* ============================================================================
   Section Headers
   ============================================================================ */

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

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

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

h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.25em; }

p { margin-bottom: 0.6em; color: var(--text-sub); line-height: 1.6; }

/* ============================================================================
   Category Cards (Homepage)
   ============================================================================ */

.categories { padding: 48px 24px 64px; }

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

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

.cat-card:hover {
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(45,122,79,0.08);
}

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

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

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

.cat-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.cat-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

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

/* ============================================================================
   City Tags (Homepage + Category pages)
   ============================================================================ */

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

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

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

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

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

/* Trust Section (Homepage) */
.trust-section { padding: 56px 24px 48px; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-item {
  text-align: center;
  padding: 24px 16px;
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.trust-item h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.8125rem;
  color: var(--text-sub);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; gap: 8px; }
  .trust-item { padding: 16px; text-align: left; display: flex; gap: 14px; align-items: flex-start; }
  .trust-item__icon { margin: 0; flex-shrink: 0; width: 36px; height: 36px; }
}

/* Ratgeber Section (Homepage) */
.ratgeber-section { padding: 56px 24px; background: var(--bg-warm); }

.ratgeber-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.ratgeber-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.ratgeber-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(45,122,79,0.08);
  transform: translateY(-2px);
}

.ratgeber-card__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: var(--green-light);
}
.ratgeber-card__img--placeholder {
  display: block;
  height: 140px;
  background: linear-gradient(135deg, var(--green-light), #d4edda);
}

.ratgeber-card__body {
  padding: 14px 16px;
}
.ratgeber-card__body h3 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ratgeber-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.ratgeber-grid--index { grid-template-columns: repeat(2, 1fr); }

.ratgeber-card--full .ratgeber-card__img { height: 180px; }

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

.ratgeber-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ratgeber-card__footer .ratgeber-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Author Box (Ratgeber articles) */
.author-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  margin-top: 40px;
  border: 1px solid var(--border);
}
.author-box__avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-box__info strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}
.author-box__info p {
  font-size: 0.8125rem;
  color: var(--text-sub);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) { .ratgeber-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ratgeber-grid { grid-template-columns: 1fr; } .ratgeber-section { padding: 48px 16px; } .ratgeber-grid--index { grid-template-columns: 1fr; } }

/* Guides Section (Homepage) */
.guides-section { padding: 56px 24px; }

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

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.guide-card:hover {
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(45,122,79,0.08);
}

.guide-card__city {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.guide-card__facts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.guide-card__facts span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-sub);
}

.guide-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 4px;
}

@media (max-width: 900px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .guide-grid { grid-template-columns: 1fr; } .guides-section { padding: 48px 16px; } }

/* More Cities Accordion (category pages) */
.more-cities {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.more-cities__toggle {
  padding: 14px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-sub);
  cursor: pointer;
  background: var(--bg-warm);
  list-style: none;
  transition: color 0.15s;
}
.more-cities__toggle:hover { color: var(--green); }
.more-cities__toggle::-webkit-details-marker { display: none; }
.more-cities__toggle::after { content: ' +'; color: var(--text-muted); float: right; }
.more-cities[open] .more-cities__toggle::after { content: ' \2212'; }
.more-cities[open] .more-cities__toggle { border-bottom: 1px solid var(--border); }
.more-cities .city-grid { padding: 0 20px 20px; }

/* City Grid (for category pages without einwohner display) */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.city-grid-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-sub);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  transition: all 0.15s;
}
.city-grid-item:hover { border-color: var(--green); color: var(--green); }

.city-grid-item .bl {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 1px;
}

.city-grid-item--has-listings {
  border-color: var(--border);
  background: var(--bg);
}
.city-grid-item--has-listings:hover { border-color: var(--green); }

.city-grid-item__name { font-weight: 500; }

.city-grid-item__count {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 1px;
}

.city-grid-item__empty {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 1px;
  font-style: italic;
}

/* Inline CTA (between city grids) */
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg-warm);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
}
.inline-cta p { margin: 0; font-size: 0.875rem; color: var(--text-sub); }
@media (max-width: 540px) {
  .inline-cta { flex-direction: column; text-align: center; }
}

/* Guide Teaser (on city-service pages) */
.guide-teaser {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--green-light);
  border: 1px solid rgba(45,122,79,0.15);
  border-radius: var(--radius);
  margin-bottom: 24px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.guide-teaser:hover {
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(45,122,79,0.08);
}
.guide-teaser__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guide-teaser__content {
  flex: 1;
  min-width: 0;
}
.guide-teaser__content strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
}
.guide-teaser__content span {
  font-size: 0.8125rem;
  color: var(--text-sub);
}
.guide-teaser__arrow {
  color: var(--green);
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .guide-teaser__content span { display: none; }
}

/* Quick-Actions Bar (Bounce-Killer: Top-Cross-Links ueber dem Fold) */
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}
.quick-actions__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border, #E5E0D8);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  line-height: 1.2;
}
.quick-actions__pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green);
}
.quick-actions__pill:hover {
  border-color: var(--green);
  background: var(--green-light);
  transform: translateY(-1px);
}
.quick-actions__pill--emergency {
  background: #FFF4F0;
  border-color: #E8642C;
  color: #C24818;
}
.quick-actions__pill--emergency svg { color: #E8642C; }
.quick-actions__pill--emergency:hover {
  background: #FFE8DD;
  border-color: #C24818;
}
@media (max-width: 540px) {
  .quick-actions { gap: 6px; }
  .quick-actions__pill {
    padding: 8px 12px;
    font-size: 0.8125rem;
    max-width: calc(50% - 3px);
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

/* Nearby-Cities Block (Bounce-Killer: Region-Cross-Links bei duennen Pages) */
.nearby-cities {
  margin: 40px 0 32px;
}
.nearby-cities h2 {
  font-size: 1.25rem;
  margin: 0 0 16px;
  color: var(--text);
}
.nearby-cities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.nearby-cities__card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border, #E5E0D8);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.nearby-cities__card svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-sub);
}
.nearby-cities__city { flex: 1; min-width: 0; }
.nearby-cities__arrow {
  color: var(--green);
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
}
.nearby-cities__card:hover {
  border-color: var(--green);
  background: var(--green-light);
}
.nearby-cities__card:hover .nearby-cities__arrow {
  opacity: 1;
  transform: translateX(2px);
}
@media (max-width: 540px) {
  .nearby-cities__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .nearby-cities__card { padding: 10px 12px; font-size: 0.875rem; }
}

/* ============================================================================
   CTA Section
   ============================================================================ */

.cta { padding: 80px 24px; }

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

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

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

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

/* ============================================================================
   Service Cards
   ============================================================================ */

.services-list { margin: 24px 0; }
.services-list h2 { margin-top: 0; }

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 10px;
  transition: border-color 0.15s;
}

.service-card__layout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card__icon svg { width: 22px; height: 22px; }

.service-card__body { flex: 1; min-width: 0; }

.service-card--premium {
  border-color: var(--coral);
  background: #FEF7F4;
}
.service-card--premium .service-card__icon {
  background: #FEF3ED;
  color: var(--coral);
}

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

.service-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

@media (max-width: 540px) {
  .service-card__layout { gap: 12px; }
  .service-card__icon { width: 36px; height: 36px; border-radius: 8px; }
  .service-card__icon svg { width: 18px; height: 18px; }
}

.service-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

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

.badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}
.badge--premium { background: #FEF3ED; color: var(--coral); }
.badge--verified { background: #EBF3FF; color: #2563EB; font-size: 0.625rem; }
.badge--claimed { background: var(--green-light); color: var(--green); font-weight: 700; }
.badge--founding {
  background: linear-gradient(135deg, #FFF4D0 0%, #FFE08A 100%);
  color: #8B6914;
  font-weight: 700;
  border: 1px solid #E6C36A;
}

/* Claim-Highlight: zeigt visuell dass dieser Eintrag vom Inhaber bestaetigt ist */
.service-card--claimed { border-left: 3px solid var(--green); }
.service-card--featured {
  background: linear-gradient(180deg, #F8FCF7 0%, #FFFFFF 100%);
  box-shadow: 0 2px 8px rgba(45, 122, 79, 0.08);
}
.claim-hint-confirmed {
  color: var(--green);
  font-weight: 600;
  font-size: 0.8125rem;
}

/* Claim-Page Styles */
.container--narrow { max-width: 720px; margin: 0 auto; padding: 0 20px; }
.hero--narrow { padding: 60px 0 40px; }
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.claim-target {
  margin-bottom: 32px;
}
.claim-target__heading {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.claim-target__card {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 1rem;
}
.claim-target--none p {
  background: #FFF7E0;
  border-left: 4px solid #E6C36A;
  padding: 16px 20px;
  border-radius: 6px;
}
.claim-form {
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9375rem;
}
.form-row .req { color: var(--coral); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #DDD;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.1);
}
.checkbox-row .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 0.9375rem;
  cursor: pointer;
}
.checkbox-row input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}
.btn--block { width: 100%; padding: 14px; font-size: 1rem; }
.benefit-list { padding-left: 0; list-style: none; }
.benefit-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 1rem;
}
.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--green);
  font-weight: bold;
  font-size: 1.125rem;
}
.alert {
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.alert--success {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  color: var(--green);
}

.service-card__address {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.service-card__address svg { flex-shrink: 0; }

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

.rating { font-size: 0.8125rem; }
.rating__stars { color: #F59E0B; }
.rating__score { color: var(--text-sub); font-weight: 600; margin-left: 2px; }
.review-count { font-size: 0.75rem; color: var(--text-muted); margin-left: 4px; }

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

.service-card__actions {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.service-card__price { font-weight: 600; color: var(--green); font-size: 0.875rem; }

.service-card__desc {
  font-size: 0.8125rem;
  color: var(--text-sub);
  margin: 4px 0 8px;
  line-height: 1.5;
}

.service-card__hours {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.service-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.service-tag {
  display: inline-block;
  font-size: 0.6875rem;
  padding: 2px 8px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 4px;
  font-weight: 500;
}

.service-card__claim-hint {
  margin: 8px 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
}
@media (max-width: 768px) {
  .service-card__claim-hint { min-height: 44px; display: flex; align-items: center; justify-content: flex-end; }
}

.claim-link {
  color: var(--text-muted);
  text-decoration: none;
}
.claim-link:hover {
  color: var(--text-sub);
  text-decoration: underline;
}

.claim-sep {
  color: var(--text-muted);
  opacity: 0.5;
  margin: 0 2px;
}

.listing-remove-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.7rem;
  opacity: 0.85;
}
.listing-remove-link:hover {
  color: var(--text-sub);
  text-decoration: underline;
  opacity: 1;
}

.form-privacy-note {
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}
.form-privacy-note a {
  color: var(--text-muted);
  text-decoration: underline;
}
.form-privacy-note a:hover {
  color: var(--text-sub);
}

.service-card:hover { border-color: var(--green); box-shadow: 0 2px 8px rgba(45,122,79,0.08); }

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

.breadcrumbs {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 16px 0 0;
}
.breadcrumbs a { color: var(--text-muted); transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--green); }
.bc-sep { margin: 0 6px; }

/* ============================================================================
   FAQ
   ============================================================================ */

.faq-section { margin: 40px 0; }
.faq-section h2 { margin-top: 0; margin-bottom: 16px; }

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

.faq-q {
  padding: 16px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  background: var(--bg);
  list-style: none;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--green); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: ' +'; color: var(--text-muted); float: right; }
details[open] .faq-q::after { content: ' \2212'; }

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

/* ============================================================================
   Price Info (City-Service pages)
   ============================================================================ */

.price-info {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.price-info h2 { margin-top: 0; font-size: 1.125rem; }
.price-info p { margin-bottom: 0; }

/* ============================================================================
   Other Services Links
   ============================================================================ */

.other-services { margin: 32px 0; }

.other-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.other-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-warm);
  border-radius: 6px;
  color: var(--text-sub);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.other-link svg { color: var(--green); flex-shrink: 0; }
.other-link:hover { color: var(--green); background: var(--green-light); }

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

.empty-state {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}
.empty-state__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.empty-state__icon svg { width: 28px; height: 28px; }
.empty-state h3 { font-size: 1.125rem; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 16px; max-width: 460px; margin-left: auto; margin-right: auto; }
.empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.empty-state__actions .btn { white-space: nowrap; }

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

.pricing { margin: 40px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.pricing-card--featured {
  border-color: var(--green);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 99px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 8px 0;
}
.pricing-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.pricing-card ul { list-style: none; text-align: left; margin: 16px 0; }
.pricing-card li {
  padding: 4px 0;
  font-size: 0.8125rem;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card li svg { flex-shrink: 0; }
.pricing-card li.muted { color: var(--text-muted); }

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

/* ============================================================================
   Legal Pages
   ============================================================================ */

.legal { padding: 40px 0 64px; max-width: 680px; }
.legal h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.legal h2 {
  font-size: 1.125rem;
  margin: 32px 0 8px;
}
.legal p { font-size: 0.9375rem; line-height: 1.7; }
.legal strong { color: var(--text); }

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

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

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

.footer-brand {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.footer-brand .logo { margin-bottom: 12px; font-size: 1rem; }

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

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

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

@media (max-width: 700px) {
  .footer { padding: 32px 16px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; text-align: center; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); margin-bottom: 8px; }
  .footer-brand .logo { justify-content: center; }
  .footer-col h4 { margin-bottom: 8px; }
  .footer-col a { padding: 4px 0; }
  .footer-bottom { margin-top: 24px; text-align: center; }
}

/* ============================================================================
   Ratgeber
   ============================================================================ */

.ratgeber-list { margin: 24px 0; }
.ratgeber-item {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.15s;
}
.ratgeber-item:hover { color: var(--green); }
.ratgeber-item h3 { margin-bottom: 4px; }
.ratgeber-item p { font-size: 0.8125rem; margin: 0; }

/* City Guide */
.guide-toc { background: var(--bg-warm); border-radius: 8px; padding: 20px 24px; margin-top: 24px; margin-bottom: 32px; }
.guide-toc h2 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-sub); margin-bottom: 12px; }
.guide-toc ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.guide-toc a { font-size: 0.875rem; font-weight: 500; color: var(--green); background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 6px 14px; transition: all 0.15s; display: inline-block; }
.guide-toc a:hover { border-color: var(--green); background: rgba(45,122,79,0.04); }
.guide-section { margin-bottom: 40px; }
.guide-section__header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.guide-section__header h2 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }
.guide-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(45,122,79,0.08); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.guide-icon--warn { background: rgba(232,100,44,0.08); color: var(--coral); }
.guide-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.guide-card--highlight { border-color: var(--coral); border-width: 2px; }
.guide-grid { display: grid; gap: 16px; margin-bottom: 16px; }
.guide-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 540px) { .guide-grid--3 { grid-template-columns: 1fr; } }
.guide-stat { text-align: center; padding: 12px; background: var(--bg-warm); border-radius: 8px; }
.guide-stat__value { display: block; font-size: 1.5rem; font-weight: 700; color: var(--green); }
.guide-stat__label { font-size: 0.8125rem; color: var(--text-sub); }
.guide-stat--warn .guide-stat__value { color: var(--coral); }
.guide-info { font-size: 0.9375rem; color: var(--text-sub); margin-bottom: 12px; }
.guide-warn { font-size: 0.9375rem; color: var(--coral); font-weight: 600; }
.guide-source { font-size: 0.8125rem; color: var(--text-muted); margin-top: 12px; }
.guide-list { display: flex; flex-direction: column; gap: 16px; }
.guide-list__item { padding: 24px; border: 1px solid var(--border); border-radius: 12px; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; background: #fff; }
.guide-list__item:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-1px); }
.guide-list__item h3 { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.guide-list__item p { font-size: 0.875rem; color: var(--text-sub); margin: 6px 0; line-height: 1.55; }
.guide-list__item a { color: var(--green); }
.guide-list__item a:hover { color: var(--green-hover); }
.guide-list__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; font-size: 0.8125rem; color: var(--text-muted); align-items: center; }
.tag--green { background: rgba(45,122,79,0.08); color: var(--green); }

/* POI pages */
.city-grid-item--empty { opacity: 0.5; }
.city-grid-item--empty:hover { opacity: 0.8; }
.guide-list__item--highlight { border-color: var(--green); border-width: 2px; background: rgba(45,122,79,0.02); }
.guide-list__item--highlight:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(45,122,79,0.1); }

/* POI Cards (Auslaufgebiete, Strände, Tierarzt) */
.poi-card { padding: 24px; border: 1px solid var(--border); border-radius: 12px; background: #fff; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.poi-card:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-1px); }
.poi-card--emergency { border-color: var(--green); border-width: 2px; background: rgba(45,122,79,0.02); }
.poi-card__header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.poi-card__icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(45,122,79,0.08); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.poi-card__icon--emergency { background: rgba(232,100,44,0.08); color: var(--coral); }
.poi-card__header h3 { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; margin: 0; color: var(--text); }
.poi-card__location { font-size: 0.8125rem; color: var(--text-muted); display: flex; align-items: center; gap: 3px; margin-top: 2px; }
.poi-card__badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.poi-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.poi-badge--green { background: rgba(45,122,79,0.08); color: var(--green); }
.poi-badge--blue { background: rgba(37,99,235,0.08); color: #2563eb; }
.poi-badge--red { background: rgba(220,38,38,0.08); color: #dc2626; }
.poi-badge--neutral { background: var(--bg-warm); color: var(--text-sub); font-weight: 500; }
.tag--size-lg { background: rgba(45,122,79,0.08); color: var(--green); }
.tag--size-md { background: rgba(234,179,8,0.08); color: #b45309; }
.tag--size-sm { background: var(--bg-warm); color: var(--text-sub); }
.poi-card__detail { font-size: 0.8125rem; color: var(--text-sub); margin: 0 0 8px; }
.poi-card__desc { font-size: 0.875rem; color: var(--text-sub); line-height: 1.55; margin: 0 0 12px; }
.poi-card__contact { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 12px; font-size: 0.875rem; }
.poi-card__phone { color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.poi-card__phone:hover { color: var(--green-hover); }
.poi-card__addr { color: var(--text-muted); display: flex; align-items: center; gap: 4px; font-size: 0.8125rem; }
/* Parkplatz-Block (Hundeauslaufgebiet-Card Highlight) */
.poi-card__parkplatz { background: rgba(45,122,79,0.05); border-left: 3px solid var(--green); padding: 12px 14px; margin: 0 0 12px; border-radius: 4px; font-size: 0.875rem; }
.poi-card__parkplatz strong { display: flex; align-items: center; gap: 6px; color: var(--green); font-weight: 700; margin-bottom: 6px; }
.poi-card__parkplatz ul { list-style: none; padding: 0; margin: 0 0 8px; }
.poi-card__parkplatz ul li { padding: 2px 0; color: var(--text-sub); line-height: 1.5; }
.poi-card__parkplatz ul li strong { display: inline; color: var(--text); font-weight: 600; margin-right: 4px; }
.poi-card__parkplatz p { margin: 0; color: var(--text-sub); line-height: 1.5; font-size: 0.8125rem; }
/* POI Card Layout: Info links, Map rechts */
.poi-card__layout { display: flex; gap: 20px; }
.poi-card__body { flex: 1; min-width: 0; }
.poi-card--has-map .poi-card__map { width: 260px; height: 200px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: var(--bg-warm); border: 1px solid var(--border-light); }
@media (max-width: 640px) { .poi-card__layout { flex-direction: column; } .poi-card--has-map .poi-card__map { width: 100%; height: 180px; } }

/* POI Reviews */
.poi-card__reviews { padding-top: 12px; border-top: 1px solid var(--border-light); margin-top: 8px; }
.poi-reviews__summary { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 0.8125rem; }
.poi-reviews__summary:empty { margin: 0; }
.poi-reviews__stars { color: #f59e0b; letter-spacing: 1px; font-size: 0.9375rem; }
.poi-reviews__avg { font-weight: 700; color: var(--text); }
.poi-reviews__count { color: var(--text-muted); }
.poi-reviews__list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.poi-reviews__list:empty { margin: 0; }
.poi-review { background: var(--bg-warm); border-radius: 8px; padding: 10px 12px; font-size: 0.8125rem; }
.poi-review__header { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.poi-review__author { font-weight: 600; color: var(--text); }
.poi-review__date { color: var(--text-muted); font-size: 0.75rem; }
.poi-review__stars { color: #f59e0b; font-size: 0.75rem; letter-spacing: 1px; }
.poi-review__text { color: var(--text-sub); line-height: 1.45; }
.poi-reviews__toggle { margin-bottom: 8px; }
.poi-reviews__form { display: flex; flex-direction: column; gap: 8px; padding: 12px; background: var(--bg-warm); border-radius: 8px; margin-bottom: 8px; }
.poi-reviews__form input[type="text"], .poi-reviews__form textarea { width: 100%; padding: 8px 10px; border: 1px solid var(--border); border-radius: 6px; font-size: 0.8125rem; font-family: var(--font-body); box-sizing: border-box; }
.poi-reviews__form input:focus, .poi-reviews__form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,122,79,0.1); }
.poi-reviews__stars-input { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; color: var(--text-sub); }
.star-rating-input { display: flex; gap: 2px; }
.star-rating-input button { background: none; border: none; font-size: 1.25rem; color: #d1d5db; cursor: pointer; padding: 0 1px; transition: color 0.15s; line-height: 1; }
.star-rating-input button:hover, .star-rating-input button.active { color: #f59e0b; }
.poi-reviews__consent { display: flex; align-items: flex-start; gap: 6px; font-size: 0.75rem; color: var(--text-muted); }
.poi-reviews__consent input { margin-top: 2px; flex-shrink: 0; }
.poi-reviews__consent a { color: var(--green); }
.poi-reviews__success { color: var(--green); font-weight: 600; font-size: 0.8125rem; padding: 8px 0; }

.poi-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border-light); margin-top: 4px; }
.poi-card__footer .poi-card__addr { flex: 1; }
@media (max-width: 540px) { .poi-card__footer { flex-direction: column; align-items: flex-start; } }

/* Ratgeber */
.ratgeber-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 24px; }
.ratgeber-card { display: block; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.15s, box-shadow 0.15s; }
.ratgeber-card:hover { border-color: var(--green); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.ratgeber-card__img { aspect-ratio: 16/9; overflow: hidden; }
.ratgeber-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.ratgeber-card:hover .ratgeber-card__img img { transform: scale(1.03); }
.ratgeber-card__body { padding: 20px 24px; }
.ratgeber-card__date { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.ratgeber-card__body h3 { font-size: 1.125rem; font-weight: 700; margin: 6px 0 8px; }
.ratgeber-card__body p { font-size: 0.875rem; color: var(--text-sub); margin: 0; }

.ratgeber-article { max-width: 720px; margin: 0 auto; hyphens: auto; -webkit-hyphens: auto; overflow-wrap: break-word; word-break: normal; }
.ratgeber-article__hero { margin: 0 -24px 32px; border-radius: 12px; overflow: hidden; }
.ratgeber-article__hero img { width: 100%; height: auto; display: block; }
@media (min-width: 768px) { .ratgeber-article__hero { margin: 0 0 32px; } }
.ratgeber-article__header { margin-bottom: 32px; }
.ratgeber-article__header h1 { font-size: 2rem; line-height: 1.2; }
.ratgeber-article__meta { font-size: 0.8125rem; color: var(--text-muted); margin-top: 8px; }
.ratgeber-article h2 { font-size: 1.375rem; margin: 40px 0 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.ratgeber-article h3 { font-size: 1.125rem; margin: 24px 0 12px; }
.ratgeber-article p { font-size: 1rem; line-height: 1.75; color: var(--text-sub); margin-bottom: 16px; }
.ratgeber-article ul, .ratgeber-article ol { margin: 0 0 16px 20px; color: var(--text-sub); line-height: 1.75; }
.ratgeber-article li { margin-bottom: 6px; }
.ratgeber-article .strand-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 20px; margin-bottom: 16px; }
.ratgeber-article .strand-card h3 { margin-top: 0; border: none; padding: 0; }
.ratgeber-article .strand-card .strand-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; font-size: 0.8125rem; }
.ratgeber-article .strand-card p { font-size: 0.9375rem; margin-bottom: 8px; }
.ratgeber-article .toc { background: var(--bg-warm); border-radius: 8px; padding: 20px 24px; margin-bottom: 32px; }
.ratgeber-article .toc h2 { margin: 0 0 12px; padding: 0; border: none; font-size: 1rem; }
.ratgeber-article .toc ol { margin: 0 0 0 20px; }
.ratgeber-article .toc li { margin-bottom: 4px; font-size: 0.9375rem; }
.ratgeber-article .toc a { color: var(--green); }
/* Inline CTA */
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--green-light);
  border: 1px solid rgba(45,122,79,0.15);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0;
}
.inline-cta__text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--text);
  margin: 0;
}
.inline-cta__text svg { color: var(--green); flex-shrink: 0; }
@media (max-width: 600px) {
  .inline-cta { flex-direction: column; align-items: flex-start; }
}

/* Ratgeber Visual Components */
.key-takeaway { background: rgba(45,122,79,0.04); border-left: 4px solid var(--green); border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 24px 0; }
.key-takeaway__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); margin-bottom: 10px; }
.key-takeaway ul { margin: 0; padding-left: 18px; }
.key-takeaway li { margin-bottom: 6px; font-size: 0.9375rem; line-height: 1.6; color: var(--text-sub); }

.stat-highlight { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; margin: 24px 0; }
.stat-highlight__item { text-align: center; padding: 16px 12px; background: var(--bg-warm); border-radius: 8px; }
.stat-highlight__number { font-size: 1.5rem; font-weight: 700; color: var(--green); font-family: var(--font-heading); }
.stat-highlight__label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

.tip-box { background: rgba(45,122,79,0.04); border: 1px solid rgba(45,122,79,0.15); border-radius: 8px; padding: 16px 20px; margin: 24px 0; }
.tip-box__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); margin-bottom: 6px; }
.tip-box p { margin: 0; font-size: 0.9375rem; color: var(--text-sub); }

.warning-box { background: rgba(232,100,44,0.04); border: 1px solid rgba(232,100,44,0.2); border-radius: 8px; padding: 16px 20px; margin: 24px 0; }
.warning-box__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--coral); margin-bottom: 6px; }
.warning-box p { margin: 0; font-size: 0.9375rem; color: var(--text-sub); }

.info-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin: 24px 0; }
.info-card-grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 540px) { .info-card-grid--4 { grid-template-columns: 1fr; } }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 16px; text-align: center; }

/* Silbentrennung fuer lange deutsche Woerter in Karten/Boxen (benoetigt lang="de" am html-Element) */
body { overflow-wrap: break-word; }
.info-card, .info-card h3, .info-card p,
.cat-card, .trust-item, .ratgeber-card, .ratgeber-card__body h3, .ratgeber-card__body p,
.guide-card, .guide-hub-card, .city-grid-item, .crosslink-card,
.service-card, .service-card__name, .service-card__desc,
.poi-card, .poi-card__header h3, .poi-card__desc, .poi-card__detail,
.gk-card, .gk-card__desc,
.location-card, .location-card__header h3, .location-card__body p,
.pricing-card, .pricing-card li,
.tip-box, .tip-box p,
.warning-box, .warning-box p,
.affiliate-box, .affiliate-box li,
.cta-box, .cta-box p,
.author-box, .author-box__info p,
.gk-warning-box, .gk-warning-box p,
.gk-emergency-box, .gk-emergency-box__content p,
.do-dont li, .checklist li {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}
.info-card__icon { color: var(--green); margin-bottom: 8px; }
.info-card__title { font-size: 0.875rem; font-weight: 700; margin-bottom: 4px; }
.info-card__text { font-size: 0.8125rem; color: var(--text-sub); margin: 0; }

.location-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 20px 24px; margin: 16px 0; transition: border-color 0.15s; }
.location-card:hover { border-color: var(--green); }
.location-card__header { margin-bottom: 12px; }
.location-card__header h3 { font-size: 1.125rem; font-weight: 700; margin: 0 0 8px; }
.location-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.location-card__body p { font-size: 0.9375rem; color: var(--text-sub); margin: 0 0 10px; }
.location-card__details { display: flex; flex-direction: column; gap: 4px; font-size: 0.8125rem; color: var(--text-muted); }
.location-card__detail strong { color: var(--text); }

.comparison-table-wrap { overflow-x: auto; margin: 24px 0; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.comparison-table th { background: var(--bg-warm); padding: 10px 14px; text-align: left; font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-sub); border-bottom: 2px solid var(--border); }
.comparison-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.comparison-table tr:hover { background: rgba(45,122,79,0.02); }
.highlight-green { color: var(--green); font-weight: 600; }
.highlight-coral { color: var(--coral); font-weight: 600; }

.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
@media (max-width: 540px) { .do-dont { grid-template-columns: 1fr; } }
.do-dont__do, .do-dont__dont { padding: 16px 20px; border-radius: 8px; }
.do-dont__do { background: rgba(45,122,79,0.04); border: 1px solid rgba(45,122,79,0.15); }
.do-dont__dont { background: rgba(232,100,44,0.04); border: 1px solid rgba(232,100,44,0.2); }
.do-dont__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.do-dont__do .do-dont__label { color: var(--green); }
.do-dont__dont .do-dont__label { color: var(--coral); }
.do-dont ul { margin: 0; padding-left: 18px; font-size: 0.875rem; line-height: 1.7; color: var(--text-sub); }

.checklist { background: var(--bg-warm); border-radius: 8px; padding: 20px 24px; margin: 24px 0; }
.checklist__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 12px; }
.checklist ul { list-style: none; margin: 0; padding: 0; }
.checklist li { padding: 6px 0 6px 28px; position: relative; font-size: 0.9375rem; color: var(--text-sub); border-bottom: 1px solid rgba(0,0,0,0.04); }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: ''; position: absolute; left: 0; top: 10px; width: 16px; height: 16px; border: 2px solid var(--green); border-radius: 3px; }

.process-steps { margin: 24px 0; }
.process-step { display: flex; gap: 16px; margin-bottom: 16px; }
.process-step__number { width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 700; font-size: 0.875rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.process-step__content h4 { font-size: 1rem; font-weight: 600; margin: 2px 0 4px; }
.process-step__content p { font-size: 0.875rem; color: var(--text-sub); margin: 0; }

.highlight-bars { margin: 24px 0; }
.highlight-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.highlight-bar__label { width: 120px; font-size: 0.8125rem; font-weight: 600; flex-shrink: 0; }
.highlight-bar__track { flex: 1; height: 24px; background: var(--bg-warm); border-radius: 12px; overflow: hidden; }
.highlight-bar__fill { height: 100%; background: var(--green); border-radius: 12px; transition: width 0.3s; }
.highlight-bar__value { width: 60px; font-size: 0.8125rem; font-weight: 600; text-align: right; flex-shrink: 0; }

.season-visual { background: var(--bg-warm); border-radius: 8px; padding: 20px 24px; margin: 24px 0; }
.season-visual__label { font-size: 0.875rem; font-weight: 700; margin-bottom: 12px; }
.season-visual__months { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; margin-bottom: 12px; }
.season-month { padding: 8px 4px; text-align: center; border-radius: 6px; font-size: 0.75rem; font-weight: 600; }
.season-month--free { background: rgba(45,122,79,0.12); color: var(--green); }
.season-month--restricted { background: rgba(232,100,44,0.12); color: var(--coral); }
@media (max-width: 540px) { .season-visual__months { grid-template-columns: repeat(6, 1fr); } }
.season-visual__legend { display: flex; gap: 16px; font-size: 0.75rem; color: var(--text-muted); }
.season-legend::before { content: ''; display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 4px; vertical-align: middle; }
.season-legend--free::before { background: rgba(45,122,79,0.12); }
.season-legend--restricted::before { background: rgba(232,100,44,0.12); }

.affiliate-box { background: rgba(45,122,79,0.04); border: 1px solid rgba(45,122,79,0.15); border-radius: 8px; padding: 16px 20px; margin: 24px 0; }
.affiliate-box__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); margin-bottom: 8px; }
.affiliate-box ul { margin: 0; padding-left: 18px; }
.affiliate-box li { margin-bottom: 4px; font-size: 0.9375rem; }
.affiliate-hint { font-size: 0.75rem; color: var(--text-muted); font-style: italic; margin-top: 8px; }

/* ============================================================================
   Seasonal Banner
   ============================================================================ */

.seasonal-banner {
  background: linear-gradient(135deg, #FEF3ED 0%, #fff8f0 100%);
  border-bottom: 1px solid rgba(232,100,44,0.15);
  font-size: 0.8125rem;
  color: var(--text);
}
.seasonal-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.seasonal-banner__icon { font-size: 1rem; }
.seasonal-banner__text { flex: 1; }
.seasonal-banner__link {
  color: var(--coral);
  font-weight: 600;
  white-space: nowrap;
}
.seasonal-banner__close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.seasonal-banner__close:hover { color: var(--text); }
@media (max-width: 600px) {
  .seasonal-banner__inner { font-size: 0.75rem; padding: 8px 16px; }
  .seasonal-banner__link { display: block; margin-top: 4px; }
}

/* ============================================================================
   City Guide Upgrades
   ============================================================================ */

/* Hero: Stand-Datum */
.page-hero__updated {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Lollipop Chart (Hundesteuer-Vergleich) */
.lollipop-chart {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px 16px;
  margin-bottom: 32px;
}
.lollipop-svg {
  width: 100%;
  height: auto;
  max-height: 60px;
  display: block;
}
.lollipop-legend {
  font-size: 0.8125rem;
  color: var(--text-sub);
  margin: 12px 0 0;
  line-height: 1.6;
}
.lollipop-legend strong {
  color: var(--green);
}

/* Leinenpflicht: Warning-Badge */
.leinen-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(232,100,44,0.05);
  border: 1px solid rgba(232,100,44,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.leinen-warning__icon {
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 1px;
}
.leinen-warning__text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--coral);
  margin-bottom: 4px;
}
.leinen-warning__text span {
  font-size: 0.8125rem;
  color: var(--text-sub);
  line-height: 1.55;
}

/* Leinenpflicht: Brut-Setzzeit Banner */
.leinen-brut-banner {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: var(--text-sub);
}
.leinen-brut-banner strong {
  display: block;
  color: #b45309;
  margin-bottom: 4px;
}
.leinen-brut-banner span {
  font-size: 0.8125rem;
  line-height: 1.55;
}

/* Leinenpflicht: Regelung & Ausnahmen */
.leinen-regelung {
  font-size: 0.9375rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 12px;
}
.leinen-ausnahmen {
  background: var(--bg-warm);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 12px;
}
.leinen-ausnahmen strong {
  font-size: 0.8125rem;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}
.leinen-ausnahmen p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.55;
  margin: 0;
}

/* Cross-Link Grid (andere Guides) */
.crosslink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.crosslink-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.crosslink-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.crosslink-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.crosslink-card__steuer {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Mobile TOC Fix (Punkt 7) */
@media (max-width: 540px) {
  .guide-toc ul {
    flex-wrap: wrap;
    gap: 8px;
  }
  .guide-toc a {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ============================================================================
   Giftköder-Radar
   ============================================================================ */

.gk-hero {
  text-align: center;
  padding: 48px 0 32px;
}
.gk-hero__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(232,100,44,0.1);
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.gk-hero h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.gk-hero__sub {
  color: var(--text-sub);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
}

.gk-section {
  margin-bottom: 48px;
}
.gk-section h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Karte */
.gk-map {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-warm);
  margin-bottom: 16px;
}

.gk-map__empty {
  position: absolute;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: rgba(255,255,255,0.75);
  color: var(--text-sub);
  font-size: 0.9375rem;
  line-height: 1.5;
  pointer-events: none;
}

/* Filter */
.gk-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.gk-filter label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-sub);
}
.gk-filter input {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.875rem;
  width: 100px;
}
.gk-filter input:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,100,44,0.1);
}
.btn--sm {
  padding: 8px 14px;
  font-size: 0.8125rem;
}

/* Meldungs-Liste */
.gk-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gk-empty {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px;
  background: var(--bg-warm);
  border-radius: 8px;
  color: var(--text-sub);
  font-size: 0.9375rem;
}
.gk-empty svg { color: var(--green); flex-shrink: 0; }

.gk-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.gk-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-color: var(--coral);
}
.gk-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.gk-card__meta strong {
  color: var(--coral);
  font-weight: 600;
}
.gk-card__ort {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
  margin-bottom: 4px;
}
.gk-card__desc {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.5;
  margin: 0;
}
.gk-card__ago {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Formular */
.gk-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.gk-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gk-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.gk-form__field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}
.gk-required { color: var(--coral); }
.gk-form__field input,
.gk-form__field textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.gk-form__field input:focus,
.gk-form__field textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,100,44,0.1);
}
.gk-form__field textarea { resize: vertical; min-height: 80px; }
.gk-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-sub);
  margin-bottom: 16px;
  cursor: pointer;
}
.gk-form__consent input { margin-top: 2px; }
.gk-form__consent a { color: var(--coral); }
.gk-form .btn { width: 100%; }

.gk-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  margin-top: 12px;
  background: var(--green-light);
  color: var(--green);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
}
.gk-success svg { flex-shrink: 0; color: var(--green); }

/* Warning Box */
.gk-warning-box {
  background: rgba(232,100,44,0.06);
  border: 2px solid rgba(232,100,44,0.25);
  border-radius: 12px;
  padding: 24px;
}
.gk-warning-box h2 {
  color: var(--coral);
  font-size: 1.125rem;
  margin-bottom: 12px;
}
.gk-action-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gk-action-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-sub);
  line-height: 1.5;
  border-bottom: 1px solid rgba(232,100,44,0.1);
}
.gk-action-list li:last-child { border-bottom: none; }
.gk-action-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(232,100,44,0.15);
  border: 2px solid var(--coral);
}
.gk-action-list li strong { color: var(--text); }

/* Notfall-Box */
.gk-emergency-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fef2f2, #fff5f5);
  border: 2px solid #dc2626;
  border-radius: 12px;
  padding: 24px;
}
.gk-emergency-box__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(220,38,38,0.1);
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gk-emergency-box__content h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 4px;
}
.gk-emergency-box__content p {
  font-size: 0.9375rem;
  color: var(--text-sub);
  margin-bottom: 12px;
}
.gk-emergency-box__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #dc2626;
  text-decoration: none;
  padding: 8px 16px;
  background: rgba(220,38,38,0.08);
  border-radius: 8px;
  transition: background 0.15s;
}
.gk-emergency-box__phone:hover { background: rgba(220,38,38,0.15); }
.gk-emergency-box__hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 0;
}

/* Leaflet Custom Marker */
.gk-marker {
  background: none !important;
  border: none !important;
}

/* Mobile */
@media (max-width: 640px) {
  .gk-hero h1 { font-size: 1.5rem; }
  .gk-map { height: 300px; }
  .gk-form__row { grid-template-columns: 1fr; }
  .gk-form { padding: 16px; }
  .gk-emergency-box { flex-direction: column; align-items: center; text-align: center; }
  .gk-emergency-box__phone { font-size: 1rem; }
  .gk-card { flex-direction: column; gap: 8px; }
  .gk-filter { flex-direction: column; }
  .gk-filter input { width: 100%; }
  .gk-filter .btn--sm { min-height: 44px; }
}

/* Guide Hub-Seite (/guide/) */
.guide-hub-bundesland { margin: 2.5rem 0; }
.guide-hub-bundesland__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green, #2D7A4F);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.guide-hub-bundesland__count {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted, #6b7280);
}
.guide-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.guide-hub-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.guide-hub-card:hover {
  border-color: var(--green, #2D7A4F);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 122, 79, 0.08);
}
.guide-hub-card__icon {
  flex-shrink: 0;
  color: var(--green, #2D7A4F);
  background: rgba(45, 122, 79, 0.08);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-hub-card__body { flex: 1; min-width: 0; }
.guide-hub-card__body h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}
.guide-hub-card__steuer {
  display: block;
  font-size: 0.8125rem;
  color: #374151;
  margin-bottom: 0.125rem;
}
.guide-hub-card__steuer strong { color: var(--green, #2D7A4F); }
.guide-hub-card__info {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted, #6b7280);
}
@media (max-width: 640px) {
  .guide-hub-grid { grid-template-columns: 1fr; }
  .guide-hub-bundesland__title { font-size: 1.125rem; }
}

/* ============================================================================
   Anbieter-Wizard Modal (Double-Opt-in)
   3-Step Wizard fuer /anbieter-werden/, Pattern geklont von brandschutzfinder.de
   ============================================================================ */
.hsv-wizard-dialog {
  border: none;
  border-radius: 16px;
  padding: 0;
  max-width: 720px;
  width: 95vw;
  max-height: 92vh;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  margin: auto;
  position: fixed;
  inset: 0;
}
.hsv-wizard-dialog[open] { display: block; }
.hsv-wizard-dialog::backdrop {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
}
.hsv-wizard {
  padding: 32px 36px 36px;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
}
.hsv-wizard__close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #4a5568;
  padding: 4px 10px;
  border-radius: 8px;
}
.hsv-wizard__close:hover { background: #F8F7F5; color: #2D7A4F; }
.hsv-wizard__indicator {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hsv-wizard__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.hsv-wizard__dot--active {
  background: #2D7A4F;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(45,122,79,0.3);
}
.hsv-wizard__dot--done {
  background: #E8642C;
  color: #fff;
}
.hsv-wizard__step h2 {
  font-size: 22px;
  margin: 0 0 8px;
  color: #1a1a2e;
}
.hsv-wizard__lede {
  color: #4a5568;
  font-size: 14px;
  margin: 0 0 24px;
}
.hsv-wizard__paket-label {
  background: #F8F7F5;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #2D7A4F;
  margin-bottom: 20px;
}
.hsv-listing-search {
  background: #F8F7F5;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 18px;
}
.hsv-listing-search > label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.hsv-listing-search input[type="search"] {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
  background: #fff;
}
.hsv-listing-search input[type="search"]:focus {
  outline: none;
  border-color: #2D7A4F;
  box-shadow: 0 0 0 3px rgba(45,122,79,0.15);
}
.hsv-listing-results {
  margin-top: 8px;
  max-height: 240px;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
}
.hsv-listing-result {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid #f1f5f9;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  color: #1a1a2e;
}
.hsv-listing-result:last-child { border-bottom: none; }
.hsv-listing-result:hover { background: #F8F7F5; }
.hsv-listing-result strong { display: block; font-weight: 600; }
.hsv-listing-result span { color: #64748b; font-size: 12px; }
.hsv-listing-selected {
  margin-top: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #2D7A4F;
  border-radius: 8px;
  font-size: 14px;
}
.hsv-listing-selected strong { display: block; color: #2D7A4F; font-weight: 600; }
.hsv-listing-selected__clear {
  background: transparent;
  border: none;
  color: #4a5568;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 4px;
  padding: 0;
}
.hsv-listing-skip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
  color: #1a1a2e;
  cursor: pointer;
}
.hsv-listing-skip input[type="radio"] { accent-color: #2D7A4F; }
.hsv-wizard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hsv-field {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
}
.hsv-field--small { grid-column: span 1; }
.hsv-field label {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.hsv-field input,
.hsv-field select {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.hsv-field input:focus,
.hsv-field select:focus {
  outline: none;
  border-color: #2D7A4F;
  box-shadow: 0 0 0 3px rgba(45,122,79,0.15);
}
.hsv-req { color: #E8642C; }
.hsv-hint { color: #64748b; font-weight: 400; font-size: 12px; }
.hsv-wizard__categories {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  margin: 20px 0 0;
}
.hsv-wizard__categories legend {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  padding: 0 8px;
}
.hsv-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
  margin-top: 8px;
}
.hsv-checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.hsv-checkbox-item:hover { background: #F8F7F5; }
.hsv-checkbox-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: #2D7A4F; }
.hsv-wizard__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hsv-wizard__actions .btn { min-width: 120px; }
.hsv-wizard__summary {
  background: #F8F7F5;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  border: 1px solid #e2e8f0;
}
.hsv-wizard__summary > div + div { border-top: 1px solid #e2e8f0; padding-top: 6px; margin-top: 6px; }
.hsv-wizard__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: #1a1a2e;
  padding: 14px 0;
}
.hsv-wizard__consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: #2D7A4F; flex-shrink: 0; }
.hsv-wizard__consent a { color: #2D7A4F; text-decoration: underline; }
.hsv-turnstile { margin: 14px 0; min-height: 65px; }
.hsv-wizard__error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  margin: 12px 0;
}
.hsv-wizard__success { padding: 32px 8px; }
.hsv-wizard__success h2 { text-align: center; margin: 0 0 12px; }
@media (max-width: 560px) {
  .hsv-wizard { padding: 24px 18px 28px; }
  .hsv-wizard__grid { grid-template-columns: 1fr; }
  .hsv-field--small { grid-column: span 2; }
  .hsv-checkbox-grid { grid-template-columns: 1fr; }
  .hsv-wizard__actions .btn { width: 100%; }
}

/* ── GEO Answer Capsule ─────────────────────────────────────────────────── */
/* Zitierfähiger Direktantwort-Block für KI-Suche + Featured Snippets. */
.answer-capsule {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.answer-capsule__q {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-hover);
  margin: 0 0 8px;
  line-height: 1.3;
}
.answer-capsule__a {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-sub);
  margin: 0;
}
.answer-capsule__a strong { color: #1f2937; }
@media (max-width: 600px) {
  .answer-capsule { padding: 16px 18px; }
  .answer-capsule__q { font-size: 1.05rem; }
  .answer-capsule__a { font-size: 1rem; }
}

/* ── Cross-Info-Cards (Stickyness-Block) ─────────────────────────────────── */
.cross-info { margin: 32px 0; }
.cross-info h2 { font-size: 1.35rem; margin: 0 0 16px; }
.cross-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.cross-info__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.cross-info__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: var(--green);
}
.cross-info__card--emergency { border-left: 4px solid #dc2626; }
.cross-info__card--emergency:hover { border-color: #dc2626; }
.cross-info__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cross-info__card--emergency .cross-info__icon { color: #dc2626; }
.cross-info__body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.cross-info__title { font-size: 1rem; color: #1f2937; }
.cross-info__stat { font-size: 0.9rem; color: var(--text-sub); }
.cross-info__arrow { flex-shrink: 0; color: var(--green); opacity: 0.6; }
@media (max-width: 600px) {
  .cross-info__card { padding: 14px 16px; }
}
