.hero {
  min-height: calc(100vh - 86px);
  padding: 72px 44px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, #ffffff 0%, #ffffff 58%, #fff4ef 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0%, rgba(255, 61, 0, 0.05) 100%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: 560px;
  height: 560px;
  background: rgba(255, 61, 0, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  width: min(760px, 100%);
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}

.eyebrow span {
  width: 52px;
  height: 4px;
  background: var(--orange);
  border-radius: 99px;
  flex-shrink: 0;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  color: var(--black);
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.hero h1 strong {
  display: block;
  color: var(--orange);
  font-weight: 900;
}

.hero-text {
  max-width: 610px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.92) 12%,
    rgba(255, 255, 255, 0.55) 28%,
    rgba(255, 255, 255, 0) 48%
  );
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;
}

@media (max-width: 900px) {
  .hero-visual {
    position: relative;
    width: 100%;
    height: 230px;
    margin-top: 24px;
  }

  .hero-visual img {
    object-position: center;
  }
}

/* MOBILNÁ OPRAVA HERO SEKcie */
@media (max-width: 900px) {
  .hero {
    display: block;
    min-height: auto;
    padding: 42px 18px 48px;
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 3;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    margin-bottom: 22px;
  }

  .hero-text {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    height: 190px;
    margin: 8px 0 24px;
    inset: auto;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .status-card {
    width: 100%;
    min-width: 0;
  }

  .hero-button {
    width: 100%;
  }
}

/* MOBIL: hero obrázok ako jemné pozadie za nadpisom */
@media (max-width: 900px) {
  .hero {
    display: block;
    position: relative;
    min-height: auto;
    padding: 38px 18px 46px;
    overflow: hidden;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    position: absolute;
    top: 26px;
    right: -70px;
    width: 360px;
    height: 260px;
    z-index: 1;
    margin: 0;
    opacity: 0.18;
    pointer-events: none;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .eyebrow,
  .hero h1,
  .hero-text,
  .status-card,
  .hero-button {
    position: relative;
    z-index: 3;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 11vw, 50px);
    line-height: 1.02;
    letter-spacing: -0.06em;
  }

  .hero-text {
    max-width: 100%;
  }

  .status-card,
  .hero-button {
    width: 100%;
    min-width: 0;
  }
}