/* ===== THEME TOKENS ===== */
:root {
  --brand-primary: #4f46e5; /* indigo-600 */
  --brand-primary-dark: #4338ca; /* indigo-700 */
  --btn-gradient: linear-gradient(
    180deg,
    var(--brand-primary),
    var(--brand-primary-dark)
  );
  --btn-text: #ffffff;
  --btn-radius: 16px;
  --btn-focus-ring: 0 0 0 3px rgba(79, 70, 229, 0.25);
  --btn-shadow: 0 6px 26px rgba(79, 70, 229, 0.18);

  --surface: #ffffff;
  --ink: #1f2937;
  --muted: #5a647b;
}

/* ===== БАЗА ===== */
html,
body {
  font-size: 16px;
  background: #eef1f5;
  color: var(--ink);
  margin: 0;
  padding: 0;
  width: 100% !important;
  min-height: 100vh;
  box-sizing: border-box;
  overflow-x: hidden !important;
  font-family: Arial, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* ===== HERO ===== */
.hero {
  max-width: 1200px;
  margin: 12px auto 6px; /* компактнее */
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr;
  gap: 24px;
  align-items: start;
}
.hero-left {
  min-width: 0;
}
.hero-title {
  margin: 10px 0 8px;
  font-size: clamp(24px, 3.6vw, 34px); /* уменьшено, чтобы не ломать строки */
  line-height: 1.2;
  font-weight: 800;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 10px;
}
.headline-accent {
  background: linear-gradient(90deg, #1fa9ff, #5b4dff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Чипы / статистика */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 18, 32, 0.1);
  color: var(--muted);
  background: #fff;
  font-size: 13px;
}
.chip.soft {
  background: linear-gradient(90deg, #e9e9fb, #f3f3ff);
  color: #2a2f45;
  border-color: rgba(42, 47, 69, 0.18);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 8px;
}

/* CTA */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* ===== КНОПКИ — УТИЛИТЫ ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--btn-gradient);
  color: var(--btn-text);
}
.btn--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.btn--primary:active {
  transform: translateY(0);
  filter: none;
}
.btn--primary:focus-visible {
  outline: none;
  box-shadow: var(--btn-focus-ring);
}

.btn--outline {
  background: #fff;
  color: var(--ink);
  border-color: rgba(15, 18, 32, 0.12);
}
.btn--outline:hover {
  transform: translateY(-1px);
}

/* ===== ОСНОВНАЯ КНОПКА ===== */
.question-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--btn-radius);
  text-decoration: none;
  background: var(--btn-gradient);
  color: var(--btn-text);
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.question-button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.question-button:active {
  transform: translateY(0);
  filter: none;
}
.question-button:focus-visible {
  outline: none;
  box-shadow: var(--btn-focus-ring);
}
.question-button i {
  margin-right: 8px;
}

/* Вторая кнопка (каталог услуг) */
.btn.outline.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 15px;
  text-decoration: none;
  cursor: pointer;
  background: #fff;
  color: #1f2937;
  border: 1px solid rgba(15, 18, 32, 0.12);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.btn.outline.hero-secondary:hover {
  transform: translateY(-1px);
}

/* Авторизационная кнопка */
.auth-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--btn-gradient);
  color: var(--btn-text);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
  border: 1px solid transparent;
}
.auth-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* ===== БЫСТРЫЙ ДОСТУП ===== */
.qa-panel {
  background: linear-gradient(180deg, #e8e9ff 0%, #e3f6ff 100%);
  border: 1px solid rgba(48, 67, 255, 0.12);
  border-radius: 20px;
  padding: 16px 16px 10px;
  box-shadow: 0 10px 28px rgba(6, 12, 38, 0.08);
  font-size: 0.96rem;
}
.qa-panel .qa-title {
  font-size: clamp(18px, 2.4vw, 22px);
  margin: 0 0 10px;
  font-weight: 800;
}
.qa-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 6px;
}
.qa-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(10, 16, 40, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.75)
  );
  box-shadow: 0 3px 10px rgba(6, 12, 38, 0.06);
  color: #121528;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s,
    background 0.2s;
}
.qa-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(6, 12, 38, 0.09);
  border-color: rgba(48, 67, 255, 0.2);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.82)
  );
}
.qa-icon {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(48, 67, 255, 0.08),
    rgba(14, 165, 233, 0.08)
  );
  font-size: 16px;
}
.qa-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #121528;
  display: block;
}
.qa-text small {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: #64748b;
  margin-top: 2px;
  white-space: normal;
}
.qa-badge {
  display: none !important;
}

