:root {
  --tvx-green-accent: #2ec659;
  --tvx-green-dark: #004438;
  --tvx-text-light: #f2f9f2;
  --tvx-text-muted: rgba(242, 249, 242, 0.6);
  --tvx-border-muted: rgba(242, 249, 242, 0.2);
}

.tvx-slider-section {
  background: transparent;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: var(--tvx-text-light);
  box-sizing: border-box;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.tvx-steps {
  display: flex;
  gap: 30px;
}

.tvx-step {
  flex: 1;
  padding: 0 0 24px;
  cursor: pointer;
  position: relative;
}

.tvx-step-progress-bg {
  height: 2px;
  background: var(--tvx-border-muted);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 24px;
}

.tvx-step-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--tvx-green-accent);
  border-radius: 2px;
}

.tvx-step-num {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: var(--tvx-green-accent);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.tvx-step h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--tvx-text-light);
  margin: 0 0 10px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.tvx-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--tvx-text-muted);
  margin: 0;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.tvx-step.active .tvx-step-num,
.tvx-step.active h3,
.tvx-step.active p {
  opacity: 1;
}

.tvx-step.active p {
  color: var(--tvx-text-light);
}

.tvx-step.done .tvx-step-num,
.tvx-step.done h3,
.tvx-step.done p {
  opacity: 0.45;
}

.tvx-slides-wrap {
  position: relative;
  border-radius: 20px;
  margin-top: 40px;
  overflow: hidden;
}

.tvx-slide {
  display: none;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.tvx-slide.active {
  display: block;
}

.tvx-slide img {
  width: 100%;
  height: 720px;
  object-fit: contain;
  display: block;
  border-radius: 20px;
}

.tvx-mob-section {
  display: none;
  background: transparent;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: var(--tvx-text-light);
  box-sizing: border-box;
  width: 100%;
  max-width: 403px;
  margin: 0 auto;
}

.tvx-mob-slide {
  display: none;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.tvx-mob-slide.active {
  display: flex;
}

.tvx-mob-image {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}

.tvx-mob-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  object-fit: cover;
}

.tvx-mob-card {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tvx-mob-progress-bg {
  height: 2px;
  background: rgba(242, 249, 242, 0.6);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 24px;
}

.tvx-mob-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--tvx-green-accent);
  border-radius: 2px;
}

.tvx-mob-step-num {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: var(--tvx-green-accent);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.tvx-mob-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: var(--tvx-text-light);
  margin: 0 0 20px;
}

.tvx-mob-card p {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 15px;
  color: var(--tvx-text-light);
  margin: 0;
}

@media (max-width: 768px) {
  .tvx-steps,
  .tvx-slides-wrap {
    display: none;
  }

  .tvx-mob-section {
    display: block;
  }
}
