/* Leistungen Hub and Spoke Styles */

/* ---------------- HUB ---------------- */
.hub-hero {
  padding: calc(var(--nav-h) + 6rem) clamp(1.5rem, 5vw, 4rem) 6rem;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.hub-hero h1 {
  font-family: var(--H);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

.hub-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(245, 243, 238, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.hub-grid {
  padding: 6rem clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  background: var(--cream);
}

.hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
}

.hub-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(11, 14, 26, 0.08);
  border-color: var(--green);
}

.hub-card-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
  width: 80px;
  height: 80px;
  background: rgba(29, 186, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.hub-card h2 {
  font-family: var(--H);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hub-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
}

.hub-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--B);
  font-weight: 600;
  color: var(--green);
  transition: gap 0.2s ease;
}

.hub-card:hover .hub-card-cta {
  gap: 1rem;
}

/* ---------------- SPOKE (Landingpage) ---------------- */
.spoke-hero {
  padding: calc(var(--nav-h) + 6rem) clamp(1.5rem, 5vw, 4rem) 6rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.spoke-hero-content h1 {
  font-family: var(--H);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.spoke-hero-content p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.spoke-hero-visual {
  position: relative;
}

.spoke-hero-visual::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(29, 186, 110, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.spoke-section {
  padding: 8rem clamp(1.5rem, 5vw, 4rem);
}

.spoke-section-dark {
  background: var(--ink);
  color: var(--cream);
}

.spoke-section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.spoke-section-title h2 {
  font-family: var(--H);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.spoke-section-title p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.spoke-section-dark .spoke-section-title p {
  color: rgba(245, 243, 238, 0.7);
}

.spoke-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.spoke-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}

.spoke-section-dark .spoke-feature {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.spoke-feature-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.spoke-feature h3 {
  font-family: var(--H);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.spoke-feature p {
  color: var(--muted);
  line-height: 1.6;
}

.spoke-section-dark .spoke-feature p {
  color: rgba(245, 243, 238, 0.7);
}

@media (max-width: 900px) {
  .spoke-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .spoke-hero-content p {
    margin: 0 auto 2.5rem;
  }
}
