/* ==========================================
   KISTENFREI – FIRMENAUFLÖSUNG STYLES
   Modul: Firmenauflösung (Hub + Stadt-Seiten)
   Version: 1.0
   ========================================== */

/* --- HERO HUB-VARIANTE --- */
.hub-hero-inner {
  grid-template-columns: 1fr 380px;
}

/* Stadtauswahl-Button im Hero (Hub-Seite) */
.hcc-btn-city {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hcc-btn-city:hover {
  background: rgba(26,122,110,.25);
  border-color: rgba(26,122,110,.5);
}
.city-arrow {
  font-size: .9rem;
  opacity: .5;
  transition: transform .15s, opacity .15s;
}
.hcc-btn-city:hover .city-arrow {
  transform: translateX(4px);
  opacity: 1;
}
.hcc-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 4px 0;
}

/* --- SITUATIONEN-GRID (3-Spaltig, Hub + Stadt) --- */
.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sit-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: all .22s;
}
.sit-card:hover {
  border-color: var(--teal);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.sit-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.sit-label {
  font-size: .92rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 7px;
}
.sit-card p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.sit-answer {
  font-size: .8rem;
  font-weight: 700;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* --- LEISTUNGS-GRID (Navy-Hintergrund) --- */
.leistung-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}
.leistung-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: border-color .2s;
}
.leistung-item:hover {
  border-color: rgba(26,122,110,.4);
}
.li-icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  background: rgba(26,122,110,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.li-body h3 {
  color: #fff;
  font-size: .9rem;
  margin-bottom: 5px;
}
.li-body p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0;
}

/* --- STADT-HUB-GRID (Hub-Seite Servicegebiet) --- */
.stadt-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.stadt-hub-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .22s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.stadt-hub-card:hover {
  border-color: var(--teal);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.shc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shc-icon {
  font-size: 1.6rem;
}
.shc-badge {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: rgba(26,122,110,.12);
  color: var(--teal);
  border-radius: 100px;
  padding: 3px 10px;
}
.shc-badge-gray {
  background: var(--gray-100);
  color: var(--text-muted);
}
.stadt-hub-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}
.stadt-hub-card p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.shc-umland {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.shc-cta {
  font-size: .83rem;
  font-weight: 800;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: gap .15s;
}
.stadt-hub-card:hover .shc-cta {
  gap: 8px;
}
.shc-andere {
  border-style: dashed;
  border-color: var(--gray-200);
}
.shc-andere:hover {
  border-style: solid;
}
.shc-cta-phone {
  text-decoration: none;
  color: var(--teal);
}

/* --- BALD-VERFÜGBAR (geplante Städte) --- */
.bald-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bald-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r);
  padding: 12px 16px;
  opacity: .65;
}
.bald-icon { 
  font-size: 1.1rem; 
}
.bald-card strong {
  display: block;
  font-size: .85rem;
  font-weight: 800;
  color: var(--navy);
}
.bald-card span {
  font-size: .74rem;
  color: var(--text-muted);
}
.bald-badge {
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  background: var(--gray-100);
  color: var(--text-muted);
  border-radius: 100px;
  padding: 2px 8px;
  margin-left: 4px;
  flex-shrink: 0;
}

/* --- KENNZAHL-BOX (Hub-Seite) --- */
.kennzahl-box {
  background: var(--navy);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.kz-inner {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.kz-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.kz-item {
  background: rgba(255,255,255,.05);
  border-radius: var(--r);
  padding: 18px;
  text-align: center;
}
.kz-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 6px;
}
.kz-lbl {
  display: block;
  font-size: .74rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}
.kz-cta {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.kz-cta p {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* --- STADTTEILE-TAGS (Stadt-Seite) --- */
.stadtteil-tag {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 10px 18px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--sh);
}

/* --- RESPONSIVE --- */
@media(max-width:900px) {
  .hub-hero-inner { 
    grid-template-columns: 1fr; 
  }
  .situation-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .leistung-grid { 
    grid-template-columns: 1fr; 
  }
}
@media(max-width:600px) {
  .situation-grid { 
    grid-template-columns: 1fr; 
  }
  .stadt-hub-grid { 
    grid-template-columns: 1fr; 
  }
  .kz-row { 
    grid-template-columns: 1fr 1fr; 
  }
}