/* Основные стили для новых страниц AI Sales Engine */
/* Современный дизайн с цветовой палитрой #01b2ba */

@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&display=swap);

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Universal fix for missing letters in text rendering */
h1, h2, h3, h4, h5, h6, p, span, a, li, label, button, input, textarea, div {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Universal fix for missing letters in text rendering */
h1, h2, h3, h4, h5, h6, p, span, a, li, td, th, label, button, input, textarea, select {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
  overflow: visible;
  text-overflow: clip;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f6f6f6;
  color: #333;
  overflow-x: hidden;
  /* Fix for missing letters in text rendering */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: normal;
  word-spacing: normal;
  font-feature-settings: normal;
  font-variant-ligatures: none;
}

/* Навигация */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo, #logo:hover, #logo:active, #logo:focus {
  font-size: 1.5rem;
  font-weight: 700;
  color: #01b2ba;
  text-decoration: none !important;
  cursor: default !important;
  outline: none !important;
  pointer-events: auto; /* Allow click on main pages but no visual change */
}

#menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  /* Fix for missing letters - ensure proper text rendering */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga" 1, "kern" 1;
}

/* Переключатель языка */
.language-switcher {
  padding: 8px 16px;
  background: #01b2ba;
  color: white !important;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.language-switcher:hover {
  background: #0099a0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(1, 178, 186, 0.3);
}

.language-switcher:active {
  transform: translateY(0);
}

#menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  /* Fix for missing letters in menu */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
  overflow: visible;
  text-overflow: clip;
  font-feature-settings: normal;
  font-variant-ligatures: none;
  letter-spacing: 0;
  min-width: auto;
  width: auto;
  max-width: none;
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#menu li a:hover {
  color: #01b2ba;
}

/* Двухуровневое меню */
.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > a::after {
  content: ' ▼';
  font-size: 0.7em;
  margin-left: 5px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1001;
  border-radius: 5px;
}

.menu-item-has-children:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  margin: 0;
  padding: 0;
}

.submenu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
  font-feature-settings: "liga" 1, "kern" 1;
  letter-spacing: 0;
}

.submenu li a:hover {
  background: #f5f5f5;
  color: #01b2ba;
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  padding: 5px;
}

#menu-icon {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  position: relative;
  transition: all 0.3s ease;
}

#menu-icon::before,
#menu-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

#menu-icon::before {
  top: -8px;
}

#menu-icon::after {
  bottom: -8px;
}

#menu-icon.active {
  background: transparent;
}

#menu-icon.active::before {
  top: 0;
  transform: rotate(45deg);
}

#menu-icon.active::after {
  bottom: 0;
  transform: rotate(-45deg);
}

@media (max-width: 1272px) {
  #menu-toggle {
    display: block;
  }
  #menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  #menu.active {
    display: flex;
  }
}

/* Параллакс шапка - уезжает при скролле */
.parallax-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #01b2ba 0%, #008a91 100%);
  z-index: 1;
  transition: transform 0.5s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-header.scrolled {
  transform: translateY(-100%);
}

/* Параллакс изображение в шапке */
.parallax-header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
  transition: transform 0.3s ease-out;
}

.parallax-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
}

.parallax-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-weight: 700;
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
}

.parallax-header h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  font-weight: 400;
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
}

.parallax-header p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
}

/* ИИ-чат и офферы в шапке */
.header-chat-section {
  margin-top: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#userInput {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid rgba(1,178,186,0.3);
  background: white !important;
  color: #333 !important;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  font-family: Nunito, sans-serif;
  /* Мерцающая анимация для приглашения в диалог / Pulsing animation to invite dialogue */
  animation: inputPulse 2.5s ease-in-out infinite;
}

/* Анимация мерцания поля ввода / Input pulsing animation */
@keyframes inputPulse {
  0%, 100% {
    border-color: rgba(1,178,186,0.3);
    box-shadow: 0 0 0 0 rgba(1,178,186,0.2);
  }
  50% {
    border-color: rgba(1,178,186,0.8);
    box-shadow: 0 0 20px 5px rgba(1,178,186,0.4);
  }
}

#userInput::placeholder {
  color: rgba(0,0,0,0.5) !important;
}

#userInput:focus {
  border-color: rgba(1,178,186,0.8);
  background: white;
  /* Останавливаем анимацию при фокусе / Stop animation on focus */
  animation: none;
}

#offer {
  margin-top: 20px;
  font-size: 1.2rem;
  min-height: 40px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  font-weight: 500;
}

#chatResponse {
  display: none !important;
}

/* Основной контент */
.main-content {
  position: relative;
  z-index: 2;
  margin-top: 100vh;
  background: #f6f6f6;
}

