﻿/* Page: Branchen
   Loaded after site.css. Keep only styles used by this page here. */

/* Branchen: Hero verfeinern */
.industry-hero {
  padding-top: 2.8rem;
  padding-bottom: 2.4rem;
}

.industry-hero .hero-content {
  align-items: center;
  gap: 2.8rem;
}

.industry-hero .hero-text {
  max-width: 760px;
}

.industry-hero .lead {
  font-size: 1.12rem;
  line-height: 1.75;
}

.industry-hero .hero-media {
  flex: 0 0 400px;
}

.industry-hero .hero-image {
  max-width: 400px;
  border-radius: 22px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: #ffffff;
  padding: 0.35rem;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
}

@media (max-width: 900px) {
  .industry-hero .hero-content {
    align-items: flex-start;
    gap: 1.5rem;
  }

  .industry-hero .hero-media {
    flex: none;
  }

  .industry-hero .hero-image {
    max-width: 360px;
  }
}

/* Branchen: Kartenraster */
.industry-content {
  margin-top: 1.2rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 1.4rem 0 2.6rem;
}

.industry-card {
  position: relative;
  padding: 1.45rem 1.45rem 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.industry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(62, 166, 161, 0.34);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.industry-card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: rgba(62, 166, 161, 0.10);
  font-size: 1.25rem;
}

.industry-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #123f46;
}

.industry-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.industry-topics-label {
  margin-bottom: 0.45rem !important;
  color: #123f46 !important;
}

.industry-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.industry-card li {
  margin-bottom: 0.4rem;
  color: #4b5f70;
  font-size: 1rem;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    padding: 1.25rem;
  }
}

/* Branchen: branchenübergreifender Praxisblock */
.industry-org-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.6rem;
  align-items: start;

  margin: 2.8rem 0 3.2rem;
  padding: clamp(1.5rem, 3vw, 2rem);

  border-radius: 22px;
  border: 1px solid rgba(247, 148, 30, 0.22);
  background:
    radial-gradient(circle at top right, rgba(247, 148, 30, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.industry-org-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.22rem 0.65rem;

  border-radius: 999px;
  background: rgba(247, 148, 30, 0.13);
  color: #c85a00;

  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.industry-org-block h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.2;
  color: #111827;
}

.industry-org-block p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.industry-org-examples {
  padding: 1.15rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(247, 148, 30, 0.18);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
}

.industry-org-list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  gap: 0.75rem;
}

.industry-org-list li {
  position: relative;
  margin: 0;
  padding: 0.85rem 0.9rem 0.85rem 2.65rem;

  border-radius: 13px;
  background: rgba(62, 166, 161, 0.065);
  color: #4b5f70;
  font-size: 1rem;
  line-height: 1.45;
}

.industry-org-list li::before {
  content: "✓";
  position: absolute;
  left: 0.9rem;
  top: 0.82rem;

  width: 24px;
  height: 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  background: rgba(62, 166, 161, 0.16);
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .industry-org-block {
    grid-template-columns: 1fr;
  }
}

/* Branchen: Abschluss-CTA */
.industry-final-cta-section {
  padding: 2.8rem 0 0;
  background: transparent;
}

.industry-final-cta {
  margin-top: 0;
}
