

/* Start:/local/templates/research_2026/styles.css?177072509536448*/
/* 
 * Стили для лендинга "Быть или не быть: сервисный бизнес 2026"
 */

/* Подключение шрифта IBM Plex Sans */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

/* Базовые переменные */
:root {
  --color-bg-primary: #fbfbfb;
  --color-bg-secondary: #f0f2f3;
  --color-text: #222222;
  --color-accent: #4dad33;
  --font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-base: 20px;
  --container-width: 1920px;
  --content-width: 750px;
}

/* Reset и базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Wrapper */
.wrapper {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Header с логотипами - СТАТИЧНЫЙ (не фиксированный) */
.logos {
  background: transparent;
  padding: 40px 60px 20px 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logos img {
  max-width: 100%;
}

/* Hero-секция (title-page) */
.title-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 0px 60px 0px 60px;
  background-color: #fff;
}

.title-page .hero-content {
  max-width: 100%;
}


/* Hero subheading */
.hero-subheading {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.title-page h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--color-text);
}

.title-page .subtitle {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 40px;
  color: var(--color-text);
  opacity: 0.9;
}

.hero-illustration {
  border-radius: 12px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  color: #666;
  font-style: italic;
}

.hero-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.entry-img {
  max-width: 850px;
  border-radius: 10px;
  margin: 5px 0 15px 0;
}