.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section h1 {
  font-size: 2.5rem;
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
}

/* Кнопки */
.btn-whatsapp::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.477 2 2 6.477 2 12c0 1.89.525 3.66 1.438 5.168L2 22l4.832-1.438A9.956 9.956 0 0012 22c5.523 0 10-4.477 10-10S17.523 2 12 2zm4.92 13.44c-.207.583-1.215 1.114-1.663 1.175-.45.063-.867.3-2.92-.608-2.448-1.07-3.99-3.56-4.11-3.726-.12-.163-.975-1.3-.975-2.48 0-1.18.617-1.76.836-2.002.218-.24.477-.3.636-.3h.457c.147 0 .345.056.54.42.207.383.697 1.7.758 1.824.06.122.1.265.02.428-.08.162-.12.263-.238.406-.12.143-.252.32-.36.43-.12.12-.244.25-.105.49.14.24.62 1.023 1.33 1.657.913.813 1.685 1.065 1.924 1.185.24.12.38.1.52-.06.14-.162.6-.7.76-.94.16-.24.32-.2.54-.12.22.08 1.4.66 1.64.78.24.12.4.18.46.28.06.1.06.583-.147 1.166z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-whatsapp {
  padding: 8px 16px;
  background-color: #01b2ba;
  color: white !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: Nunito, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-whatsapp:hover {
  background-color: #009ca2;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(1, 178, 186, 0.3);
}

.btn-primary {
  padding: 15px 30px;
  font-size: 18px;
  color: white;
  background-color: #01b2ba;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
  text-decoration: none;
  display: inline-block;
  font-family: Nunito, sans-serif;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #008a91;
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 15px 30px;
  font-size: 18px;
  color: #01b2ba;
  background-color: white;
  border: 2px solid #01b2ba;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: Nunito, sans-serif;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: #01b2ba;
  color: white;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.hero-integrations {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-integrations strong {
  display: block;
  margin-bottom: 0.5rem;
}

/* Карточки продуктов */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.product-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-card h3 {
  color: #01b2ba;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.product-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #666;
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
}

.product-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #01b2ba;
  font-weight: bold;
}

.product-card .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff6b6b;
  margin: 1rem 0;
}

/* Карточки целевой аудитории */
.target-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.target-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.target-card:hover {
  transform: translateY(-3px);
}

.target-card h3 {
  color: #01b2ba;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
}

/* Шаги процесса */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.process-step {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #01b2ba;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Преимущества */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list li {
  padding: 15px 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
  color: #333;
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
}

.benefits-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #01b2ba;
  font-weight: bold;
  font-size: 1.3rem;
}

/* Тарифы */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured {
  border: 3px solid #01b2ba;
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 700;
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #01b2ba;
  margin: 1rem 0;
}

.pricing-card .price span {
  font-size: 1rem;
  color: #666;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Nunito, sans-serif;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: #01b2ba;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 20px;
  color: #666;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
}

.faq-answer.open,
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

.faq-answer.open,
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

/* Telegram button и Chat Modal */
#telegram-button {
  position: fixed;
  bottom: 25px;
  right: 30px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #0088cc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#telegram-button img {
  height: 50px;
}

.telegram-options {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.telegram-options.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.telegram-option {
  width: 50px;
  height: 50px;
  background-color: #ffffff00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0%);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

/* Chat Modal Styles - Updated Design */
.chat-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.chat-modal.active {
    display: flex;
}

.chat-modal__content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.chat-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.chat-modal__title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.chat-modal__close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.chat-modal__close:hover {
    color: #333;
}

.chat-modal__messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 15px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    min-height: 300px;
}

.chat-modal__messages .message {
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    max-width: 80%;
    word-wrap: break-word;
}

.chat-modal__messages .user-message {
    background: #01b2ba;
    color: white;
    margin-left: auto;
    text-align: right;
    display: block;
}

.chat-modal__messages .bot-message {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    display: block;
}

.chat-modal__messages .assistant-message {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    display: block;
}

.chat-modal__messages .message.prompt-request {
    background: #e3f2fd;
    border-color: #2196f3;
    border-left: 4px solid #2196f3;
}

.chat-modal__messages .message.error {
    background: #ffebee;
    border-color: #f44336;
    border-left: 4px solid #f44336;
    color: #c62828;
}

/* Стили для сообщений с изображениями / Image message styles */
.chat-modal__messages .message.image-message {
    background: #f8f9fa;
    border-left: 4px solid #01b2ba;
    padding: 15px;
    max-width: 100%;
}

.chat-modal__messages .image-prompt {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 14px;
}

.chat-modal__messages .generated-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
    display: block;
}

