.sunbeds-hero {
  padding: 4rem 0 2.25rem;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 204, 0, 0.16), transparent 22%),
    radial-gradient(circle at 90% 0%, rgba(204, 51, 153, 0.10), transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.sunbeds-hero__content {
  max-width: 56rem;
}

.sunbeds-hero__eyebrow,
.sunbeds-card__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-purple);
}

.sunbeds-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--color-heading);
}

.sunbeds-hero__intro {
  max-width: 48rem;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--color-text);
}

.sunbeds-levels,
.sunbeds-highlight {
  background: linear-gradient(180deg, #f7f8fc 0%, #f4f7fd 100%);
}

.sunbeds-levels {
  padding: 0 0 2.5rem;
}

.sunbeds-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.sunbeds-card,
.sunbeds-highlight__card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(91, 33, 182, 0.10);
  border-radius: 1.5rem;
  box-shadow: 0 12px 32px rgba(25, 30, 70, 0.07);
}

.sunbeds-card {
  overflow: hidden;
}

.sunbeds-card__image {
  padding: 1.25rem 1.25rem 0;
}

.sunbeds-card__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sunbeds-card__content {
  padding: 1.25rem 1.4rem 1.4rem;
}

.sunbeds-card h2,
.sunbeds-highlight__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
  color: var(--color-heading);
}

.sunbeds-card p,
.sunbeds-highlight__copy p,
.sunbeds-card li {
  color: var(--color-text);
  line-height: 1.65;
}

.sunbeds-card p {
  margin: 0 0 0.9rem;
}

.sunbeds-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.sunbeds-card li {
  margin-bottom: 0.45rem;
}

.sunbeds-highlight {
  padding: 0 0 3.5rem;
}

.sunbeds-highlight__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem;
}

.sunbeds-highlight__copy {
  max-width: 48rem;
}

.sunbeds-highlight__copy p {
  margin: 0;
}

.sunbeds-highlight__actions {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .sunbeds-grid {
    grid-template-columns: 1fr;
  }

  .sunbeds-highlight__card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .sunbeds-hero {
    padding: 3rem 0 2rem;
  }

  .sunbeds-card__image,
  .sunbeds-card__content,
  .sunbeds-highlight__card {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .sunbeds-highlight__actions {
    width: 100%;
  }

  .sunbeds-highlight__actions .btn {
    width: 100%;
  }
}