/* Широкие секции (как первый экран) */
.wide-section {
  padding: 110px 60px;
  background-color: var(--color-bg-primary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.wide-section:nth-of-type(even) {
  background-color: var(--color-bg-secondary);
}

.wide-section .container-wide {
  max-width: 1300px;
  margin: 0 auto;
}

.custom-bg {
  background: var(--color-bg-secondary) !important;
}

/* Специальные стили для секций */
.section-light-bg {
  background-color: #fbfbfb !important;
}

.section-gray-bg {
  background-color: var(--color-bg-secondary) !important;
}

.container-centered-narrow {
  max-width: 850px !important;
  margin: 0 auto !important;
}

.card-box-gray {
  background-color: var(--color-bg-secondary) !important;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 20px;
}

.card-box-light {
  background-color: #fbfbfb !important;
  border-radius: 10px;
  padding: 60px 40px;
  margin-bottom: 20px;
}

.card-box-gray h2,
.card-box-light h2 {
  margin-top: 0;
  margin-bottom: 20px;
}

.card-box-gray p:last-child,
.card-box-light p:last-child {
  margin-bottom: 0;
}

.section-image {
  margin-bottom: 20px;
  width: 100%;
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.card-box-gray:last-of-type,
.card-box-light:last-of-type,
.section-image:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 768px) {

  .card-box-gray,
  .card-box-light {
    padding: 25px;
    margin-bottom: 15px;
  }

  .section-image {
    margin-bottom: 15px;
  }
}

/* Секции контента */
section {
  padding: 80px 40px;
  background-color: var(--color-bg-primary);
  scroll-margin-top: 20px;
}

section:nth-child(even) {
  background-color: #fbfbfb;
}

section .container {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* Two-column layout */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.two-column-layout .text-column {
  max-width: 100%;
}

.two-column-layout .image-column {
  max-width: 100%;
}

.two-column-layout .illustration {
  margin: 0;
}

/* Responsive behavior */
@media (max-width: 1024px) {
  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 0px;
    margin-top: 0;
  }
}

/* Сетка факторов: 2×2 */
.factors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.factor-card {
  background-color: #fafafa;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #cbcbcb;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.factor-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Базовый стиль для всех иконок */
.factor-card::after {
  content: '';
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 280px;
  height: 280px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}

/* Индивидуальные иконки для каждой карточки */
.factor-card--icon1::after {
  background-image: url('/local/templates/research_2026/images/cbr.png');
}

.factor-card--icon2::after {
  background-image: url('/local/templates/research_2026/images/road.png');
}

.factor-card--icon3::after {
  background-image: url('/local/templates/research_2026/images/nalogi.png');
}

.factor-card--icon4::after {
  background-image: url('/local/templates/research_2026/images/deficit.png');
}

.factor-text {
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  z-index: 1;
  max-width: 50%;
}

/* Адаптив: на мобилке в одну колонку */
@media (max-width: 768px) {
  .factors-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .factor-card {
    min-height: 220px;
    padding: 20px;
  }

  .factor-card::after {
    width: 200px;
    height: 200px;
    right: 10px;
    bottom: 5px;
  }

  .factor-text {
    font-size: 1.3rem;
  }
}

/* конец: Сетка факторо: 2х2 */

/* Full-width text between two-column blocks */
.full-width-text {
  margin: 60px 0;
}

.full-width-text p {
  max-width: 100%;
}

/* Reverse column order for image-left layouts */
.two-column-layout.reverse {
  grid-template-columns: 1fr 1fr;
}

/* On mobile, maintain normal order for reversed layouts */
@media (max-width: 1024px) {
  .two-column-layout.reverse {
    grid-template-columns: 1fr;
  }

  .two-column-layout.reverse .image-column {
    order: 2;
  }

  .two-column-layout.reverse .text-column {
    order: 1;
  }
}

/* Narrow content wrapper for text within wide sections */
.wide-section .content-narrow {
  max-width: 750px;
}

/* Keep these elements at full container-wide width */
.wide-section .chart,
.wide-section .illustration,
.wide-section .highlight-box,
.wide-section .warning-box,
.wide-section .info-box,
.wide-section .success-box,
.wide-section .conclusion,
.wide-section .quote,
.wide-section .navigation-inline {
  max-width: 100%;
}

/* Pie chart visual styles */
/* Pie chart visual styles */
.pie-chart-visual {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: center;
  padding: 0px 40px 40px 40px;
  border-radius: 8px;
}

.pie-container {
  width: 100%;
  max-width: 350px;
  position: relative;
}

.pie-container canvas {
  max-width: 100%;
  height: auto !important;
}

.pie-legend {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background-color: white;
  border-radius: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.legend-item:hover {
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legend-color {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}

.legend-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
}

.legend-text strong {
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.15rem;
}

/* Mobile: legend below chart */
@media (max-width: 768px) {
  .pie-chart-visual {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  .pie-container {
    max-width: 280px;
    margin: 0 auto;
  }

  .legend-text {
    font-size: 0.95rem;
  }

  .legend-text strong {
    font-size: 1.05rem;
  }
}

/* Pie chart visual styles end */


/* Wrapper для табов: сетка с навигацией слева */
.tabs-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  margin-top: 40px;
}

/* Табы навигации (вертикальный столбик) */
.tabs-navigation {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

.tab-button {
  background: white;
  border: none;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  border-left: 3px solid transparent;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-align: left;
  font-family: var(--font-family);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tab-button:hover {
  color: var(--color-accent);
  background-color: rgba(77, 173, 51, 0.05);
  border-left-color: var(--color-accent);
  transform: translateX(3px);
}

.tab-button.active {
  color: var(--color-accent);
  border-left-color: var(--color-accent);
  background-color: rgba(77, 173, 51, 0.08);
  font-weight: 600;
}

/* Контент табов */
.tabs-content {
  min-height: 400px;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.tab-panel h3 {
  margin-top: 0px;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптив: на планшетах и мобилках табы сверху */
@media (max-width: 1024px) {
  .tabs-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tabs-navigation {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
  }

  .tab-button {
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .tab-button:hover {
    transform: translateX(0);
    border-bottom-color: var(--color-accent);
  }

  .tab-button.active {
    border-left-color: transparent;
    border-bottom-color: var(--color-accent);
  }
}

@media (max-width: 768px) {
  .tab-button {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

/* Табы - Конец */



/* Аккордеон - начало */


/* Показываем табы на desktop, скрываем аккордеон */
@media (min-width: 1024px) {
  .tabs-version {
    display: block;
  }

  .accordion-version {
    display: none;
  }
}

/* Показываем аккордеон на mobile, скрываем табы */
@media (max-width: 1023px) {
  .tabs-version {
    display: none;
  }

  .accordion-version {
    display: block;
  }
}

/* Стили для аккордеона */
.accordion-version {
  margin-top: 0px;
}

.accordion-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  scroll-margin-top: 40px;
  /* ВАЖНО - должно быть */
}

.accordion-header {
  width: 100%;
  background: white;
  border: none;
  padding: 20px 24px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family);
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background-color: rgba(77, 173, 51, 0.05);
}

.accordion-header.active {
  background-color: rgba(77, 173, 51, 0.08);
  color: var(--color-accent);
}

.accordion-icon {
  width: 17px;
  height: 11px;
  transition: transform 0.4s ease;
  flex-shrink: 0;
  display: block;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

/* Контейнер для контента - использует CSS Grid */
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  width: 100%;
  contain: layout;
  /* Добавь эту строку - предотвращает layout shift */
}


.accordion-content.active {
  grid-template-rows: 1fr;
}

/* Внутренняя обёртка - фиксируем ширину */
.accordion-content-inner {
  overflow: hidden;
  min-width: 0;
  width: 100%;
}

/* Контент внутри - фиксируем ширину и добавляем padding */
.accordion-content-wrapper {
  padding: 0 24px;
  opacity: 0;
  transition: opacity 0.3s ease, padding 0.4s ease;
}

.accordion-content.active .accordion-content-wrapper {
  padding: 20px 24px 20px;
  opacity: 1;
}

.accordion-content .content-narrow {
  max-width: 100%;
  margin: 0 auto;
}

/* Предотвращаем изменение ширины элементов */
.accordion-content .chart,
.accordion-content .illustration,
.accordion-content .content-narrow,
.accordion-content .stats-block,
.accordion-content .warning-box,
.accordion-content .highlight-box,
.accordion-content .info-box,
.accordion-content .success-box,
.accordion-content .conclusion,
.accordion-content .quote {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .accordion-header {
    padding: 16px 20px;
    font-size: 1.1rem;
  }

  .accordion-content-wrapper {
    padding: 0 20px;
  }

  .accordion-content.active .accordion-content-wrapper {
    padding: 16px 20px 24px;
  }

  .accordion-version {
    padding: 40px 20px !important;
  }
}

/* Аккордеон - конец */

.results-subheading {
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 40px;
  max-width: 700px;
}

/* Навигация внутри секции */
.navigation-inline {
  background-color: #fbfbfb;
  border-radius: 12px;
  margin: 40px 0;
  scroll-margin-top: 20px;
}

.navigation-inline h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  margin-top: 0;
  color: var(--color-text);
}

.navigation-inline ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.navigation-inline li a {
  display: block;
  padding: 12px 20px;
  background-color: var(--color-bg-secondary);
  color: var(--color-text);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  border: 3px solid transparent;
  font-size: 1.1rem;
}

.navigation-inline li a:hover {
  border-color: var(--color-accent);
  background-color: var(--color-bg-primary);
}

/* Заголовки */
h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

h2 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  color: var(--color-text);
}

h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 30px;
  margin-top: 60px;
  color: var(--color-text);
  scroll-margin-top: 20px;
}

h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-text);
  line-height: 1.3;
}

.expert-comment h4 {
  line-height: 1.3;
}

/* Параграфы */
p {
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Списки */
ul {
  padding-left: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

ul li {
  list-style: none;
  background-image: url('/local/templates/research_2026/images/dot.png');
  background-repeat: no-repeat;
  background-position: 0 0.7em;
  background-size: 9px 9px;
  padding-left: 25px;
}

strong {
  font-weight: 600;
}

/* Иллюстрации */
.illustration {
  border-radius: 12px;
  padding: 0;
  margin: 40px 0;
  text-align: center;
  color: #666;
  font-style: italic;
}

.illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border-radius: 10px;
}

/* Графики и диаграммы */
.chart {
  border-radius: 12px;
  padding: 40px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.chart h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--color-text);
  text-align: center;
}

.stat-item {
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-accent);
  background-color: var(--color-bg-primary);
  border-radius: 4px;
}

.stat-item p {
  margin-bottom: 0;
}

/* Выделенные блоки */
.highlight-box {
  background-color: #fff9e6;
  border: 0px solid #ffc107;
  text-align: left;
  padding: 30px;
  margin: 40px 0;
  border-radius: 8px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.warning-box {
  background-color: #ffe6e6;
  text-align: left;
  padding: 30px;
  margin: 40px 0;
  border-radius: 8px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.info-box {
  background-color: #e6f7ff;
  border: 0px solid #17a2b8;
  padding: 30px;
  margin: 40px 0;
  border-radius: 8px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.success-box {
  background-color: #e8f5e9;
  border-left: 5px solid var(--color-accent);
  padding: 30px;
  margin: 40px 0;
  border-radius: 8px;
}

/* Блок с выводами */
.conclusion {
  background: #fafafa;
  color: #222;
  border: 1px solid #222;
  padding: 40px 40px 40px 40px;
  border-radius: 12px;
  margin: 50px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.conclusion h3 {
  color: #222;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.conclusion p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.conclusion p:last-child {
  margin-bottom: 0;
}

/* Цитаты */
.quote {
  background-color: var(--color-text);
  color: white;
  padding: 50px;
  margin: 50px 0;
  border-radius: 12px;
  font-size: 1.2rem;
  font-style: italic;
  position: relative;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.quote:before {
  content: '«';
  font-size: 5rem;
  position: absolute;
  top: 20px;
  left: 30px;
  opacity: 0.2;
  font-style: normal;
}

.quote p {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

/* Блок статистики */
.stats-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

.stat-card {
  background-color: #fafafa;
  border-radius: 12px;
  padding: 30px 40px;
  border: 1px solid #cbcbcb;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 40px;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: #222;
  line-height: 1;
  white-space: nowrap;
}

.stat-description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--color-text);
  font-weight: 400;
}

/* Адаптив: на мобилке */
@media (max-width: 768px) {
  .stat-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 20px;
    text-align: left;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 2.7rem;
  }

  .stat-description {
    font-size: 1.1rem;
  }
}

/* Кнопки */
.nav-button {
  display: inline-block;
  background-color: var(--color-accent);
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--color-accent);
  cursor: pointer;
}

.nav-button:hover {
  background-color: transparent;
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(77, 173, 51, 0.3);
}

/* Responsive Design */
@media (max-width: 1440px) {
  .title-page {
    padding: 60px 40px;
  }

  .wide-section {
    padding: 60px 40px;
  }

  section {
    padding: 60px 30px;
  }
}

@media (max-width: 1024px) {
  :root {
    --font-size-base: 18px;
    --content-width: 90%;
  }

  .title-page {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 40px;
  }


  /* Hero subheading */
  .hero-subheading {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 20px;
  }

  .title-page h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  .wide-section .container-wide {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-base: 16px;
  }

  .logos {
    padding: 35px 20px 15px 20px;
  }

  .title-page {
    padding: 40px 20px;
  }

  .warning-box,
  .info-box,
  .highlight-box,
  .success-box {
    font-size: 1.3rem;
    text-align: left;
    padding: 25px;
  }

  .entry-img {
    max-width: 100%;
  }


  p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .navigation-inline li a {
    font-size: 1.2rem;
  }

  /* Hero subheading */
  .hero-subheading {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 20px;
  }

  .title-page h1 {
    font-size: 2.4rem;
  }

  .title-page .subtitle {
    font-size: 1.4rem;
  }

  .wide-section {
    padding: 40px 20px;
  }

  section {
    padding: 40px 20px;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .chart,
  .conclusion,
  .quote {
    padding: 30px 20px;
  }

  .navigation-inline {
    padding: 30px 0px;
  }
}

@media (max-width: 480px) {

  /* Hero subheading */
  .hero-subheading {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--color-accent);
    margin-bottom: 15px;
  }

  .title-page h1 {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }

  .title-page .subtitle {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .hero-illustration {
    padding: 0;
    min-height: 250px;
  }

  .illustration {
    padding: 0;
  }
}

/* Image Grid 2x2 */
.img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.img-grid .illustration {
  margin: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.img-grid .illustration:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .img-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* Lightweight Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 300;
  line-height: 1;
  z-index: 10000;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  padding: 20px;
  user-select: none;
  transition: opacity 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 0.7;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 10px;
    right: 10px;
    font-size: 30px;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 40px;
    padding: 10px;
  }
}

/* Authors Section */
.container-authors {
  max-width: 1000px;
  margin: 0 auto;
}

.authors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 40px;
}

.author-card {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 36px;
  align-items: start;
  padding: 20px;
  background-color: var(--color-bg-secondary);
  border-radius: 10px;
}

.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ddd;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  margin: 0;
}

.author-position {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1024px) {
  .container-authors {
    max-width: 100%;
    padding: 0 40px;
  }

  .authors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .container-authors {
    padding: 0 20px;
  }

  .authors-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .author-card {
    padding: 15px;
    gap: 10px;
  }

  .author-photo {
    width: 75px;
    height: 75px;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-position {
    font-size: 0.9rem;
  }
}

/* Experts Tabs Section */
.experts-tabs-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.experts-tabs-navigation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

.expert-tab-button {
  background: #fbfbfb;
  border: none;
  padding: 20px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-family: var(--font-family);
  display: grid;
  border-left: 3px solid transparent;
  grid-template-columns: 80px 1fr;
  gap: 15px;
  align-items: center;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.expert-tab-button:hover {
  color: var(--color-accent);
  background-color: rgba(77, 173, 51, 0.05);
  border-left-color: var(--color-accent);
  transform: translateX(3px);
}

.expert-tab-button.active {
  color: var(--color-accent);
  border-left-color: var(--color-accent);
  background-color: rgba(77, 173, 51, 0.08);
}

.expert-tab-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ddd;
}

.expert-tab-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.expert-tab-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.expert-tab-position {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.3;
}

.experts-tabs-content {
  min-height: 300px;
  background: #fbfbfb;
  border-radius: 10px;
  padding: 40px;
}

.expert-tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.expert-tab-panel.active {
  display: block;
}

.expert-comment p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.expert-comment p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .experts-tabs-wrapper {
    grid-template-columns: 380px 1fr;
    gap: 30px;
  }

  .experts-tabs-navigation {
    position: static;
  }
}

/* Показываем табы на desktop, скрываем аккордеон */
@media (min-width: 1024px) {
  .experts-tabs-version {
    display: block;
    background-color: #fff !important;
  }

  .experts-accordion-version {
    display: none;
  }
}

/* Показываем аккордеон на mobile, скрываем табы */
@media (max-width: 1023px) {
  .experts-tabs-version {
    display: none;
  }

  .experts-accordion-version {
    display: block;
  }
}

/* Expert Accordion Styles */
.expert-accordion-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  scroll-margin-top: 40px;
}

.expert-accordion-header {
  width: 100%;
  background: white;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 75px 1fr auto;
  gap: 15px;
  align-items: center;
  font-family: var(--font-family);
  transition: background-color 0.2s ease;
  text-align: left;
}

.expert-accordion-header:hover {
  background-color: rgba(77, 173, 51, 0.05);
}

.expert-accordion-header.active {
  background-color: rgba(77, 173, 51, 0.08);
}

.expert-accordion-photo {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ddd;
}

.expert-accordion-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.expert-accordion-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.expert-accordion-position {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.3;
}

.expert-accordion-header .accordion-icon {
  width: 17px;
  height: 11px;
  transition: transform 0.4s ease;
  flex-shrink: 0;
  display: block;
}

.expert-accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.expert-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  width: 100%;
  contain: layout;
}

.expert-accordion-content.active {
  grid-template-rows: 1fr;
}

.expert-accordion-content-inner {
  overflow: hidden;
  min-width: 0;
  width: 100%;
}

.expert-accordion-content-wrapper {
  padding: 0 24px;
  opacity: 0;
  transition: opacity 0.3s ease, padding 0.4s ease;
}

.expert-accordion-content.active .expert-accordion-content-wrapper {
  padding: 20px 24px 20px;
  opacity: 1;
}

.expert-accordion-content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.expert-accordion-content-wrapper p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .expert-accordion-header {
    padding: 16px 20px;
    gap: 15px;
  }

  .expert-accordion-photo {
    width: 75px;
    height: 75px;
  }

  .expert-accordion-name {
    font-size: 1rem;
  }

  .expert-accordion-position {
    font-size: 0.85rem;
  }

  .expert-accordion-content-wrapper {
    padding: 0 20px;
  }

  .expert-accordion-content.active .expert-accordion-content-wrapper {
    padding: 16px 20px 24px;
  }
}

