/* Roboter-Modelldetail – Ergänzung zum gemeinsamen Detailseitenstil */

.hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
  background: #ffffff;
}

.hero::before,
.hero::after {
  display: none;
  content: none;
}

.hero-inner {
  width: min(var(--mp-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.subheadline {
  margin: -12px 0 22px;
  color: var(--mp-blue);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  isolation: isolate;
  box-shadow: none;
}

.hero-visual::after {
  position: absolute;
  bottom: 8%;
  left: 54%;
  z-index: -1;
  width: 56%;
  height: 28px;
  border-radius: 50%;
  background: rgba(7, 58, 89, 0.17);
  content: "";
  filter: blur(18px);
  transform: translateX(-50%) scaleX(1.12);
  pointer-events: none;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(116%, 720px);
  max-width: none;
  height: auto;
  min-height: 0;
  max-height: 560px;
  padding: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(7, 42, 60, 0.16));
  transform: translate(4%, -1%) rotate(-1.4deg);
  transform-origin: 50% 62%;
}

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 190px;
  text-align: center;
}

.card > strong:first-child {
  color: var(--mp-blue);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card > strong:first-child::before {
  margin-right: auto;
  margin-left: auto;
}

.card > span {
  margin-top: 8px;
  color: var(--mp-muted);
  display: block;
  font-size: 14px;
  line-height: 1.55;
}

.hidden {
  display: none !important;
}

.param-toggle {
  width: 48px;
  height: 48px;
  margin: 22px auto;
  border: 1px solid var(--mp-border);
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(31, 67, 86, 0.11);
  transition: transform 180ms ease, border-color 180ms ease;
}

.param-toggle:hover {
  border-color: var(--mp-blue-light);
  transform: translateY(-2px);
}

.arrow {
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--mp-blue);
  border-bottom: 2px solid var(--mp-blue);
  transform: translateY(-3px) rotate(45deg);
  transition: transform 180ms ease;
}

.arrow.open {
  transform: translateY(3px) rotate(225deg);
}

.split .panel {
  text-align: left;
}

.icon {
  height: 78px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
}

.icon img {
  width: auto;
  max-width: 92px;
  height: 72px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-visual img {
    width: min(94%, 680px);
    margin: 0 auto;
    transform: translateY(-1%) rotate(-1deg);
  }
}

@media (max-width: 680px) {
  .hero-inner {
    width: min(var(--mp-max), calc(100% - 28px));
    padding: 48px 0 42px;
  }

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

  .hero-visual::after {
    bottom: 7%;
    width: 66%;
    height: 22px;
  }

  .hero-visual img {
    width: min(108%, 520px);
    max-height: 430px;
  }

  .cards {
    grid-template-columns: 1fr !important;
  }
}