.chat-modal__messages .image-info {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

/* Индикатор печати / Typing indicator */
.chat-modal__messages .typing-indicator {
    background: white;
    border: 1px solid #ddd;
    padding: 15px;
}

.typing-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: #01b2ba;
    border-radius: 50%;
    animation: typing-dot 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-dot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.chat-modal__footer {
    display: flex;
    gap: 10px;
}

.chat-modal__footer input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.chat-modal__footer input:focus {
    outline: none;
    border-color: #01b2ba;
}

.chat-modal__footer button {
    padding: 12px 24px;
    background: #01b2ba;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.chat-modal__footer button:hover {
    background: #019ba3;
}

/* Legacy message styles for compatibility */
.message { 
  margin: 6px 0; 
  line-height: 1.35; 
}
.user-message { 
  text-align: right; 
}
.bot-message { 
  text-align: left; 
}

/* Popup форма */
.popup-form {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.popup-form.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background-color: #fefefe;
  margin: auto;
  padding: 30px;
  border: none;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}

.popup-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-content label {
  font-weight: 600;
  color: #333;
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
}

.popup-content input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: Nunito, sans-serif;
}

.popup-content button[type="submit"] {
  padding: 12px;
  background: #01b2ba;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: Nunito, sans-serif;
}

.popup-content button[type="submit"]:hover {
  background: #008a91;
}

/* Development Page Styles */
/* Services Grid - сетка для карточек услуг */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

/* Service Card - карточка услуги */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(1, 178, 186, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.service-card > p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #01b2ba;
  font-weight: bold;
}

.service-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f6f6f6;
  border-radius: 8px;
}

.service-pricing .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #01b2ba;
}

.service-pricing .timeline {
  font-size: 0.9rem;
  color: #666;
}

.service-cta {
  width: 100%;
  padding: 12px;
  background: #01b2ba;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: Nunito, sans-serif;
}

.service-cta:hover {
  background: #008a91;
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Process Timeline - временная линия процесса работы */
.process-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  padding: 0 1rem;
}

.timeline-step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.timeline-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(1, 178, 186, 0.2);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #01b2ba;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(1, 178, 186, 0.3);
}

.timeline-step h3 {
  font-size: 1.3rem;
  color: #333;
  margin: 1rem 0 0.5rem 0;
}

.step-duration {
  color: #01b2ba;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.step-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  text-align: left;
}

.step-details li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.step-details li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #01b2ba;
  font-weight: bold;
}

/* Unique Combo Section - уникальные преимущества */
.unique-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 0 1rem;
}

.unique-benefit {
  text-align: center;
  padding: 2rem;
  background: #f6f6f6;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.unique-benefit:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.unique-benefit h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
}

.unique-benefit p {
  color: #666;
  line-height: 1.6;
}

/* Workflow Diagram - схема работы */
.workflow-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3rem 0;
  padding: 2rem;
  background: #f6f6f6;
  border-radius: 12px;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  min-width: 120px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.workflow-step .step-number {
  width: 35px;
  height: 35px;
  background: #01b2ba;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.workflow-arrow {
  font-size: 2rem;
  color: #01b2ba;
  font-weight: bold;
}

/* Comparison Table - сравнительная таблица */
.comparison-table {
  margin: 3rem 0;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
  background: #01b2ba;
  color: white;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table tbody tr:hover {
  background: #f6f6f6;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Portfolio Section - портфолио и кейсы */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
  padding: 0 1rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Nunito, sans-serif;
}

.filter-btn:hover {
  border-color: #01b2ba;
  color: #01b2ba;
}

.filter-btn.active {
  background: #01b2ba;
  color: white;
  border-color: #01b2ba;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.portfolio-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(1, 178, 186, 0.2);
}

.portfolio-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #01b2ba 0%, #008a91 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-placeholder {
  font-size: 4rem;
  opacity: 0.8;
}

.portfolio-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-content h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
}

.portfolio-content > p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.portfolio-metrics {
  margin: 1rem 0;
  padding: 1rem;
  background: #f6f6f6;
  border-radius: 8px;
}

.portfolio-metrics .metric {
  font-size: 1.1rem;
  font-weight: 700;
  color: #01b2ba;
}