/* Footer */
.footer {
  background-color: #fbfbfb;
  padding: 110px 40px;
  margin-top: 0;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-logo-block:hover {
  transform: translateY(-3px);
}

.footer-logo {
  max-width: 400px;
  height: auto;
}

.footer-logo-2 {
  max-width: 200px;
  height: auto;
}

.footer-description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #444;
  margin: 0;
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.footer-copyright p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-content h2 {
    margin-bottom: 0;
  }

  .footer-logos {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    max-width: 320px;
  }

  .footer-logo-2 {
    max-width: 180px;
  }

  .footer-description {
    font-size: 1.1rem;
  }

  .footer-copyright {
    padding-top: 20px;
  }

  .footer-copyright p {
    font-size: 0.9rem;
  }
}

/* Share Section (inline block) */
.share-section {
  margin-top: 50px;
  padding: 40px;
  background-color: var(--color-bg-secondary);
  border-radius: 10px;
  text-align: center;
}

.share-section h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--color-text);
}

.share-buttons-inline {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.share-btn {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background-color: #25292a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 0;
}

.share-btn img {
  width: 28px;
  height: 28px;
}

.share-btn-tg:hover {
  background-color: #3390ec;
  transform: translateY(-3px);
}

.share-btn-vk:hover {
  background-color: #0077ff;
  transform: translateY(-3px);
}

.share-btn-link:hover {
  background-color: #9747ff;
  transform: translateY(-3px);
}

.copy-tooltip {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #25292a;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10000;
  pointer-events: none;
}

.copy-tooltip.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .share-section {
    padding: 30px 20px;
  }

  .share-section h4 {
    font-size: 1.2rem;
  }
}

