/* ГЛОБАЛЬНЫЕ СТИЛИ И ШРИФТЫ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2D9CDB;
  --primary-dark: #219653;
  --secondary: #27AE60;
  --dark: #333333;
  --light: #F9F9F9;
  --gray: #828282;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* ОБНОВЛЕННЫЕ СТИЛИ КНОПОК - ТЕКСТ СИНИЙ */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
  color: #2D9CDB !important;
}

.btn-primary {
  background-color: var(--white);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white) !important;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* СТИЛИ ДЛЯ ЧАТ-БОТА */
.chat-bot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  height: 500px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  border: 2px solid var(--primary);
}

.chat-bot-container.active {
  display: flex;
}

.chat-bot-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bot-avatar {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary);
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
}

.bot-info {
  flex: 1;
}

.bot-name {
  font-weight: 600;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

.bot-status {
  font-size: 12px;
  opacity: 0.8;
  font-family: 'Open Sans', sans-serif;
}

.close-chat {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.close-chat:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  max-width: 80%;
  padding: 12px 15px;
  border-radius: 15px;
  line-height: 1.4;
  font-family: 'Open Sans', sans-serif;
}

.bot-message {
  align-self: flex-start;
  background: var(--light);
  color: var(--dark);
  border-bottom-left-radius: 5px;
}

.user-message {
  align-self: flex-end;
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: 5px;
}

.message-text {
  font-size: 14px;
}

.quick-replies {
  padding: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #eee;
}

.quick-reply {
  background: var(--light);
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.quick-reply:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.chat-input-container {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
  align-items: center;
}

.chat-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  outline: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

.chat-input:focus {
  border-color: var(--primary);
}

.send-button {
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.send-button:hover {
  background: var(--secondary);
}

.chat-bot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 15px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.chat-bot-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.toggle-avatar {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary);
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

.toggle-text {
  font-weight: 600;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

/* СТИЛИ ДЛЯ БЛОКА СРОЧНОСТИ */
.urgency-badge {
  background: linear-gradient(45deg, #FF6B6B, #FF8E53);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
  animation: pulse-urgency 2s infinite;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  font-family: 'Montserrat', sans-serif;
}

.urgency-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.urgency-text::before {
  content: "⏰";
  font-size: 18px;
}

@keyframes pulse-urgency {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* АНИМАЦИЯ МИГАНИЯ ДЛЯ ЧАТ-БОТА НА МОБИЛЬНЫХ */
@keyframes pulse-mobile {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 5px 30px rgba(45, 156, 219, 0.4);
  }
}

/* БЛОК 1: ГЛАВНЫЙ ЭКРАН */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTIwMCA4MDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSI+PGNpcmNsZSBjeD0iNDAwIiBjeT0iNDAwIiByPSI2MDAiLz48Y2lyY2xlIGN4PSI4MDAiIGN5PSIyMDAiIHI9IjQwMCIvPjwvZz48L3N2Zz4=');
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: bold;
  color: var(--primary);
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 90%;
  font-family: 'Open Sans', sans-serif;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.feature {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  display: flex;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
}

.feature::before {
  content: "✓";
  margin-right: 8px;
  font-weight: bold;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

.stat-text {
  font-size: 14px;
  opacity: 0.8;
  font-family: 'Open Sans', sans-serif;
}

.graphic {
  width: 100%;
  max-width: 500px;
  height: 350px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.graphic::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.15) 0%, transparent 50%);
}

.graphic-content {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.graphic-bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.graphic-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--white);
  border-radius: 6px;
  animation: growBar 2s ease-in-out infinite alternate;
}

.graphic-bar:nth-child(1)::after {
  width: 85%;
  animation-delay: 0s;
}

.graphic-bar:nth-child(2)::after {
  width: 70%;
  animation-delay: 0.2s;
}

.graphic-bar:nth-child(3)::after {
  width: 90%;
  animation-delay: 0.4s;
}

.graphic-bar:nth-child(4)::after {
  width: 65%;
  animation-delay: 0.6s;
}

.graphic-bar:nth-child(5)::after {
  width: 80%;
  animation-delay: 0.8s;
}

@keyframes growBar {
  0% {
    transform: scaleX(0.8);
  }
  100% {
    transform: scaleX(1);
  }
}

/* БЛОК 2: ПРОБЛЕМЫ И РЕШЕНИЯ */
.problems-section {
  background-color: var(--light);
  padding: 80px 0;
}

.problems-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark);
}

.problems-sync-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.problem-solution-pair {
  display: contents;
}

.problem-item, .solution-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 180px;
}