/* Совет дня */
.qa-tip {
  margin: 10px 4px 2px;
  font-size: 13px;
  color: #293449;
}
.qa-tip strong {
  font-weight: 800;
}
.qa-tip-ico {
  margin-right: 6px;
}

/* ===== МОДАЛКА ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 6000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  padding: 28px 22px;
  border-radius: 15px;
  max-width: 420px;
  width: 92%;
  margin: auto;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  position: relative;
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 22px;
  color: #555;
  cursor: pointer;
}
.modal h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
}
.modal p {
  margin-bottom: 18px;
  font-size: 15px;
}

/* === Двухколоночный блок под HERO === */
.two-up {
  max-width: 1200px;
  margin: 16px auto 0;
}
.two-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px; /* было 140px — убрали лишний воздух */
  align-items: start;
}
.two-card {
  background: #fff;
  border: 1px solid rgba(10, 16, 40, 0.08);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(6, 12, 38, 0.06);
  padding: 16px;
}

/* === Section title и заголовки === */
.section-title {
  display: grid;
  grid-template-columns: 1fr auto; /* слева заголовок, справа кнопка */
  grid-template-rows: auto auto; /* 1-я строка: заголовок+кнопка; 2-я: подзаголовок */
  column-gap: 12px;
  align-items: center;
  margin: 0 0 22px; /* увеличен отступ вниз */
}
/* позволяем детям .section-head участвовать в сетке родителя */
.section-title .section-head {
  display: contents;
}

/* заголовок — в левую ячейку первой строки */
.section-title .section-head h2,
.section-title .section-head .h2 {
  grid-column: 1;
  grid-row: 1;
  margin: 0 0 20px; /* явный зазор под заголовком */
  font-size: clamp(20px, 2.8vw, 28px); /* уменьшен размер */
  font-weight: 700;
}

/* подзаголовок — отдельной строкой на всю ширину */
.section-title .section-subtitle {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 6px; /* чуть ниже подзаголовок */
}

/* ссылка справа — в первой строке */
.section-title .btn.link {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  padding: 6px 10px; /* компактная высота */
  line-height: 1;
  font-size: 14px;
  margin-left: 8px; /* чтобы не прилипала к заголовку */
}

/* === Что спрашивают прямо сейчас — растянутый вид === */
.live-qa-ticker {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 520px; /* на десктопе */
  border: 1px solid rgba(10, 16, 40, 0.06);
  background: rgba(255, 255, 255, 0.86);
}
.live-qa-loop {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  will-change: transform;
  animation: liveQaScroll 45s linear infinite;
}
@keyframes liveQaScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-1 * var(--liveqa-loop-h, 1000px)));
  }
}
.live-qa-item {
  height: 58px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-bottom: 1px solid rgba(10, 16, 40, 0.06);
  font-size: 14px;
}
.live-qa-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b8bff, #92d3ff);
}
.live-qa-title {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-qa-meta {
  font-size: 12px;
  color: #6b7280;
  margin-top: 1px;
}
.live-qa-meta .dot {
  margin: 0 4px;
  color: rgba(0, 0, 0, 0.2);
}
.questions-tip {
  margin-top: 14px;
  color: #8c8d8e;
  font-size: 14px;
  line-height: 1.55;
}

/* === Как это работает === */
.how-it-works {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(14, 165, 233, 0.05) 60%,
    rgba(16, 185, 129, 0.05)
  );
  font-size: 0.95rem;
}
.how-it-works::before,
.how-it-works::after {
  z-index: 0;
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.how-it-works::before {
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(99, 102, 241, 0.18),
    rgba(99, 102, 241, 0) 60%
  );
  filter: blur(8px);
}
.how-it-works::after {
  left: -100px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle at 70% 70%,
    rgba(14, 165, 233, 0.16),
    rgba(14, 165, 233, 0) 65%
  );
  filter: blur(10px);
}
.how-it-works .section-title,
.how-it-works .content {
  position: relative;
  z-index: 1;
}
.two-card.how-it-works {
  padding: 14px 16px 10px;
}
.how-it-works .section-title {
  margin: 0 0 8px;
}
.how-it-works .content {
  padding: 0 8px 8px;
}
.how-it-works .steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.how-it-works .step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(1.05) blur(1.5px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.how-it-works .step-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.88));
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.how-it-works .step-text {
  line-height: 1.5;
}
/* бейджи */
.how-it-works .notes {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
}
.how-it-works .notes .note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #1b2a4e;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(10, 16, 40, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* ===== ОТСТУПЫ ДЛЯ РАЗДЕЛОВ ===== */
.section {
  margin-top: 60px !important; /* было 40px */
  margin-bottom: 60px !important;
}
/* Гарантированный зазор между соседними секциями */
.section + .section {
  margin-top: 70px !important;
}

