.next-level {
  padding-block: 0 6vi;
  background: var(--color-white);
}

.next-level__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}

/* Header */
.next-level__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-inline-size: 800px;
}

.next-level__heading {
  font-size: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-transform: uppercase;
}

.next-level__subtitle {
  font-size: clamp(0.875rem, 0.6rem + 0.7vw, 1.25rem);
  line-height: 1.2;
  color: var(--color-text);
  opacity: 0.6;
}

/* Content split */
.next-level__content {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

/* Accordion list */
.next-level__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 384px;
  flex-shrink: 0;
}

.next-level__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 16px;
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.02);
  cursor: pointer;
}

.next-level__item--active {
  background: rgba(26, 26, 26, 0.08);
}

.next-level__item-text {
  font-size: clamp(0.875rem, 0.6rem + 0.7vw, 1.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.next-level__item-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.next-level__item-arrow svg {
  width: 10px;
  height: 16px;
  fill: none;
  stroke: var(--color-text);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.next-level__item:not(.next-level__item--active) .next-level__item-arrow {
  opacity: 0;
}

/* Visual */
.next-level__visual {
  flex: 1;
  min-width: 0;
  background: #f8f8f8;
  border-radius: 24px;
  padding: 16px;
  aspect-ratio: 802 / 610;
  overflow: hidden;
}

.next-level__visual img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .next-level__content {
    flex-direction: column;
  }

  .next-level__list {
    width: 100%;
  }
}
