/* === HERO === */

.hero-image {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0b1118;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: brightness(0.42) saturate(0.95);
  transition: transform 10s ease-out, filter 1s ease-in-out;
  z-index: 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7, 11, 16, 0.55), rgba(7, 11, 16, 0.78)),
    radial-gradient(circle at center, rgba(230, 57, 70, 0.08), transparent 45%);
  z-index: 0;
  pointer-events: none;
}

.hero-image:hover::before {
  transform: scale(1.12);
  filter: brightness(0.5) saturate(1);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.25rem 3rem;
  background: rgba(13, 18, 26, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 1.4s ease forwards;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-overlay h1 {
  font-family: 'Segoe UI', 'Calibri', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: 2px;
  color: #f5f7fb;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1.2s ease forwards 0.3s;
}

.hero-overlay p {
  font-family: 'Segoe UI', 'Calibri', sans-serif;
  font-size: clamp(1rem, 2vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 2px;
  color: #d7dde7;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1.2s ease forwards 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  color: #f5f7fb;
  opacity: 0.75;
  z-index: 2;
  animation: scrollPulse 1.8s ease-in-out infinite;
  cursor: pointer;
  user-select: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

@keyframes scrollPulse {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, 10px);
    opacity: 1;
  }
}


/* === LÖSUNGEN === */

.solution-section {
  padding: 6rem 2rem;
  background: #0f141b;
}

.solution-section.alt {
  background: #131a22;
}

.solution-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.solution-text {
  flex: 1 1 500px;
}

.solution-text h2 {
  color: #e63946;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.solution-text .subline {
  font-size: 1.2rem;
  color: #aeb8c6;
  margin-bottom: 1.5rem;
}

.solution-text p {
  line-height: 1.7;
  color: #e7ecf3;
  margin-bottom: 1rem;
  text-align: justify;
  hyphens: auto;
  text-justify: inter-word;
}

.solution-text ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.solution-text li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
  color: #e7ecf3;
  line-height: 1.6;
  text-align: left;
}

.solution-text li::before {
  content: "•";
  color: #e63946;
  font-weight: bold;
  flex-shrink: 0;
  line-height: 1;
}

.solution-image {
  flex: 1 1 500px;
}

.solution-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
  transition: transform 0.5s ease, box-shadow 0.35s ease;
}

.solution-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}