/* Блок РОБОТ */
.bot-section-area {
  padding: 80px 0;
  position: relative;
}

/* Вступительная секция */
.robot-intro-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.robot-intro-subtitle {
  font-size: 32px !important;
  font-weight: 600;
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 50%, #ff6ec7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
}

.robot-intro-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(144, 43, 241, 0.4) 50%, transparent 100%);
  margin: 40px 0;
}

.robot-intro-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* Кнопка записи на консультацию */
.consultation-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 100%);
  border: 2px solid transparent;
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(144, 43, 241, 0.4);
  position: relative;
  overflow: hidden;
}

.consultation-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.consultation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(144, 43, 241, 0.6);
  background: linear-gradient(135deg, #b24fff 0%, #ff6ec7 100%);
}

.consultation-btn:hover::before {
  opacity: 1;
}

.consultation-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.consultation-btn:hover i {
  transform: translateX(5px);
}

/* Секция сравнения менеджер vs робот */
.manager-vs-robot-section {
  padding: 60px 0;
  position: relative;
}

.manager-robot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.manager-robot-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 32px 28px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.manager-robot-card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 100%;
  height: 120%;
  opacity: 0.12;
  background: conic-gradient(
    from 220deg,
    rgb(85, 51, 207) 0deg,
    rgb(146, 64, 222) 120deg,
    rgba(64, 64, 222, 1) 240deg,
    rgb(160, 123, 245) 360deg
  );
  filter: blur(80px);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.manager-robot-card:hover {
  border-color: rgba(144, 43, 241, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(144, 43, 241, 0.3);
}

.manager-robot-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.manager-robot-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 100%);
  box-shadow: 0 10px 30px rgba(144, 43, 241, 0.5);
  transition: all 0.4s ease;
  position: relative;
}

.manager-robot-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid rgba(144, 43, 241, 0.3);
  animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

.manager-robot-card:hover .manager-robot-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(144, 43, 241, 0.7);
}

.manager-robot-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.manager-robot-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(144, 43, 241, 0.4) 50%, transparent 100%);
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

.manager-robot-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(144, 43, 241, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(144, 43, 241, 0.12);
  border-color: rgba(144, 43, 241, 0.4);
  transform: translateX(5px);
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  background: rgba(144, 43, 241, 0.2);
  color: #b24fff;
  transition: all 0.3s ease;
}

.feature-icon i {
  color: #b24fff;
  transition: color 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 100%);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(144, 43, 241, 0.5);
}

.feature-item:hover .feature-icon i {
  color: #ffffff;
}

.feature-item p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

/* Адаптивность */
@media (max-width: 991px) {
  .manager-robot-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .manager-robot-card {
    padding: 28px 24px;
  }
}

/* Секция "Что мы предлагаем" */
.robot-offer-section {
  padding: 60px 0;
  position: relative;
}