/* Floating Share Button */
.floating-share {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.floating-share-btn {
  background-color: #25292a;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

.floating-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-share-text {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  display: block;
}

.floating-share-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.floating-share-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.floating-share-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-share-item {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background-color: #25292a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 0;
}

.floating-share-item img {
  width: 28px;
  height: 28px;
}

.floating-share-tg:hover {
  background-color: #3390ec;
  transform: translateX(-5px);
}

.floating-share-vk:hover {
  background-color: #0077ff;
  transform: translateX(-5px);
}

.floating-share-link:hover {
  background-color: #9747ff;
  transform: translateX(-5px);
}

.floating-copy-tooltip {
  position: absolute;
  bottom: 70px;
  right: 70px;
  background-color: #25292a;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.floating-copy-tooltip.show {
  opacity: 1;
  visibility: visible;
}

/* Mobile version */
@media (max-width: 1023px) {
  .floating-share {
    bottom: 20px;
    right: 20px;
  }

  .floating-share-btn {
    padding: 14px;
    width: 56px;
    height: 56px;
    justify-content: center;
  }

  .floating-share-text {
    display: none;
  }

  .floating-share-icon {
    display: block;
  }

  .floating-share-menu {
    bottom: 70px;
    right: 0;
  }

  .floating-share-menu.active {
    transform: translateY(0);
  }
}

/* Оптимизация производительности */
* {
  -webkit-tap-highlight-color: transparent;
}

a,
button {
  touch-action: manipulation;
}

/* End */
/* /local/templates/research_2026/styles.css?177072509536448 */