.problem-item:hover, .solution-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.problem-item {
  background: rgba(220, 53, 69, 0.05);
  border-left: 4px solid #dc3545;
}

.solution-item {
  background: rgba(40, 167, 69, 0.05);
  border-left: 4px solid #28a745;
}

.icon-x, .icon-check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 18px;
}

.icon-x {
  background: #dc3545;
  color: white;
}

.icon-check {
  background: #28a745;
  color: white;
}

.problem-content h3, .solution-content h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
}

.problem-content p, .solution-content p {
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

.sync-navigation {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
}

.scroll-indicator {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

.scroll-indicator span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dots-indicator {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--primary);
}

/* БЛОК 3: НАШИ УСЛУГИ */
.services-section {
  padding: 80px 0;
}

.services-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}

.services-section .section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
}

.services-scroll-container {
  position: relative;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card.highlight {
  border: 2px solid var(--primary);
}

.service-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  z-index: 2;
}

.service-header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-top: 15px;
}

.service-price {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.service-price-with-discount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.old-price {
  font-size: 21px;
  font-weight: 600;
  color: #dc3545;
  text-decoration: line-through;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.7;
}

.service-header h3 {
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  line-height: 1.3;
}

.service-body {
  flex-grow: 1;
  margin-bottom: 25px;
}

.service-section {
  margin-bottom: 20px;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.section-label::before {
  content: "";
  width: 12px;
  height: 2px;
  background-color: var(--primary);
  margin-right: 8px;
}

.service-list {
  list-style-type: none;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.4;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.service-footer {
  margin-top: auto;
}

.services-navigation {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
}

.services-scroll-indicator {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

.services-scroll-indicator span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.services-dots-indicator {
  display: flex;
  gap: 10px;
}

.services-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.services-dot.active {
  background: var(--primary);
}

/* БЛОК 4: КАК МЫ РАБОТАЕМ */
.process-section {
  background-color: var(--light);
  padding: 80px 0;
}

.process-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}

.process-section .section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
}

.process-steps-container {
  position: relative;
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.process-step h3 {
  margin-bottom: 15px;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}

.process-step p {
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
}

.process-result {
  text-align: center;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.process-result h3 {
  margin-bottom: 20px;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}

.process-result p {
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

/* БЛОК 5: КЕЙСЫ */
.cases-section {
  padding: 80px 0;
}

.cases-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}

.cases-section .section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
}

.cases-scroll-container {
  position: relative;
  margin-bottom: 20px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.case-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: fit-content;
}

.case-card:hover {
  transform: translateY(-5px);
}

.case-header {
  margin-bottom: 20px;
}

.case-niche {
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: block;
  font-family: 'Open Sans', sans-serif;
}

.case-header h3 {
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}

.case-body {
  margin-bottom: 25px;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: var(--light);
  border-radius: 8px;
}

.metric-value {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.metric-value.before {
  color: #dc3545;
}

.metric-value.after {
  color: #28a745;
}

.metric-arrow {
  color: var(--gray);
}

.case-description p {
  margin-bottom: 10px;
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
}

.case-description strong {
  color: var(--dark);
}

.case-footer .btn {
  width: 100%;
}

.cases-scroll-indicator {
  display: none;
  text-align: center;
  margin-top: 20px;
  color: var(--gray);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

.cases-scroll-indicator span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* БЛОК 6: ОТЗЫВЫ */
.testimonials-section {
  background-color: var(--light);
  padding: 80px 0;
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}

.testimonials-section .section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
}

.testimonials-scroll-container {
  position: relative;
  margin-bottom: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: fit-content;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
}

.testimonial-text::before {
  content: """;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}

.author-info h4 {
  margin-bottom: 5px;
  font-size: 16px;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}

.author-info p {
  font-size: 14px;
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
}

.testimonials-scroll-indicator {
  display: none;
  text-align: center;
  margin-top: 20px;
  color: var(--gray);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

.testimonials-scroll-indicator span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* БЛОК 7: О НАС */
.about-section {
  background-color: var(--light);
  padding: 80px 0;
}

.about-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}

.about-section .section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-stat {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

.about-stat-text {
  font-size: 14px;
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
}

.about-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.team-photo {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* БЛОК 8: FAQ */
.faq-section {
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}

.faq-section .section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  color: var(--primary);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer p {
  color: var(--gray);
  font-family: 'Open Sans', sans-serif;
}

/* БЛОК 9: ФИНАЛЬНЫЙ CTA */
.final-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.final-cta-section h2 {
  color: var(--white);
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.final-cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  font-family: 'Open Sans', sans-serif;
}

.final-form {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.final-form input {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
}

.final-cta-btn {
  margin-top: 40px !important;
  width: 100%;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.8;
  font-family: 'Open Sans', sans-serif;
}

/* ФУТЕР */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo .logo {
  margin-bottom: 10px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Open Sans', sans-serif;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Open Sans', sans-serif;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--white);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

/* АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ - ОБНОВЛЕННАЯ ВЕРСИЯ */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text, .hero-visual {
    flex: none;
    width: 100%;
  }
  
  .hero-subtitle {
    max-width: 100%;
  }
  
  .features {
    justify-content: center;
  }
  
  .stats {
    justify-content: center;
  }
  
  h1 {
    font-size: 40px;
  }
  
  /* ИСПРАВЛЕНИЯ ГЛАВНОГО ЭКРАНА */
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
  }
  
  .stats {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat {
    flex: 0 0 45%;
    margin-bottom: 15px;
  }
  
  .stat:nth-child(3) {
    display: none;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .features {
    gap: 10px;
    margin-bottom: 25px;
  }
  
  .feature {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .urgency-badge {
    padding: 10px 16px;
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .problems-sync-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 20px;
  }
  
  .problem-solution-pair {
    display: flex;
    flex: 0 0 85%;
    flex-direction: column;
    gap: 20px;
    scroll-snap-align: start;
    min-width: 0;
  }
  
  .problem-item, .solution-item {
    margin-bottom: 0;
    min-height: auto;
    padding: 20px;
  }
  
  .problem-content h3, .solution-content h3 {
    font-size: 16px;
  }
  
  .problem-content p, .solution-content p {
    font-size: 14px;
  }
  
  .sync-navigation {
    display: flex;
  }
  
  /* ОБНОВЛЕННЫЕ КАРТОЧКИ УСЛУГ - ВЫСОТА 480px (было 580px) */
  .services-scroll-container {
    max-height: 520px; /* Уменьшено с 620px */
    overflow-y: hidden;
    overflow-x: auto;
    padding: 15px 0;
    margin-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 15px;
  }
  
  .services-grid {
    display: flex;
    gap: 20px;
    min-height: min-content;
    width: max-content;
    align-items: stretch;
    padding: 0 15px;
  }
  
  .service-card {
    flex: 0 0 70%;
    scroll-snap-align: start;
    min-width: 0;
    padding: 20px 15px; /* Уменьшены отступы */
    height: auto;
    min-height: 480px; /* Уменьшено с 580px */
    width: 70vw;
    max-width: 70vw;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }
  
  .services-section .service-card {
    height: auto;
    min-height: 480px; /* Уменьшено с 580px */
    display: flex;
    flex-direction: column;
  }
  
  .services-section .service-footer {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 12px; /* Уменьшено */
    min-height: 60px; /* Уменьшено с 80px */
  }
  
  .services-section .btn-primary {
    width: 85%;
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px; /* Уменьшено */
    font-size: 13px; /* Уменьшено */
  }
  
  .service-header h3 {
    font-size: 16px; /* Уменьшено */
  }
  
  .service-list li {
    font-size: 13px; /* Уменьшено */
    line-height: 1.3; /* Уменьшено */
  }
  
  /* Уменьшаем отступы в карточках чтобы все поместилось */
  .service-header {
    margin-bottom: 15px; /* Уменьшено */
    padding-top: 8px; /* Уменьшено */
  }
  
  .service-body {
    margin-bottom: 15px; /* Уменьшено */
  }
  
  .service-section {
    margin-bottom: 12px; /* Уменьшено */
  }
  
  .service-list li {
    margin-bottom: 5px; /* Уменьшено */
  }
  
  .service-price {
    font-size: 32px; /* Уменьшено */
  }
  
  .old-price {
    font-size: 18px; /* Уменьшено */
  }
  
  .process-steps-container {
    max-height: 450px; /* Уменьшено */
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 40px;
  }
  
  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: min-content;
  }
  
  .process-step {
    flex-shrink: 0;
    padding: 20px 15px; /* Уменьшено */
  }
  
  .cases-scroll-container {
    max-height: 550px; /* Уменьшено */
    overflow-y: hidden;
    overflow-x: auto;
    padding: 15px 0;
    margin-bottom: 10px;
  }
  
  .cases-grid {
    display: flex;
    gap: 20px;
    min-height: min-content;
    width: max-content;
    align-items: flex-start;
    padding: 0 10px;
  }
  
  .case-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-width: 0;
    padding: 20px 15px; /* Уменьшено */
    height: auto;
    width: 85vw;
    max-width: 85vw;
    min-height: 450px; /* Уменьшено */
    display: flex;
    flex-direction: column;
  }
  
  .testimonials-scroll-container {
    max-height: 350px; /* Уменьшено */
    overflow-y: hidden;
    overflow-x: auto;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
  
  .testimonials-grid {
    display: flex;
    gap: 20px;
    min-height: min-content;
    width: max-content;
    align-items: flex-start;
    padding: 0 10px;
  }
  
  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-width: 0;
    padding: 20px 15px; /* Уменьшено */
    height: auto;
    width: 85vw;
    max-width: 85vw;
    min-height: 250px; /* Уменьшено */
    display: flex;
    flex-direction: column;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-section {
    padding: 40px 0;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .final-cta-section {
    padding: 40px 0;
  }
  
  .final-form {
    padding: 20px;
  }
  
  .trust-badges {
    gap: 15px;
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-contacts {
    align-items: center;
  }
  
  .chat-bot-container {
    width: calc(100vw - 40px);
    height: 70vh;
    bottom: 10px;
    right: 10px;
    left: 10px;
  }
  
  .chat-bot-toggle {
    bottom: 10px;
    right: 10px;
    animation: pulse-mobile 2s infinite;
  }
  
  .toggle-text {
    display: none;
  }
  
  .chat-bot-toggle {
    padding: 12px;
  }
  
  .services-navigation {
    display: flex;
  }
  
  .cases-scroll-indicator {
    display: block;
  }
  
  .testimonials-scroll-indicator {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 0;
  }
  
  h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .feature {
    width: 100%;
    justify-content: center;
  }
  
  /* ДОПОЛНИТЕЛЬНЫЕ ИСПРАВЛЕНИЯ ДЛЯ ОЧЕНЬ МАЛЕНЬКИХ ЭКРАНОВ */
  .services-scroll-container {
    max-height: 500px; /* Уменьшено с 600px */
  }
  
  .service-card {
    min-height: 460px; /* Уменьшено с 560px */
    padding: 18px 12px; /* Еще больше уменьшены отступы */
  }
  
  .services-section .btn-primary {
    width: 90%;
    padding: 10px 16px; /* Еще больше уменьшено */
    font-size: 12px; /* Еще больше уменьшено */
  }
  
  .services-section .service-footer {
    min-height: 55px; /* Уменьшено */
    padding-top: 10px; /* Уменьшено */
  }
  
  .case-footer .btn,
  .service-footer .btn {
    padding: 10px 16px; /* Уменьшено */
    font-size: 12px; /* Уменьшено */
  }
  
  .process-steps-container {
    max-height: 420px; /* Уменьшено */
  }
  
  .process-step {
    padding: 18px 12px; /* Уменьшено */
  }
  
  .step-number {
    width: 45px; /* Уменьшено */
    height: 45px; /* Уменьшено */
    font-size: 18px; /* Уменьшено */
  }
  
  .cases-scroll-container {
    max-height: 500px; /* Уменьшено с 580px */
  }
  
  .case-card {
    padding: 18px 12px; /* Уменьшено */
    flex: 0 0 90%;
    width: 90vw;
    max-width: 90vw;
    min-height: 420px; /* Уменьшено с 480px */
  }
  
  .case-header h3 {
    font-size: 15px; /* Уменьшено */
  }
  
  .case-niche {
    font-size: 10px; /* Уменьшено */
  }
  
  .metric-value {
    font-size: 12px; /* Уменьшено */
  }
  
  .case-description p {
    font-size: 12px; /* Уменьшено */
  }
  
  .testimonials-scroll-container {
    max-height: 320px; /* Уменьшено */
  }
  
  .testimonial-card {
    padding: 18px 12px; /* Уменьшено */
    flex: 0 0 90%;
    width: 90vw;
    max-width: 90vw;
    min-height: 230px; /* Уменьшено */
  }
  
  .testimonial-text {
    font-size: 12px; /* Уменьшено */
  }
  
  .testimonial-text::before {
    font-size: 40px; /* Уменьшено */
  }
  
  .author-avatar {
    width: 35px; /* Уменьшено */
    height: 35px; /* Уменьшено */
    font-size: 12px; /* Уменьшено */
  }
  
  .author-info h4 {
    font-size: 13px; /* Уменьшено */
  }
  
  .author-info p {
    font-size: 11px; /* Уменьшено */
  }
  
  /* Уменьшаем размеры шрифтов для очень маленьких экранов */
  .service-header h3 {
    font-size: 15px;
  }
  
  .service-price {
    font-size: 28px;
  }
  
  .old-price {
    font-size: 16px;
  }
  
  .section-label {
    font-size: 12px;
  }
  
  .service-list li {
    font-size: 12px;
  }
}

/* АНИМАЦИИ */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(5px);
  }
}

.scroll-indicator {
  animation: bounce 2s infinite;
}

.services-scroll-indicator {
  animation: bounce 2s infinite;
}

.cases-scroll-indicator {
  animation: bounce 2s infinite;
}

.testimonials-scroll-indicator {
  animation: bounce 2s infinite;
}

/* СКРОЛЛБАРЫ */
.problems-sync-container::-webkit-scrollbar {
  display: none;
}

.problems-sync-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.services-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.services-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.services-scroll-container::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 10px;
}

.services-scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.process-steps-container::-webkit-scrollbar {
  width: 6px;
}

.process-steps-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.process-steps-container::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 10px;
}

.process-steps-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.cases-scroll-container::-webkit-scrollbar {
  height: 5px;
}

.cases-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.cases-scroll-container::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 8px;
}

.cases-scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.testimonials-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.testimonials-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.testimonials-scroll-container::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 10px;
}

.testimonials-scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}