.full-slider {
  position: relative;
  width: 100%;
  background: #0f1112;
  overflow: hidden;
}

.full-slider__track {
  position: relative;
  min-height: 580px;
}

.full-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.full-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.full-slider__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 11, 0.85) 0%, rgba(8, 10, 11, 0.65) 45%, rgba(8, 10, 11, 0.2) 100%);
}

.full-slider__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 120px 8vw;
  color: #ffffff;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.full-slider__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.full-slider__title {
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.05;
  margin-bottom: 18px;
  font-weight: 700;
}

.full-slider__text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  max-width: 520px;
  min-height: calc(1.6em * 4);
}

.full-slider__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f1112;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.full-slider__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.full-slider__controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  padding: 0 28px;
}

.full-slider__arrow {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--primary-contrast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  pointer-events: auto;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.full-slider__arrow:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: scale(1.03);
}

.full-slider__arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .full-slider__track {
    min-height: 520px;
  }

  .full-slider__content {
    padding: 96px 10vw;
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .full-slider__track {
    min-height: 440px;
  }

  .full-slider__content {
    padding: 84px 8vw;
    min-height: 0;
    height: 100%;
    box-sizing: border-box;
  }

  .full-slider__title {
    font-size: 26px;
  }

  .full-slider__controls {
    inset: auto 0 calc(14px + env(safe-area-inset-bottom, 0px));
    padding: 0 14px;
    align-items: flex-end;
  }

  .full-slider__arrow {
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(12, 20, 23, 0.44);
    color: #ffffff;
    backdrop-filter: blur(6px);
  }

  .full-slider__arrow svg {
    width: 18px;
    height: 18px;
  }
}