.robot-offer-content {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.robot-offer-content::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 100%;
  height: 120%;
  opacity: 0.12;
  background: conic-gradient(
    from 220deg,
    rgb(85, 51, 207) 0deg,
    rgb(146, 64, 222) 120deg,
    rgba(64, 64, 222, 1) 240deg,
    rgb(160, 123, 245) 360deg
  );
  filter: blur(80px);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.robot-offer-text {
  position: relative;
  z-index: 1;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

/* Секция "Как же это работает" */
.robot-how-section {
  padding: 60px 0;
  position: relative;
}

.robot-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.robot-step-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 32px 28px;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.robot-step-card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 100%;
  height: 120%;
  opacity: 0.12;
  background: conic-gradient(
    from 220deg,
    rgb(85, 51, 207) 0deg,
    rgb(146, 64, 222) 120deg,
    rgba(64, 64, 222, 1) 240deg,
    rgb(160, 123, 245) 360deg
  );
  filter: blur(80px);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.robot-step-card:hover {
  border-color: rgba(144, 43, 241, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(144, 43, 241, 0.3);
}

.robot-step-number {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 50%, #ff6ec7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.robot-step-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/* Секция "Что в результате" */
.robot-results-section {
  padding: 60px 0;
  position: relative;
}

.robot-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  align-items: stretch;
}

.robot-result-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 35px 30px;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.robot-result-card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 100%;
  height: 120%;
  opacity: 0.12;
  background: conic-gradient(
    from 220deg,
    rgb(85, 51, 207) 0deg,
    rgb(146, 64, 222) 120deg,
    rgba(64, 64, 222, 1) 240deg,
    rgb(160, 123, 245) 360deg
  );
  filter: blur(80px);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.robot-result-card:hover {
  border-color: rgba(144, 43, 241, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(144, 43, 241, 0.3);
}

.robot-result-header {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.robot-result-number {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 50%, #ff6ec7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  line-height: 1;
}

.robot-result-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.robot-result-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(144, 43, 241, 0.4) 50%, transparent 100%);
  margin: 20px 0;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.robot-result-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.robot-result-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

/* Секция "Стоимость услуг" */
.robot-pricing-section {
  padding: 60px 0;
  position: relative;
}

.robot-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}

.robot-pricing-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 28px 20px;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.robot-pricing-card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 100%;
  height: 120%;
  opacity: 0.12;
  background: conic-gradient(
    from 220deg,
    rgb(85, 51, 207) 0deg,
    rgb(146, 64, 222) 120deg,
    rgba(64, 64, 222, 1) 240deg,
    rgb(160, 123, 245) 360deg
  );
  filter: blur(80px);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.robot-pricing-card:hover {
  border-color: rgba(144, 43, 241, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(144, 43, 241, 0.3);
}

.robot-pricing-header {
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.robot-pricing-number {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 50%, #ff6ec7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.robot-pricing-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.robot-pricing-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(144, 43, 241, 0.3) 50%, transparent 100%);
  margin: 15px 0;
  position: relative;
  z-index: 1;
}

.robot-pricing-features-box {
  position: relative;
  z-index: 1;
  padding: 15px 15px 20px 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(144, 43, 241, 0.1) 0%, rgba(144, 43, 241, 0.05) 100%);
  border: 1px solid rgba(144, 43, 241, 0.25);
  margin-bottom: 15px;
  height: 350px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

.robot-pricing-features-box:hover {
  border-color: rgba(144, 43, 241, 0.4);
  background: linear-gradient(135deg, rgba(144, 43, 241, 0.15) 0%, rgba(144, 43, 241, 0.08) 100%);
}

.robot-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  transition: all 0.3s ease;
  min-height: 40px;
}

.pricing-feature-item:hover {
  transform: translateX(3px);
}

.pricing-feature-item i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(144, 43, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #902bf1;
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
}

.robot-pricing-price {
  position: relative;
  z-index: 1;
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(144, 43, 241, 0.15) 0%, rgba(144, 43, 241, 0.05) 100%);
  border: 1px solid rgba(144, 43, 241, 0.25);
  text-align: center;
  flex-shrink: 0;
  margin-top: auto;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.robot-price-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.robot-price-value {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 50%, #ff6ec7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  line-height: 1.2;
}

.robot-price-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .robot-steps-grid,
  .robot-results-grid,
  .robot-pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .bot-section-area {
    padding: 60px 0;
  }
  
  .robot-intro-title {
    font-size: 26px;
  }
  
  .robot-intro-subtitle {
    font-size: 26px !important;
  }
  
  .robot-intro-text {
    font-size: 16px;
    line-height: 1.7;
  }
  
  .robot-offer-section,
  .robot-how-section,
  .robot-results-section,
  .robot-pricing-section {
    padding: 50px 0;
  }
  
  .robot-offer-content {
    padding: 30px 25px;
  }
  
  .robot-offer-text {
    font-size: 16px;
  }
  
  .robot-step-card,
  .robot-result-card,
  .robot-pricing-card {
    padding: 28px 24px;
  }
  
  .robot-step-number {
    font-size: 48px;
  }
  
  .robot-step-text {
    font-size: 14px;
  }
  
  .robot-result-header {
    min-height: auto;
    margin-bottom: 18px;
  }
  
  .robot-result-number {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .robot-result-title {
    font-size: 18px;
  }
  
  .robot-result-divider {
    margin: 18px 0;
  }
  
  .robot-result-content {
    gap: 14px;
  }
  
  .robot-result-text {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .robot-pricing-header {
    margin-bottom: 12px;
  }
  
  .robot-pricing-number {
    font-size: 32px;
  }
  
  .robot-pricing-title {
    font-size: 16px;
  }
  
  .robot-pricing-divider {
    margin: 12px 0;
  }
  
  .robot-pricing-features-box {
    height: 310px;
    padding: 12px 12px 16px 12px;
    margin-bottom: 12px;
  }
  
  .pricing-feature-item {
    min-height: 36px;
  }
  
  .robot-pricing-features {
    gap: 6px;
  }
  
  .pricing-feature-item {
    font-size: 13px;
    padding: 6px 0;
  }
  
  .robot-pricing-price {
    padding: 12px;
  }
  
  .robot-price-value {
    font-size: 22px;
  }

  .manager-vs-robot-section {
    padding: 50px 0;
  }

  .consultation-btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  .manager-robot-card {
    padding: 28px 24px;
  }

  .manager-robot-icon {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }

  .manager-robot-header h3 {
    font-size: 18px;
  }

  .feature-item {
    padding: 12px 14px;
  }

  .feature-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .feature-item p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .robot-intro-title {
    font-size: 22px;
  }
  
  .robot-intro-subtitle {
    font-size: 22px !important;
  }
  
  .robot-intro-text {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .consultation-btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .manager-robot-card {
    padding: 24px 20px;
  }

  .manager-robot-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .manager-robot-header h3 {
    font-size: 17px;
  }

  .feature-item {
    padding: 10px 12px;
  }

  .feature-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .feature-item p {
    font-size: 13px;
  }
  
  .robot-offer-content {
    padding: 25px 20px;
  }
  
  .robot-offer-text {
    font-size: 15px;
  }
  
  .robot-step-card,
  .robot-result-card,
  .robot-pricing-card {
    padding: 24px 20px;
  }
  
  .robot-step-number {
    font-size: 42px;
  }
  
  .robot-result-header {
    min-height: auto;
    margin-bottom: 16px;
  }
  
  .robot-result-number {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .robot-result-title {
    font-size: 16px;
  }
  
  .robot-result-divider {
    margin: 16px 0;
  }
  
  .robot-result-content {
    gap: 12px;
  }
  
  .robot-result-text {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .robot-pricing-header {
    margin-bottom: 10px;
  }
  
  .robot-pricing-number {
    font-size: 28px;
  }
  
  .robot-pricing-title {
    font-size: 15px;
  }
  
  .robot-pricing-divider {
    margin: 10px 0;
  }
  
  .robot-pricing-features-box {
    height: 270px;
    padding: 10px 10px 14px 10px;
    margin-bottom: 10px;
  }
  
  .pricing-feature-item {
    min-height: 32px;
  }
  
  .robot-pricing-features {
    gap: 5px;
  }
  
  .pricing-feature-item {
    font-size: 12px;
    padding: 5px 0;
  }
  
  .robot-pricing-price {
    padding: 10px;
  }
  
  .robot-price-value {
    font-size: 20px;
  }
}
