/* Reset and Base Styles */
* {
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Roboto Flex', 'Inter', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  overflow-x: hidden;
  background: #fff;
}

.main {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/* Survey Container - будет содержать шаги опроса */
.survey-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/* Базовые стили для шагов опроса - единый дизайн */
.step-survey {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #FBFBFB;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.step-survey .step__background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #FBFBFB;
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 0;
}

.step-survey .step__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px 12px;
  box-sizing: border-box;
  justify-content: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Оптимизация для больших экранов (десктоп) */
@media (min-width: 1200px) {
  .step-survey .step__content {
    max-width: 950px;
    padding: 25px 50px;
  }
  
  .step-intro__body {
    max-width: 750px;
}

.step__body {
    max-width: 750px;
    margin: clamp(45px, 9vh, 75px) auto 0;
  }
  
  .step__question {
    max-width: 700px;
    font-size: clamp(38px, 3.2vw, 46px);
    margin-bottom: clamp(22px, 2.8vh, 34px);
  }
  
  .step__subtitle {
    max-width: 700px;
    font-size: clamp(22px, 2.4vw, 30px);
    margin-bottom: 30px;
  }
  
  .step__description {
    max-width: 700px;
    font-size: clamp(20px, 2.3vw, 28px);
    margin-bottom: 30px;
  }
  
  .step__answers {
    max-width: 650px;
    gap: 20px;
  }
  
  .btn {
    font-size: clamp(22px, 2.3vw, 30px);
    padding: 18px 32px;
    max-width: 650px;
  }
  
  .step-intro__start-btn {
    max-width: 650px;
    font-size: clamp(22px, 2.3vw, 30px);
    padding: 18px 32px;
  }
  
  .step__footer {
    max-width: 750px;
    margin-top: clamp(55px, 11vh, 85px);
  }
  
  .step__answers--cards {
    max-width: 800px;
    gap: 30px;
  }
  
  .step__answer-card {
    max-width: 360px;
    min-width: 300px;
  }
}

.step-survey .step__content::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.step__body {
  width: 80%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: clamp(30px, 8vh, 60px) 10% 0 10%;
  flex: 0 0 auto;
  justify-content: flex-start;
  min-height: 0;
}

/* Для шагов с карточками - отступ такой же как на первом шаге (step-intro__body) */
.step__body--with-cards {
  width: 80%;
  margin: clamp(30px, 8vh, 60px) 10% 0 10%;
  justify-content: flex-start;
}

.step__question {
  width: 100%;
  max-width: 523px;
  min-height: auto;
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.3;
  text-align: center;
  color: #070B1E;
  margin: 0 auto clamp(15px, 2.5vh, 30px);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.step__subtitle {
  width: 100%;
  max-width: 523px;
  min-height: auto;
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(18px, 3.5vw, 36px);
  line-height: 1.35;
  text-align: center;
  color: #141E07;
  margin: 0 auto clamp(12px, 2vh, 20px);
  opacity: 0.9;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.step__description {
  width: 100%;
  max-width: 523px;
  min-height: auto;
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(18px, 3.5vw, 36px);
  line-height: 1.35;
  text-align: center;
  color: #141E07;
  margin: 0 auto 30px;
  opacity: 0.9;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.step__answers {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  margin-top: 0;
  margin-bottom: 0;
  flex: 0 0 auto;
  align-items: center;
}

/* Горизонтальное расположение кнопок, если их 2 или больше */
.step__answers--horizontal {
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
  max-width: 100% !important;
  width: 100% !important;
}

.step__answers--horizontal .btn {
  flex: 1 1 auto;
  min-width: 180px;
  max-width: 280px;
  width: auto;
  font-size: clamp(18px, 2.2vw, 26px);
  padding: 14px 20px;
}

.step__answers--horizontal .btn .arrow-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  margin-left: 10px;
}

.step__answers--horizontal .btn .arrow-icon::after {
  width: 32px;
  height: 18px;
}

/* Стили для карточек с изображениями (шаг выбора пола) */
.step__answers--cards {
  flex-direction: row !important;
  max-width: 100% !important;
  width: 80% !important;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: stretch;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  align-self: center;
  flex: 0 0 auto;
}

.step__answer-card {
  position: relative;
  width: auto !important;
  max-width: 350px;
  min-width: 250px;
  flex: 0 1 auto !important;
  flex-shrink: 0;
  display: block;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step__answer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: rgba(14, 147, 235, 0.3);
}

.step__answer-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  position: relative;
}

.step__answer-card-button {
  position: absolute;
  bottom: 20px;
  left: 12px;
  right: 12px;
  width: calc(100% - 24px);
  padding: 14px 24px;
  background: linear-gradient(135deg, #0E93EB 0%, #0B7BC8 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(24px, 3.3vw, 37px);
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.step__answer-card-button:hover {
  background: linear-gradient(135deg, #0B7BC8 0%, #0A6BA8 100%);
}

/* Анимация при клике на карточки */
.step__answer-card.clicked {
  animation: cardClick 0.4s ease-out;
}

@keyframes cardClick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

/* Адаптивные стили для карточек */
@media (max-width: 768px) {
  .step__answers--cards {
    flex-direction: row !important;
    gap: 12px;
    max-width: 100% !important;
    width: 100% !important;
    flex-wrap: nowrap;
  }

  .step__answer-card {
    max-width: 220px;
    min-width: 180px;
    flex: 0 1 auto;
  }

  .step__answer-card-image {
    aspect-ratio: 0.9;
  }

  .step__answer-card-button {
    bottom: 16px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    padding: 10px 14px;
    font-size: clamp(18px, 2.6vw, 26px);
  }
}

@media (max-width: 480px) {
  .step__answers--cards {
    flex-direction: row !important;
    gap: 10px;
    flex-wrap: nowrap;
    max-width: 100% !important;
    width: 100% !important;
  }

  .step__answer-card {
    max-width: 170px;
    min-width: 150px;
  }

  .step__answer-card-image {
    aspect-ratio: 0.85;
  }

  .step__answer-card-button {
    bottom: 14px;
    left: 8px;
    right: 8px;
    width: calc(100% - 16px);
    padding: 8px 12px;
    font-size: clamp(21px, 3.3vw, 32px);
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #0E93EB 0%, #0B7BC8 100%);
  color: #FFFFFF;
  position: relative;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(24px, 3.3vw, 37px);
  line-height: 1.2;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0px 6px 20px rgba(14, 147, 235, 0.3), 0px 3px 10px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.01em;
  min-height: auto;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.btn span:first-child {
  flex: 1;
  text-align: left;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 24px rgba(14, 147, 235, 0.4), 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0px 4px 12px rgba(14, 147, 235, 0.3), 0px 2px 6px rgba(0, 0, 0, 0.1);
}

/* Анимация при клике на все кнопки */
.btn.clicked {
  animation: buttonClick 0.4s ease-out;
}

@keyframes buttonClick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/* Footer для шагов опроса - показывается при прокрутке */
.step__footer {
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: clamp(100px, 25vh, 200px); /* Увеличен отступ для десктопа */
  padding-top: 20px;
  padding-bottom: 20px;
  flex-shrink: 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  visibility: visible;
}

.step__footer-copyright {
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(12px, 1.6vw, 16px);
  line-height: 1.3;
  text-align: center;
  color: #666;
  margin-bottom: 8px;
}

.step__footer-links {
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(12px, 1.6vw, 16px);
  line-height: 1.3;
  text-align: center;
  color: #666;
  margin-bottom: 12px;
}

.step__footer-links a {
  color: #0E93EB;
  text-decoration: none;
  transition: color 0.2s ease;
}

.step__footer-links a:hover {
  color: #0B7BC8;
  text-decoration: underline;
}

.step__footer-disclaimer {
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(10px, 1.4vw, 14px);
  line-height: 1.4;
  text-align: center;
  color: #888;
  margin-bottom: 4px;
  max-width: 600px;
}

.step__footer-contact {
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(10px, 1.4vw, 14px);
  line-height: 1.4;
  text-align: center;
  color: #888;
  margin-bottom: 4px;
}

.step__footer-company {
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(10px, 1.4vw, 14px);
  line-height: 1.4;
  text-align: center;
  color: #888;
}

/* Progress bar - базовые стили */
.progress {
  width: 100%;
  position: relative;
}

.bar {
  height: 100%;
  transition: width 0.3s linear;
}

/* Comments section - базовые стили (если нужны) */
.comments {
  width: 100%;
}

.comment__card {
  width: 100%;
}

/* Footer - базовые стили */
.footer {
  width: 100%;
}

/* Базовые стили для отображения вопросов и ответов (временные, до добавления нового дизайна) */
.step {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Старый стиль удален - используем общие стили .step__question */

.step__answers {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;
}

/* Старый стиль .btn удален - используется новый стиль выше */

/* ============================================
   НОВЫЙ ДИЗАЙН - ПЕРВЫЙ ШАГ (INTRO SCREEN)
   Премиальный адаптивный дизайн
   ============================================ */

.intro-screen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #FBFBFB;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.intro-screen__background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #FBFBFB;
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 0;
}

.intro-screen__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 20px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  justify-content: space-between;
}

.intro-screen__content::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Progress Bar Container - поднят выше */
.intro-screen__progress-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 40px;
  margin-bottom: 30px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-shrink: 0;
}

.intro-screen__progress-bar {
  box-sizing: border-box;
  position: relative;
  flex: 1;
  height: 45px;
  background: #EAEAEA;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 22.5px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.intro-screen__progress-fill {
  box-sizing: border-box;
  position: absolute;
  width: 16%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #00E796 0%, #00D689 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 22.5px;
  transition: width 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 231, 150, 0.3);
}

.intro-screen__skip {
  font-family: 'Inter', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.intro-screen__skip:hover {
  color: #000;
}

/* Main Content - адаптивный с правильными отступами */
.intro-screen__main {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  flex: 1;
  justify-content: center;
  min-height: 0;
}

.intro-screen__title {
  width: 100%;
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.2;
  text-align: center;
  color: #070B1E;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.intro-screen__subtitle {
  width: 100%;
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(18px, 2.8vw, 36px);
  line-height: 1.25;
  text-align: center;
  color: #141E07;
  margin: 0 0 30px 0;
  opacity: 0.9;
  letter-spacing: -0.01em;
}

/* Start Test Button - премиальный вид */
.intro-screen__start-btn {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  min-height: 70px;
  background: linear-gradient(135deg, #0E93EB 0%, #0B7BC8 100%);
  box-shadow: 0px 8px 24px rgba(14, 147, 235, 0.4), 0px 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 35px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px 16px 36px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto;
  overflow: hidden;
  flex-shrink: 0;
}

.intro-screen__start-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.intro-screen__start-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 12px 32px rgba(14, 147, 235, 0.5), 0px 6px 16px rgba(0, 0, 0, 0.2);
}

.intro-screen__start-btn:hover::before {
  left: 100%;
}

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

.intro-screen__start-btn span {
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(22px, 3.5vw, 42px);
  line-height: 1.2;
  text-align: left;
  color: #FFFFFF;
  flex: 1;
  letter-spacing: -0.01em;
}

.intro-screen__arrow-circle {
  position: relative;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro-screen__arrow {
  box-sizing: border-box;
  position: relative;
  width: 24px;
  height: 0px;
  border: 3px solid #0E93EB;
  margin-left: 4px;
}

.intro-screen__arrow::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -6px;
  width: 0;
  height: 0;
  border-left: 8px solid #0E93EB;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* Footer - адаптивный с правильными отступами */
.intro-screen__footer {
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: auto;
  padding-top: 20px;
  flex-shrink: 0;
}

.intro-screen__copyright {
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(12px, 1.6vw, 16px);
  line-height: 1.3;
  text-align: center;
  color: #666;
  margin-bottom: 8px;
}

.intro-screen__links {
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(12px, 1.6vw, 16px);
  line-height: 1.3;
  text-align: center;
  color: #666;
  margin-bottom: 12px;
}

.intro-screen__links a {
  color: #0E93EB;
  text-decoration: none;
  transition: color 0.2s ease;
}

.intro-screen__links a:hover {
  color: #0B7BC8;
  text-decoration: underline;
}

.intro-screen__disclaimer {
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(10px, 1.4vw, 14px);
  line-height: 1.4;
  text-align: center;
  color: #888;
  margin-bottom: 4px;
  max-width: 600px;
}

.intro-screen__contact {
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(10px, 1.4vw, 14px);
  line-height: 1.4;
  text-align: center;
  color: #888;
  margin-bottom: 4px;
}

.intro-screen__company {
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(10px, 1.4vw, 14px);
  line-height: 1.4;
  text-align: center;
  color: #888;
}

/* Стили для первого шага (Intro) - оптимизировано для размещения на экране */
/* Прогресс-бар для всех шагов */
.step__progress-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 41px;
  margin-bottom: 0;
  margin-top: clamp(30px, 5vh, 50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Специфичные стили для intro шага - такие же как общие */
.step-intro .step__progress-container {
  /* Использует общие стили .step__progress-container */
}

/* Заголовок позиционируется выше, адаптивно */
.step-intro__body {
  width: 80%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: clamp(60px, 22vh, 150px) 10% clamp(50px, 10vh, 100px) 10%; /* Увеличен отступ сверху, 10% отступы по бокам */
  flex: 0 0 auto;
  justify-content: flex-start;
  min-height: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Прогресс-бар для всех шагов */
.step__progress-bar {
  box-sizing: border-box;
  position: relative;
  flex: 1;
  max-width: none;
  width: auto;
  height: 41px;
  background: #EAEAEA;
  border: 0.5px solid #000000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Специфичные стили для intro шага (если нужны) */
.step-intro .step__progress-bar {
  /* Использует общие стили .step__progress-bar */
}

/* Прогресс-филл для всех шагов */
.step__progress-fill {
  box-sizing: border-box;
  position: absolute;
  width: 16%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #00E796 0%, #00D689 50%, #00C57A 100%);
  border: 0.5px solid #000000;
  border-radius: 20px;
  transition: width 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 231, 150, 0.3);
  overflow: hidden;
  animation: progressGradient 3s ease infinite;
}

/* Анимация переливания цветов для прогресс-бара */
.step__progress-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 25%,
    rgba(0, 231, 150, 0.8) 50%,
    rgba(255, 255, 255, 0.6) 75%,
    transparent 100%
  );
  animation: progressShimmer 2s infinite;
}

/* Дополнительный слой для более яркого эффекта */
.step__progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 231, 150, 0.9) 0%,
    rgba(0, 255, 200, 0.7) 25%,
    rgba(0, 231, 150, 0.9) 50%,
    rgba(0, 200, 150, 0.7) 75%,
    rgba(0, 231, 150, 0.9) 100%
  );
  background-size: 200% 100%;
  animation: progressColorFlow 2.5s ease infinite;
  opacity: 0.8;
}

@keyframes progressShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes progressGradient {
  0%, 100% {
    background: linear-gradient(90deg, #00E796 0%, #00D689 50%, #00C57A 100%);
  }
  25% {
    background: linear-gradient(90deg, #00D689 0%, #00E796 50%, #00D689 100%);
  }
  50% {
    background: linear-gradient(90deg, #00C57A 0%, #00D689 50%, #00E796 100%);
  }
  75% {
    background: linear-gradient(90deg, #00D689 0%, #00C57A 50%, #00D689 100%);
  }
}

@keyframes progressColorFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Специфичные стили для intro шага (если нужны) */
.step-intro .step__progress-fill {
  /* Использует общие стили .step__progress-fill */
}

/* Кнопка Skip для всех шагов */
.step__skip {
  font-family: 'Inter', Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 39px;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.step__skip:hover {
  color: #000;
}

/* Специфичные стили для intro шага (если нужны) */
.step-intro .step__skip {
  /* Использует общие стили .step__skip */
}

.step-intro__title {
  width: 100%;
  max-width: 523px;
  min-height: auto;
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.3;
  text-align: center;
  color: #070B1E;
  margin: 0 auto clamp(20px, 4vh, 45px);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.step-intro__subtitle {
  width: 100%;
  max-width: 523px;
  min-height: auto;
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(18px, 3.5vw, 36px);
  line-height: 1.35;
  text-align: center;
  color: #141E07;
  margin: 0 auto clamp(20px, 4vh, 40px);
  opacity: 0.9;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.step-intro__answers {
  width: calc(100% + 20%); /* Компенсируем отступы body (10% с каждой стороны) */
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(20px, 4vh, 40px);
  margin-bottom: 0;
  padding: 0;
  margin-left: -10%; /* Компенсируем левый отступ body */
  margin-right: -10%; /* Компенсируем правый отступ body */
}

.step-intro__start-btn {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: auto;
  background: linear-gradient(135deg, #0E93EB 0%, #0B7BC8 100%);
  box-shadow: 0px 6px 20px rgba(14, 147, 235, 0.3), 0px 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  overflow: visible;
  flex-shrink: 0;
  text-decoration: none;
  font-family: 'Roboto Flex', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(24px, 3.3vw, 37px);
  line-height: 1.2;
  text-align: left;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  min-height: auto;
}

.step-intro__start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 24px rgba(14, 147, 235, 0.4), 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.step-intro__start-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0px 4px 12px rgba(14, 147, 235, 0.3), 0px 2px 6px rgba(0, 0, 0, 0.1);
}

/* Анимация при клике на кнопку Start test */
.step-intro__start-btn.clicked {
  animation: buttonClick 0.4s ease-out;
}

@keyframes buttonClick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/* Затемнение вокруг кнопки при клике */
.step__dim-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.step__dim-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Подсветка кнопки при затемнении */
.btn.clicked,
.step-intro__start-btn.clicked,
.step__answer-card.clicked {
  position: relative;
  z-index: 9999 !important;
  box-shadow: 0px 8px 32px rgba(14, 147, 235, 0.8), 0px 4px 16px rgba(0, 0, 0, 0.3) !important;
  transform: scale(1.02) !important;
}


.step-intro__start-btn span {
  flex: 1;
}

/* Стрелка в кружке для всех кнопок */
.arrow-icon {
  position: relative;
  width: 55px;
  height: 55px;
  min-width: 55px;
  min-height: 55px;
  max-width: 55px;
  max-height: 55px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-left: 15px;
  box-sizing: border-box;
}

.step-intro__start-btn .arrow-icon {
  position: relative;
  width: 55px;
  height: 55px;
  min-width: 55px;
  min-height: 55px;
  max-width: 55px;
  max-height: 55px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-left: 15px;
  box-sizing: border-box;
}

/* Стрелка внутри кружка для всех кнопок */
.arrow-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='67' height='37' viewBox='0 0 67 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M65.7678 20.1774C66.7441 19.2011 66.7441 17.6182 65.7678 16.6419L49.8579 0.731998C48.8816 -0.244312 47.2986 -0.244312 46.3223 0.731998C45.346 1.70831 45.346 3.29122 46.3223 4.26753L60.4645 18.4097L46.3223 32.5518C45.346 33.5281 45.346 35.111 46.3223 36.0873C47.2986 37.0636 48.8816 37.0636 49.8579 36.0873L65.7678 20.1774ZM0 18.4097V20.9097H64V18.4097V15.9097H0V18.4097Z' fill='%230E93EB'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.step-intro__start-btn .arrow-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='67' height='37' viewBox='0 0 67 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M65.7678 20.1774C66.7441 19.2011 66.7441 17.6182 65.7678 16.6419L49.8579 0.731998C48.8816 -0.244312 47.2986 -0.244312 46.3223 0.731998C45.346 1.70831 45.346 3.29122 46.3223 4.26753L60.4645 18.4097L46.3223 32.5518C45.346 33.5281 45.346 35.111 46.3223 36.0873C47.2986 37.0636 48.8816 37.0636 49.8579 36.0873L65.7678 20.1774ZM0 18.4097V20.9097H64V18.4097V15.9097H0V18.4097Z' fill='%230E93EB'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Оптимизация для десктопа */
@media (min-width: 769px) {
  .step-survey .step__content {
    max-width: 850px;
    padding: 20px 30px;
  }
  
  .step-intro__title {
    font-size: clamp(38px, 3.5vw, 48px);
    line-height: 1.25;
    margin-bottom: clamp(20px, 2.5vh, 32px);
  }

  .step-intro__subtitle {
    font-size: clamp(22px, 2.3vw, 30px);
    line-height: 1.3;
    margin-bottom: clamp(20px, 2.5vh, 28px);
  }

  .step-intro__start-btn {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 500;
    padding: 16px 28px;
    min-height: auto;
    max-width: 600px;
    margin: 0 auto;
  }

  .step-intro__start-btn .arrow-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
  }

  .arrow-icon::after {
    width: 40px;
    height: 22px;
  }
  
  .step-intro__start-btn .arrow-icon::after {
    width: 40px;
    height: 22px;
  }

  .step-intro__body {
    margin-top: clamp(40px, 8vh, 70px);
    margin-bottom: clamp(30px, 5vh, 50px);
    max-width: 700px;
  }
  
  .step__body {
    width: 85%;
    max-width: 700px;
    margin: clamp(40px, 8vh, 70px) auto 0;
  }

  .step__progress-container {
    margin-top: clamp(25px, 3vh, 35px);
    padding: 0 20px;
  }
  
  .step-intro .step__progress-container {
    margin-top: clamp(25px, 3vh, 35px);
    padding: 0 20px;
  }

  .step__answers--cards {
    gap: 25px;
    max-width: 750px;
    justify-content: center;
  }

  .step__answer-card {
    max-width: 320px;
    min-width: 280px;
  }

  .step__question {
    font-size: clamp(36px, 3.2vw, 44px);
    line-height: 1.25;
    margin-bottom: clamp(20px, 2.5vh, 32px);
    max-width: 650px;
  }

  .step__subtitle {
    font-size: clamp(20px, 2.3vw, 28px);
    line-height: 1.3;
    margin-bottom: 28px;
    max-width: 650px;
  }
  
  .step__description {
    font-size: clamp(18px, 2.2vw, 26px);
    line-height: 1.3;
    margin-bottom: 28px;
    max-width: 650px;
  }
  
  .btn {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 500;
    padding: 16px 28px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
  
  .btn .arrow-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
  }
  
  .btn .arrow-icon::after {
    width: 40px;
    height: 22px;
  }
  
  /* Для шагов с карточками - поднимаем контент вверх */
  .step__body--with-cards {
    width: 85%;
    max-width: 700px;
    margin: clamp(30px, 6vh, 50px) auto 0;
  }
  
  .step__answers {
    max-width: 100%;
    gap: 15px;
    margin: 0 auto;
    align-items: center;
  }
  
  .step__answers--horizontal {
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
  }
  
  .step__answers--horizontal .btn {
    flex: 1 1 auto;
    min-width: 180px;
    max-width: 280px;
    width: auto;
    font-size: clamp(18px, 2vw, 24px);
    padding: 14px 20px;
  }
  
  .step__answers--horizontal .btn .arrow-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    margin-left: 10px;
  }
  
  .step__answers--horizontal .btn .arrow-icon::after {
    width: 32px;
    height: 18px;
  }
  
  .step__footer {
    max-width: 700px;
    margin-top: clamp(50px, 10vh, 80px);
  }
}

/* Адаптивные стили для шагов опроса */
@media (max-width: 768px) {
  html, body {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: none;
  }

  .step-survey {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .step-survey .step__content {
    padding: 15px 16px 15px;
    height: 100vh;
    max-height: 100vh;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: none;
  }

  .step__progress-container {
    margin-top: clamp(20px, 4vh, 35px);
    margin-bottom: 0;
    height: 36px;
    padding: 0 10px;
    gap: 10px;
  }

  .step__progress-bar {
    flex: 1;
    max-width: none;
    width: auto;
  }
  
  .step-intro .step__progress-container {
    margin-top: clamp(20px, 4vh, 35px);
    margin-bottom: 0;
    height: 36px;
    padding: 0 10px;
    gap: 10px;
  }

  .step-intro .step__progress-bar {
    flex: 1;
    max-width: none;
    width: auto;
  }

  .step-intro__body {
    width: 80%;
    margin: clamp(30px, 11vh, 80px) 10% 0 10%; /* На планшетах отступ увеличен на 5vh */
  }
  
  .step__body {
    width: 80%;
    margin: clamp(30px, 11vh, 80px) 10% 0 10%;
  }

  .step__progress-bar {
    height: 36px;
    border-radius: 18px;
    border: 0.5px solid #000000;
    max-width: 400px;
    width: 70%;
  }

  .step__progress-fill {
    border-radius: 18px;
    border: 0.5px solid #000000;
  }

  .step__skip {
    font-size: clamp(14px, 2vw, 18px);
    padding: 5px 10px;
    font-weight: 300;
  }
  
  .step-intro .step__progress-bar {
    height: 36px;
    border-radius: 18px;
    border: 0.5px solid #000000;
    max-width: 400px;
    width: 70%;
  }

  .step-intro .step__progress-fill {
    border-radius: 18px;
    border: 0.5px solid #000000;
  }

  .step-intro .step__skip {
    font-size: clamp(14px, 2vw, 18px);
    padding: 5px 10px;
    font-weight: 300;
  }

  .step-intro__title {
    margin-bottom: clamp(15px, 3vh, 30px);
  }

  .step-intro__subtitle {
    margin-bottom: clamp(15px, 3vh, 30px);
  }

  .step-intro__start-btn {
    padding: 14px 24px;
    border-radius: 12px;
    font-size: clamp(18px, 2.6vw, 26px);
    font-weight: 500;
  }

  .arrow-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    margin-left: 12px;
    background: #FFFFFF;
    flex-shrink: 0;
    flex-grow: 0;
  }
  
  .step-intro__start-btn .arrow-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    margin-left: 12px;
    background: #FFFFFF;
    flex-shrink: 0;
    flex-grow: 0;
  }

  .arrow-icon::after {
    content: '';
    width: 40px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg width='67' height='37' viewBox='0 0 67 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M65.7678 20.1774C66.7441 19.2011 66.7441 17.6182 65.7678 16.6419L49.8579 0.731998C48.8816 -0.244312 47.2986 -0.244312 46.3223 0.731998C45.346 1.70831 45.346 3.29122 46.3223 4.26753L60.4645 18.4097L46.3223 32.5518C45.346 33.5281 45.346 35.111 46.3223 36.0873C47.2986 37.0636 48.8816 37.0636 49.8579 36.0873L65.7678 20.1774ZM0 18.4097V20.9097H64V18.4097V15.9097H0V18.4097Z' fill='%230E93EB'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .step-intro__start-btn .arrow-icon::after {
    content: '';
    width: 40px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg width='67' height='37' viewBox='0 0 67 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M65.7678 20.1774C66.7441 19.2011 66.7441 17.6182 65.7678 16.6419L49.8579 0.731998C48.8816 -0.244312 47.2986 -0.244312 46.3223 0.731998C45.346 1.70831 45.346 3.29122 46.3223 4.26753L60.4645 18.4097L46.3223 32.5518C45.346 33.5281 45.346 35.111 46.3223 36.0873C47.2986 37.0636 48.8816 37.0636 49.8579 36.0873L65.7678 20.1774ZM0 18.4097V20.9097H64V18.4097V15.9097H0V18.4097Z' fill='%230E93EB'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .step__question {
    margin-bottom: clamp(15px, 3vh, 30px);
  }
  
  .step__subtitle {
    margin-bottom: 30px;
  }
  
  /* Для шагов с карточками - поднимаем контент вверх */
  .step__body--with-cards {
    width: 80%;
    margin: clamp(20px, 10vh, 60px) 10% 0 10%;
  }

  .step__answers {
    gap: 15px;
  }
  
  /* Для планшетов - вертикальное расположение (как было) */
  .step__answers--horizontal {
    flex-direction: column !important;
    gap: 15px;
  }
  
  .step__answers--horizontal .btn {
    width: 100%;
    max-width: 500px;
    min-width: auto;
  }

  .btn {
    padding: 16px 28px;
    font-size: clamp(18px, 2.6vw, 26px);
    font-weight: 500;
  }

  .step__footer {
    margin-top: auto; /* Футер внизу на планшетах */
    padding-bottom: clamp(40px, 8vh, 60px); /* Увеличен нижний отступ */
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  html, body {
    overflow: hidden !important;
    position: fixed;
  width: 100%;
    height: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: none;
  }

  .step-survey {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .step-survey .step__content {
    padding: 12px 12px 12px;
    height: 100vh;
    max-height: 100vh;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: none;
  }

  .step__progress-container {
    margin-top: clamp(15px, 3vh, 30px);
    margin-bottom: 0;
    height: 32px;
    gap: 10px;
    padding: 0 10px;
  }

  .step__progress-bar {
    flex: 1;
    max-width: none;
    width: auto;
  }
  
  .step-intro .step__progress-container {
    margin-top: clamp(15px, 3vh, 30px);
    margin-bottom: 0;
    height: 32px;
    gap: 10px;
    padding: 0 10px;
  }

  .step-intro .step__progress-bar {
    flex: 1;
    max-width: none;
    width: auto;
  }

  .step-intro__body {
    width: 80%;
    margin: clamp(20px, 10vh, 60px) 10% 0 10%; /* На мобильных отступ увеличен на 5vh */
  }
  
  .step__body {
    width: 80%;
    margin: clamp(20px, 10vh, 60px) 10% 0 10%;
  }

  .step__progress-bar {
    height: 32px;
    border-radius: 16px;
    border: 0.5px solid #000000;
    max-width: 350px;
    width: 65%;
  }

  .step__progress-fill {
    border-radius: 16px;
    border: 0.5px solid #000000;
  }

  .step__skip {
    font-size: clamp(12px, 1.8vw, 16px);
    padding: 4px 8px;
    font-weight: 300;
  }
  
  .step-intro .step__progress-bar {
    height: 32px;
    border-radius: 16px;
    border: 0.5px solid #000000;
    max-width: 350px;
    width: 65%;
  }

  .step-intro .step__progress-fill {
    border-radius: 16px;
    border: 0.5px solid #000000;
  }

  .step-intro .step__skip {
    font-size: clamp(12px, 1.8vw, 16px);
    padding: 4px 8px;
    font-weight: 300;
  }

  .step-intro__title {
    margin-bottom: clamp(12px, 2.5vh, 25px);
  }

  .step-intro__subtitle {
    margin-bottom: clamp(12px, 2.5vh, 25px);
  }

  .step-intro__start-btn {
    padding: 14px 24px;
    border-radius: 12px;
    font-size: clamp(21px, 3.3vw, 32px);
    font-weight: 500;
    min-height: auto;
  }

  .btn {
    padding: 14px 24px;
    font-size: clamp(21px, 3.3vw, 32px);
    font-weight: 500;
  }
  
  .arrow-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    margin-left: 10px;
    background: #FFFFFF;
    flex-shrink: 0;
    flex-grow: 0;
  }
  
  .step-intro__start-btn .arrow-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    margin-left: 10px;
    background: #FFFFFF;
    flex-shrink: 0;
    flex-grow: 0;
  }

  .arrow-icon::after {
    content: '';
    width: 26px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='67' height='37' viewBox='0 0 67 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M65.7678 20.1774C66.7441 19.2011 66.7441 17.6182 65.7678 16.6419L49.8579 0.731998C48.8816 -0.244312 47.2986 -0.244312 46.3223 0.731998C45.346 1.70831 45.346 3.29122 46.3223 4.26753L60.4645 18.4097L46.3223 32.5518C45.346 33.5281 45.346 35.111 46.3223 36.0873C47.2986 37.0636 48.8816 37.0636 49.8579 36.0873L65.7678 20.1774ZM0 18.4097V20.9097H64V18.4097V15.9097H0V18.4097Z' fill='%230E93EB'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .step-intro__start-btn .arrow-icon::after {
    content: '';
    width: 26px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='67' height='37' viewBox='0 0 67 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M65.7678 20.1774C66.7441 19.2011 66.7441 17.6182 65.7678 16.6419L49.8579 0.731998C48.8816 -0.244312 47.2986 -0.244312 46.3223 0.731998C45.346 1.70831 45.346 3.29122 46.3223 4.26753L60.4645 18.4097L46.3223 32.5518C45.346 33.5281 45.346 35.111 46.3223 36.0873C47.2986 37.0636 48.8816 37.0636 49.8579 36.0873L65.7678 20.1774ZM0 18.4097V20.9097H64V18.4097V15.9097H0V18.4097Z' fill='%230E93EB'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .step-intro__start-btn .arrow-icon::before {
    display: none;
  }

  .step__question {
    margin-bottom: clamp(12px, 2.5vh, 25px);
  }
  
  .step__subtitle {
    margin-bottom: 35px;
  }

  .step__answers {
    gap: 12px;
  }
  
  /* Для мобильных - вертикальное расположение (как было) */
  .step__answers--horizontal {
    flex-direction: column !important;
    gap: 12px;
  }
  
  .step__answers--horizontal .btn {
    width: 100%;
    max-width: 500px;
    min-width: auto;
  }

  .btn:not(.step-intro__start-btn) {
    padding: 14px 24px;
    font-size: clamp(21px, 3.3vw, 32px);
    font-weight: 500;
  }

  .step-intro__start-btn,
  .step-intro__answers .step-intro__start-btn,
  a.step-intro__start-btn {
    font-size: clamp(21px, 3.3vw, 32px) !important;
    font-weight: 500 !important;
  }

  .step__footer {
    margin-top: auto; /* Футер внизу на мобильных */
    padding-bottom: 5px; /* 5px отступ снизу */
    margin-bottom: 0;
  }
}

/* Responsive Styles - Премиальный адаптивный дизайн */
@media (max-width: 768px) {
  .intro-screen__content {
    padding: 15px 16px 15px;
    height: 100vh;
  }

  .intro-screen__progress-container {
    margin-top: 5px;
    margin-bottom: 20px;
    height: 36px;
  }

  .intro-screen__progress-bar {
    height: 36px;
    border-radius: 18px;
  }

  .intro-screen__progress-fill {
    border-radius: 18px;
  }

  .intro-screen__skip {
  font-size: 14px;
    padding: 5px 10px;
  }

  .intro-screen__main {
    margin-bottom: 0;
  }

  .intro-screen__title {
    margin-bottom: 15px;
  }

  .intro-screen__subtitle {
    margin-bottom: 20px;
  }

  .intro-screen__start-btn {
    min-height: 65px;
    padding: 14px 22px 14px 26px;
    border-radius: 32px;
  }

  .intro-screen__arrow-circle {
    width: 48px;
    height: 48px;
  }

  .intro-screen__arrow {
    width: 18px;
    border-width: 2.5px;
  }

  .intro-screen__arrow::after {
    border-left-width: 6px;
    border-top-width: 5px;
    border-bottom-width: 5px;
    right: -2.5px;
    top: -5px;
  }

  .intro-screen__footer {
    padding-top: 15px;
  }

  .intro-screen__copyright,
  .intro-screen__links {
    margin-bottom: 6px;
  }

  .intro-screen__disclaimer,
  .intro-screen__contact {
    margin-bottom: 3px;
  }
}

@media (max-width: 480px) {
  .intro-screen__content {
    padding: 12px 12px 12px;
    height: 100vh;
  }

  .intro-screen__progress-container {
    margin-top: 5px;
    margin-bottom: 15px;
    height: 32px;
    gap: 10px;
  }

  .intro-screen__progress-bar {
    height: 32px;
    border-radius: 16px;
  }

  .intro-screen__progress-fill {
    border-radius: 16px;
  }

  .intro-screen__skip {
    font-size: 12px;
    padding: 4px 8px;
  }

  .intro-screen__main {
    margin-bottom: 0;
  }

  .intro-screen__title {
    margin-bottom: 12px;
  }

  .intro-screen__subtitle {
    margin-bottom: 18px;
  }

  .intro-screen__start-btn {
    min-height: 60px;
    padding: 12px 18px 12px 22px;
    border-radius: 30px;
  }

  .intro-screen__arrow-circle {
    width: 42px;
    height: 42px;
  }

  .intro-screen__arrow {
    width: 16px;
    border-width: 2px;
  }

  .intro-screen__arrow::after {
    border-left-width: 5px;
    border-top-width: 4px;
    border-bottom-width: 4px;
    right: -2px;
    top: -4px;
  }

  .intro-screen__footer {
    padding-top: 12px;
  }

  .intro-screen__copyright,
  .intro-screen__links {
    margin-bottom: 4px;
  }

  .intro-screen__disclaimer,
  .intro-screen__contact {
    margin-bottom: 2px;
  }
}