body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: #0f1115;
  color: #e5e7eb;
}

.dark-page {
  width: 100%;
}

/* HERO */
.hero-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.hero-image {
  background: #1f2937; /* Platzhalter */
  height: 100%;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,17,21,0.3),
    rgba(15,17,21,0.85)
  );
  display: flex;
  align-items: flex-end;
}

.hero-content {
  padding: 60px 8%;
}

.hero-content h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
}

.role {
  margin-top: 8px;
  font-size: 18px;
  color: #9ca3af;
}

/* CONTENT */
.content-section {
  padding: 60px 8%;
  max-width: 1100px;
  margin: auto;
}

.intro {
  font-size: 20px;
  line-height: 1.6;
  max-width: 800px;
}

/* Kompetenzen */
h2 {
  margin-bottom: 30px;
  font-size: 32px;
}

.competence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 20px;
}

li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
}

/* Buttons */
.cta {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-dark {
  background: #1f2937;
  color: #fff;
}

.btn-dark:hover {
  background: #111827;
}

.btn-accent {
  background: #2563eb;
  color: #fff;
}

.btn-accent:hover {
  background: #1d4ed8;
}

/* Responsive */
@media (max-width: 768px) {
  .competence-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}