/* ===== Home: статьи (карточки) ===== */
.home-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.home-article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f7f7fb);
  border: 1px solid rgba(13, 16, 40, 0.08);
  box-shadow: 0 4px 12px rgba(6, 12, 38, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.home-article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(6, 12, 38, 0.1);
}
.hac-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hac-ico {
  font-size: 18px;
  opacity: 0.9;
}
.hac-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0f1220;
}
.hac-desc {
  margin: 0;
  color: #5a647b;
  font-size: 0.9rem;
  line-height: 1.42;
}
.hac-meta {
  margin-top: 0.35rem;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #6b7280;
  font-size: 0.88rem;
}
.hac-meta .dot {
  color: #cbd5e1;
}
.hac-read {
  margin-top: 0.25rem;
  font-weight: 700;
  color: #133670;
}
.hac-read:hover {
  text-decoration: underline;
}

/* ====== АДАПТИВ ====== */
@media (max-width: 1200px) {
  .two-grid {
    gap: 28px;
  }
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .qa-items {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .qa-item {
    padding: 10px;
  }
  .qa-panel .qa-title {
    font-size: 18px;
  }
  .qa-panel {
    transform: none;
    font-size: 1rem;
  }
  .how-it-works {
    transform: none;
    font-size: 1rem;
  }
  .two-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .live-qa-ticker {
    height: 480px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .section + .section {
    margin-top: 48px !important;
  }

  .lead {
    font-size: 16px;
  }

  .hero-title {
    font-size: clamp(22px, 5vw, 28px);
  } /* ещё компактнее на мобилке */

  .section-title {
    margin-bottom: 16px !important;
    column-gap: 8px;
  }
  .section-title .section-head h2,
  .section-title .section-head .h2 {
    margin-bottom: 16px !important;
    font-size: clamp(18px, 4.6vw, 24px);
  }
  .section-title .btn.link {
    font-size: 13.5px;
    padding: 6px 10px;
  }

  .qa-items {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .live-qa-ticker {
    height: min(60vh, 440px) !important;
  } /* не съедает экран */
  main.container {
    padding-bottom: 16px !important;
  }

  .home-articles-grid {
    grid-template-columns: 1fr;
  }
  .two-card + .two-card {
    margin-top: 16px;
  }
}
@media (max-width: 360px) {
  .live-qa-item {
    padding: 6px 10px;
  }
  .live-qa-title {
    font-size: 13.25px;
  }
  .hero-title {
    font-size: 20px;
  }
  .section-title .section-head h2,
  .section-title .section-head .h2 {
    font-size: 18px;
  }
}

/* ===== Доп. служебные классы ===== */
.hide-question-btn {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.styled-auth-modal .modal-content {
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  padding: 24px 20px;
}
.styled-auth-modal .modal h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.styled-auth-modal .modal p {
  font-size: 14px;
  color: #4b5563;
}
/* ==== Фикс отступов заголовка и подзаголовка базы знаний ==== */
.section-title {
  margin-top: 0 !important;
  margin-bottom: 16px !important; /* воздух перед карточками */
  padding: 0 !important;
}

.section-title .section-head h2,
.section-title .section-head .h2 {
  margin-top: 0 !important;
  margin-bottom: 8px !important; /* зазор между h2 и подзаголовком */
  line-height: 1.25;
}

.section-title .section-subtitle {
  margin: 0 0 0 !important;
  padding: 0 !important;
  line-height: 1.4;
  font-size: 0.95rem;
}

/* На мобильных чуть компактнее */
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 14px !important;
  }
  .section-title .section-head h2,
  .section-title .section-head .h2 {
    margin-bottom: 6px !important;
  }
}
/* ==== Выравнивание заголовков под размер "Быстрый доступ" ==== */
.section-title .section-head h2,
.section-title .section-head .h2 {
  font-size: clamp(18px, 2.2vw, 22px) !important; /* как у Быстрый доступ */
  font-weight: 700;
  margin-bottom: 8px !important;
}