.portfolio-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tech-tag {
  padding: 0.4rem 0.8rem;
  background: #e6f7f8;
  color: #01b2ba;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.portfolio-timeline {
  margin-top: auto;
  padding-top: 1rem;
  color: #999;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

/* AI Demo Section - AI инструменты */
.ai-demo-calculator,
.ai-demo-advisor {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ai-demo-calculator h3,
.ai-demo-advisor h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.calculator-form,
.advisor-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-group select,
.form-group input[type="number"],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: Nunito, sans-serif;
  transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group input[type="number"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #01b2ba;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.calculator-result,
.advisor-result {
  margin-top: 2rem;
  padding: 2rem;
  background: #f6f6f6;
  border-radius: 12px;
  border: 2px solid #01b2ba;
}

.calculator-result.hidden,
.advisor-result.hidden {
  display: none;
}

.calculator-result h4,
.advisor-result h4 {
  font-size: 1.5rem;
  color: #01b2ba;
  margin-bottom: 1rem;
}

.result-content,
.recommendations-content {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.result-actions,
.recommendations-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.result-actions button,
.recommendations-actions button {
  flex: 1;
  min-width: 150px;
}

.btn-secondary {
  background: white;
  color: #01b2ba;
  border: 2px solid #01b2ba;
}

.btn-secondary:hover {
  background: #01b2ba;
  color: white;
}

/* AI Chat Widget - плавающий чат */
.ai-chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.ai-chat-toggle {
  background: #01b2ba;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(1, 178, 186, 0.3);
  transition: all 0.3s ease;
  font-family: Nunito, sans-serif;
}

.ai-chat-toggle:hover {
  background: #008a91;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(1, 178, 186, 0.4);
}

.ai-chat-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 350px;
  max-height: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ai-chat-window.hidden {
  display: none;
}

.chat-header {
  background: #01b2ba;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  max-height: 300px;
  background: #f6f6f6;
}

.chat-welcome {
  padding: 1rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.chat-message {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
}

.chat-message.user {
  background: #01b2ba;
  color: white;
  margin-left: auto;
  max-width: 80%;
  text-align: right;
}

.chat-message.bot {
  background: white;
  color: #333;
  max-width: 80%;
  border: 1px solid #ddd;
}

.chat-input-area {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  background: white;
  border-top: 1px solid #eee;
}

.chat-input-area input {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: Nunito, sans-serif;
}

.chat-input-area input:focus {
  outline: none;
  border-color: #01b2ba;
}

.chat-send {
  padding: 0.75rem 1.5rem;
  background: #01b2ba;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  font-family: Nunito, sans-serif;
}

.chat-send:hover {
  background: #008a91;
}

.chat-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #f6f6f6;
  border-top: 1px solid #eee;
}

.quick-reply {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  text-align: left;
  transition: all 0.3s ease;
  font-family: Nunito, sans-serif;
}

.quick-reply:hover {
  background: #01b2ba;
  color: white;
  border-color: #01b2ba;
}

/* Testimonials Section - отзывы клиентов */
.testimonials-slider {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  flex: 0 0 350px;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.testimonial-rating {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: #01b2ba;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.25rem;
}

.author-role {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-project {
  color: #01b2ba;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.testimonial-project:hover {
  color: #008a91;
  text-decoration: underline;
}

/* FAQ Section - часто задаваемые вопросы */
.faq-list {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Nunito, sans-serif;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f6f6f6;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: #01b2ba;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  /* Fix for missing letters */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: normal;
  word-break: normal;
}

.faq-item.active .faq-answer {
  max-height: 500px !important;
  padding: 0 1.5rem 1.5rem 1.5rem;
  overflow: visible;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* CTA Section - финальный призыв к действию */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  min-width: 200px;
}

.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  background: #f6f6f6;
  border-radius: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-item a {
  color: #01b2ba;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #008a91;
  text-decoration: underline;
}

/* Адаптивность для чата */
@media (max-width: 768px) {
  .ai-chat-window {
    width: calc(100vw - 40px);
    right: 20px;
    bottom: 80px;
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .parallax-header h1 {
    font-size: 2rem;
  }
  .parallax-header h2 {
    font-size: 1.2rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 40px 15px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .process-timeline {
    flex-direction: column;
  }
  .timeline-step {
    margin-bottom: 2rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .unique-benefits {
    grid-template-columns: 1fr;
  }
  .workflow-diagram {
    flex-direction: column;
  }
  .workflow-arrow {
    transform: rotate(90deg);
  }
  .comparison-table {
    overflow-x: auto;
  }
  .testimonials-slider {
    flex-direction: column;
  }
  .faq-list {
    padding: 0 1rem;
  }
  .cta-buttons {
    flex-direction: column;
  }
}


@media (max-width: 768px) {
  .parallax-header-content {
    padding-top: 25vh !important;
  }
}

/* ── ВРЕМЕННО: отключить ИИ чат на мобильных ── */
@media (max-width: 1024px) {
  #telegram-chat,
  #telegram-button,
  #chatModal { display: none !important; }
}
/* ── КОНЕЦ ВРЕМЕННОГО БЛОКА ── */
