/* Erweiterte Styles im Stil von Team Internet */

/* Größerer Hero-Bereich */
header.hero {
  padding: 100px 0 80px;
  margin-bottom: 80px;
}

.hero-card {
  padding: 48px;
}

h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 20px 0 20px;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* Größere Feature-Cards für Leistungen */
section#leistungen {
  padding: 100px 0;
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
  margin: 60px 0;
}

section#leistungen h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 50% 0%, rgba(255,79,207,.1), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

.feature-card:hover:before {
  opacity: 1;
}

.feature-card > * {
  position: relative;
}

.feature-card h3 {
  font-size: 24px;
  margin: 0 0 16px;
  font-weight: 700;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.feature-card .list {
  margin-top: auto;
}

/* Bereichs-Trennung */
section {
  padding: 100px 0;
  position: relative;
}

section#arbeitsweise {
  background: rgba(255,255,255,.03);
  margin: 0 -22px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: var(--radius);
}

section#compliance {
  background: rgba(255,255,255,.02);
  margin: 0 -22px;
  padding-left: 22px;
  padding-right: 22px;
}

section#kontakt {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  margin: 0 -22px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: var(--radius);
}

section#kontakt .card {
  max-width: 800px;
  margin: 0 auto;
}

/* Größere Überschriften */
h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 50px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

/* Mehr Whitespace */
.card {
  padding: 28px;
}

.split .card {
  padding: 32px;
}

/* Größere Buttons */
.btn {
  padding: 14px 24px;
  font-size: 15px;
}

.btn.primary {
  padding: 14px 28px;
  font-weight: 700;
}

/* Facts verbessert */
.facts {
  margin-top: 32px;
  gap: 16px;
}

.fact {
  padding: 16px 18px;
  font-size: 15px;
}

/* Hero Logo größer */
.hero-logo img {
  width: 350px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
}

/* CTA Bereich größer */
.cta {
  margin-top: 32px;
  gap: 16px;
}

/* Mobile Anpassungen */
@media (max-width: 980px) {
  header.hero {
    padding: 60px 0 40px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  section {
    padding: 60px 0;
  }
  
  section#leistungen h2 {
    font-size: 28px;
  }
  
  .feature-card {
    padding: 24px;
  }
  
  .hero-logo img {
    width: 200px;
  }
}
