.hero-concept-page {
  background: #fff;
}

.ds-hero {
  --ds-shade: 26, 20, 18;
  --ds-star: #e3a600;
  --ds-check: #4ade80;
  position: relative;
  display: flex;
  min-height: 580px;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: rgb(var(--ds-shade));
  color: #fff;
}

.ds-hero__media {
  position: absolute;
  z-index: -2;
  margin: 0;
  inset: 0;
}

.ds-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
}

.ds-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--ds-shade), 0) 40%, rgba(var(--ds-shade), 0.82) 100%),
    linear-gradient(90deg, rgba(var(--ds-shade), 0.78), rgba(var(--ds-shade), 0.35) 42%, rgba(var(--ds-shade), 0) 62%);
  content: "";
  pointer-events: none;
}

.ds-hero__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 42px 72px 72px;
}

.ds-hero__content {
  max-width: 640px;
}

.ds-hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 9px 16px 9px 10px;
  border-radius: var(--r-pill);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  color: #3d3a37;
  font-size: 0.94rem;
  line-height: 1;
}

.ds-hero__rating .mark {
  width: 24px;
  height: 24px;
  flex: none;
}

.ds-hero__rating .stars {
  color: var(--ds-star);
  font-size: 0.94rem;
}

.ds-hero__rating b {
  color: var(--ink);
  font-weight: 800;
}

.ds-hero__count {
  color: #6b6762;
}

.ds-hero h1 {
  max-width: 590px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.4rem, 3.75vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.ds-hero__sub {
  max-width: 46ch;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 1.3vw, 1.19rem);
  line-height: 1.5;
}

.ds-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.ds-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.15s, border-color 0.15s, transform 0.15s;
}

.ds-btn:active {
  transform: translateY(1px);
}

.ds-btn--primary {
  background: #fff;
  color: var(--ink);
}

.ds-btn--primary:hover {
  background: #f3f2f0;
}

.ds-btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
}

.ds-btn--ghost:hover {
  border-color: #fff;
}

.ds-hero__usps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  list-style: none;
}

.ds-hero__usps li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ds-hero__usps .icon {
  width: 14px;
  height: 14px;
  flex: none;
  color: var(--ds-check);
}

@media (max-width: 1100px) {
  .ds-hero {
    min-height: 520px;
  }

  .ds-hero__inner {
    padding: 38px 40px 58px;
  }

  .ds-hero__content {
    max-width: 560px;
  }
}

@media (max-width: 767px) {
  .ds-hero {
    min-height: min(615px, calc(100svh - 77px));
  }

  .ds-hero::before {
    background: linear-gradient(180deg, rgba(var(--ds-shade), 0) 26%, rgba(var(--ds-shade), 0.55) 46%, rgba(var(--ds-shade), 0.94) 62%);
  }

  .ds-hero__inner {
    padding: 20px var(--gutter) 22px;
  }

  .ds-hero__content {
    max-width: none;
  }

  .ds-hero__rating {
    gap: 6px;
    margin-bottom: 14px;
    padding: 7px 12px 7px 8px;
    font-size: 0.72rem;
  }

  .ds-hero__rating .mark {
    width: 18px;
    height: 18px;
  }

  .ds-hero__rating .stars {
    font-size: 0.7rem;
  }

  .ds-hero h1 {
    max-width: none;
    margin-bottom: 12px;
    font-size: 2rem;
  }

  .ds-hero__sub {
    margin-bottom: 16px;
    font-size: 0.94rem;
  }

  .ds-hero__actions {
    display: block;
  }

  .ds-hero__secondary {
    display: none;
  }

  .ds-btn--primary {
    width: 100%;
    min-height: 50px;
  }

  .ds-hero__usps {
    gap: 6px 16px;
    font-size: 0.81rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ds-btn {
    transition: none;
  }
}
