.hero{
  padding: 28px 0 56px;
  background: var(--color-bg);
}

.hero-box{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: center;
  min-height: 680px;
  padding: clamp(24px, 4vw, 72px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(31, 42, 51, 0.08);
  overflow: hidden;
}

.hero-copy{
  min-width: 0;
}

.hero-copy h1{
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.hero-copy p{
  max-width: 640px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  margin-bottom: 34px;
  color: var(--color-text-soft);
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual{
  min-height: 560px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(53,122,128,0.10) 0%,
    rgba(53,122,128,0.04) 55%,
    rgba(242,140,56,0.06) 100%
  );
  pointer-events: none;
}


.hero-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-mark{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(88%, 520px);
  height: auto;
  opacity: 1;
}

/* Laptop / Tablet quer */
@media (max-width: 1100px){
  .hero-box{
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    gap: 28px;
  }

  .hero-copy h1{
    max-width: 12ch;
  }

  .hero-visual{
    min-height: 440px;
  }
}

/* Tablet / großes Mobile */
@media (max-width: 860px){
  .hero{
    padding: 20px 0 44px;
  }

  .hero-box{
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
    padding: 28px;
  }

  .hero-copy h1{
    max-width: none;
  }

  .hero-copy p{
    max-width: none;
  }

  .hero-visual{
    min-height: 340px;
    order: -1;
  }

  .hero-mark{
    width: min(72%, 360px);
  }
}

/* kleines Mobile */
@media (max-width: 560px){
  .hero-box{
    padding: 20px;
    border-radius: 20px;
  }

  .hero-copy h1{
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1;
    margin-bottom: 18px;
  }

  .hero-copy p{
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn{
    width: 100%;
  }

  .hero-visual{
    min-height: 260px;
    border-radius: 18px;
  }

  .hero-mark{
    width: min(78%, 280px);
  }
}