/**
 * KTZH Transport - Main Stylesheet
 * Корпоративные стили из Figma дизайна
 */

:root {
  /* Corporate Color Palette */
  --corp-blue-primary: #1E3A8A;
  --corp-blue-dark: #1e3a8a;
  --corp-blue-light: #60A5FA;
  --corp-mustard: #D97706;
  --corp-mustard-dark: #B45309;
  --corp-yellow-soft: #FBBF24;
  --corp-emerald: #10B981;
  --corp-gold: #D97706;
  --corp-gold-dark: #B45309;

  /* Gray Scale */
  --corp-gray-50: #F9FAFB;
  --corp-gray-100: #F3F4F6;
  --corp-gray-200: #E5E7EB;
  --corp-gray-300: #D1D5DB;
  --corp-gray-400: #9CA3AF;
  --corp-gray-500: #6B7280;
  --corp-gray-600: #4B5563;
  --corp-gray-700: #374151;
  --corp-gray-800: #1F2937;
  --corp-gray-900: #111827;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Pro Display', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Transitions */
  --transition-fast: 200ms;
  --transition-base: 300ms;
  --transition-slow: 500ms;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--corp-gray-900);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

#main-content {
  padding-top: 94px;
  /* Уменьшено еще на 3px для точного соприкосновения */
  /* top-bar (40px) + header (примерно 64px) - 10px */
  margin-top: 0;
}

@media (max-width: 1279px) {
  #main-content {
    padding-top: 94px;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  #main-content {
    padding-top: 82px;
    /* Уменьшено еще на 3px для точного соприкосновения */
    /* top-bar (40px) + header mobile (примерно 52px) - 10px */
    margin-top: 0;
  }
}

.hero-news-section {
  margin-top: 0;
  padding-top: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--corp-gray-900);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 3rem;
  /* 48px - согласно Figma README */
  font-weight: 700;
  /* Bold */
}

h2 {
  font-size: 2.5rem;
  /* 40px - согласно Figma README */
  font-weight: 700;
  /* Bold */
}

h3 {
  font-size: 1.75rem;
  /* 28px - согласно Figma README */
  font-weight: 600;
  /* Semibold */
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--corp-gray-700);
  font-size: 1rem;
  /* 16px - Body */
  line-height: 1.5;
}

/* Body Large - 1.125rem (18px) */
.body-large {
  font-size: 1.125rem;
  line-height: 1.6;
}

a {
  color: var(--corp-blue-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--corp-mustard);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 1280px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

/* Top Bar */
.top-bar {
  background: linear-gradient(to right, var(--corp-blue-primary), var(--corp-blue-light));
  color: white;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100002;
  height: 40px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  box-sizing: border-box;
}

.top-bar-link {
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.top-bar-link:hover {
  color: var(--corp-yellow-soft);
  background-color: rgba(255, 255, 255, 0.1);
}

.top-bar button {
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
}

.top-bar button:hover {
  color: var(--corp-yellow-soft);
  background-color: rgba(255, 255, 255, 0.1);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accessibility-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
}

.accessibility-toggle:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.samruk-kazyna-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Header */
.site-header {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.site-header .container {
  max-width: 1400px;
  padding: 0 var(--spacing-md);
}

@media (min-width: 1280px) {
  .site-header .container {
    padding: 0 var(--spacing-lg);
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
  position: relative;
  flex-wrap: wrap;
}

@media (min-width: 1280px) {
  .header-main {
    gap: 2rem;
    flex-wrap: nowrap;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 0;
}

.language-switcher-wrapper {
  display: flex;
  align-items: center;
  min-width: 80px;
  margin-left: 1rem;
}

/* Стили для языковых плагинов */
.language-switcher-wrapper .wpml-language-switcher,
.language-switcher-wrapper .polylang-language-switcher,
.language-switcher-wrapper .qtranslate-language-switcher {
  display: flex !important;
  align-items: center;
  visibility: visible !important;
  opacity: 1 !important;
}

.language-switcher-wrapper select {
  padding: 0.5rem;
  border: 1px solid var(--corp-gray-300);
  border-radius: 0.375rem;
  background: white;
  color: var(--corp-gray-700);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-switcher-wrapper select:hover {
  border-color: var(--corp-blue-primary);
  color: var(--corp-blue-primary);
}

.language-switcher,
.search-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
  color: var(--corp-gray-700);
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
}

.language-switcher:hover,
.search-toggle:hover {
  color: var(--corp-blue-primary);
  background-color: var(--corp-gray-50);
}

.language-switcher svg,
.search-toggle svg {
  width: 20px;
  height: 20px;
}

/* Polylang Language Switcher Dropdown */
.language-switcher-dropdown {
  position: relative;
}

.language-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  background: white;
  border: 1px solid var(--corp-gray-300);
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  z-index: 1000;
  min-width: 60px;
  padding: 0.5rem 0;
}

/* Создаем невидимый мост между кнопкой и меню для плавного hover */
.language-switcher-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 0.5rem;
  z-index: 998;
  pointer-events: none;
}

/* Меню открывается при наведении на кнопку или само меню */
.language-switcher-dropdown:hover .language-dropdown-menu,
.language-switcher-dropdown:focus-within .language-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

/* Меню остается открытым при наведении на него */
.language-dropdown-menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.language-dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--corp-gray-700);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
}

.language-dropdown-item:hover {
  background-color: var(--corp-gray-50);
  color: var(--corp-blue-primary);
}

.language-dropdown-item:first-child {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.language-dropdown-item:last-child {
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

/* Search Form */
.search-wrapper {
  position: relative;
  z-index: 1006;
}

.search-form-container {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: white;
  border: 1px solid var(--corp-gray-200);
  border-radius: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1007;
}

.search-wrapper.active .search-form-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-field {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--corp-gray-300);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.search-field:focus {
  border-color: var(--corp-blue-primary);
}

.search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: var(--corp-blue-primary);
  color: white;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-submit:hover {
  background: var(--corp-blue-dark);
}

.search-submit svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 767px) {

  .search-toggle {
    display: none;
  }

  /* Переключатель языка теперь показывается на мобильных */
  .header-actions .language-switcher-wrapper .language-switcher {
    display: flex !important;
  }

  .search-form-container {
    min-width: calc(100vw - 2rem);
    right: 0;
    left: auto;
    transform: translateX(0);
  }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  margin-right: -1rem;
}

@media (min-width: 1280px) {
  .site-logo {
    margin-right: -2rem;
  }
}

.site-logo img {
  height: 3rem;
  width: auto;
}

.site-logo-placeholder {
  flex-shrink: 0;
}

.site-title {
  display: none;
}

@media (min-width: 768px) {
  .site-title {
    display: block;
  }
}

.site-title-main {
  font-size: 1rem;
  font-weight: 600;
  color: var(--corp-blue-primary);
  line-height: 1.2;
  margin: 0;
}

.site-title-sub {
  font-size: 0.75rem;
  color: var(--corp-gray-600);
  line-height: 1.2;
  margin: 0;
}

/* Navigation */
.main-navigation {
  flex: 1;
  display: none;
  justify-content: center;
  margin: 0;
  padding: 0;
}

@media (min-width: 1280px) {
  .main-navigation {
    display: flex;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--corp-gray-700);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1279px) {
  .menu-toggle {
    display: flex;
  }

  .main-navigation.toggled {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 1rem;
    border-radius: 0.5rem;
  }
}

.main-navigation ul,
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  justify-content: center;
}

.main-navigation li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--corp-gray-800);
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation .current-menu-item>a,
.main-navigation .current-menu-ancestor>a {
  color: var(--corp-blue-primary);
  border-bottom-color: var(--corp-mustard);
}

/* Dropdown Menu */
.dropdown,
.main-navigation li.menu-item-has-children {
  position: relative;
  z-index: 1000;
}

.main-navigation .dropdown>a,
.main-navigation li.menu-item-has-children>a,
.main-navigation .nav-menu>li.menu-item-has-children>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Добавляем стрелку для всех элементов с подменю */
.main-navigation li.menu-item-has-children>a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.main-navigation li.menu-item-has-children:hover>a::after {
  transform: rotate(180deg);
}

.main-navigation .dropdown>a .dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 0.25rem;
}

.main-navigation .dropdown:hover>a .dropdown-arrow,
.main-navigation li.menu-item-has-children:hover>a .dropdown-arrow,
.main-navigation .nav-menu>li:hover>a .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu,
.main-navigation ul ul {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  text-align: left;
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--corp-gray-200);
  border-radius: 0.5rem;
  min-width: 280px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition-delay: 0.1s;
  z-index: 10001;
  margin: 0;
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
}

/* Подменю остается открытым при наведении на него */
.dropdown-menu:hover,
.main-navigation ul ul:hover {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  display: flex !important;
  transition-delay: 0s !important;
}

/* Создаем невидимый мост между кнопкой меню и подменю для плавного hover */
.dropdown::before,
.main-navigation li.menu-item-has-children::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.5rem;
  z-index: 10000;
  pointer-events: auto;
  background: transparent;
}

/* Расширяем область hover на само подменю */
.dropdown-menu::before,
.main-navigation ul ul::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 0.5rem;
  z-index: 10000;
  pointer-events: auto;
  background: transparent;
}

.dropdown-menu li,
.main-navigation ul ul li {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  list-style: none;
  text-align: left;
}

/* Показываем подменю при наведении - универсальное правило */
.dropdown:hover .dropdown-menu,
.main-navigation li:hover>.dropdown-menu,
.main-navigation li.menu-item-has-children:hover>.dropdown-menu,
.main-navigation li:hover>ul.dropdown-menu,
.main-navigation .nav-menu>li:hover>ul,
.main-navigation li:hover>ul,
.main-navigation ul li:hover>ul,
.dropdown:hover ul,
.main-navigation li.menu-item-has-children:hover ul {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Подменю остается открытым при наведении на него */
.dropdown-menu:hover,
.main-navigation ul ul:hover {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Дополнительное правило для всех ul внутри li в навигации */
.main-navigation .nav-menu li:hover ul,
.main-navigation li:hover ul {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.dropdown-menu a,
.main-navigation ul ul a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: var(--corp-gray-700);
  border-bottom: none;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: left;
}

.dropdown-menu a:hover,
.main-navigation ul ul a:hover {
  background-color: var(--corp-gray-50);
  color: var(--corp-blue-primary);
  padding-left: 2rem;
}

.dropdown-menu .current-menu-item>a {
  background: linear-gradient(to right, var(--corp-mustard), var(--corp-yellow-soft));
  color: white;
}

.dropdown-menu a .dropdown-arrow {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  height: 2.5rem;
  line-height: 1.5;
}

.btn-primary {
  background: linear-gradient(to right, var(--corp-mustard), var(--corp-yellow-soft));
  color: white;
  border: none;
  box-shadow: 0 4px 6px rgba(217, 119, 6, 0.3);
  position: relative;
  overflow: hidden;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--corp-mustard-dark), var(--corp-mustard));
  color: white;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  background: linear-gradient(to right, var(--corp-blue-primary), var(--corp-blue-light));
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px rgba(30, 58, 138, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(to right, var(--corp-blue-dark), var(--corp-blue-primary));
  color: white;
  box-shadow: 0 6px 12px rgba(30, 58, 138, 0.4);
  transform: translateY(-1px);
}

/* Hero Slider */
/* Старые стили hero-slider удалены - используются новые стили ниже для hero-news-section */

/* Services Grid */
.services-grid {
  padding: var(--spacing-2xl) 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.services-grid .container {
  max-width: 1600px;
  padding: 0 var(--spacing-xl);
  margin: 0 auto;
}

@media (min-width: 1920px) {
  .services-grid .container {
    max-width: 1800px;
    padding: 0 var(--spacing-2xl);
  }
}

.services-grid::before,
.services-grid::after {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.05;
}

.services-grid::before {
  top: 0;
  right: 0;
  background: var(--corp-mustard);
}

.services-grid::after {
  bottom: 0;
  left: 0;
  background: var(--corp-blue-light);
}

/* Services Grid Header */
.services-grid-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 1;
}

.services-grid-label-wrapper {
  display: inline-block;
  margin-bottom: var(--spacing-md);
}

.services-grid-label {
  color: var(--corp-mustard);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  line-height: 1.2;
}

.services-grid-label-line {
  width: 5rem;
  height: 0.25rem;
  background: linear-gradient(to right, var(--corp-mustard), var(--corp-yellow-soft));
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

.services-grid-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--corp-blue-primary);
  line-height: 1.2;
}

.services-grid-subtitle {
  font-size: 1.125rem;
  color: var(--corp-gray-600);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

@media (max-width: 1023px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 1rem;
  border: 2px solid var(--corp-gray-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(to bottom right, var(--corp-blue-primary), var(--corp-blue-light));
  border-radius: 1rem;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.2);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
  background: linear-gradient(to bottom right, var(--corp-blue-primary), var(--corp-blue-light));
}

.service-icon-wrapper {
  margin-bottom: var(--spacing-md);
  position: relative;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 2;
  fill: none;
  z-index: 1;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-icon svg {
  transform: scale(1.05);
}

.service-card:hover .service-icon-wrapper::after {
  content: '';
  position: absolute;
  inset: -6px;
  width: calc(4rem + 12px);
  height: calc(4rem + 12px);
  border-radius: 0.75rem;
  opacity: 0.5;
  filter: blur(16px);
  background: inherit;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  pointer-events: none;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--corp-blue-primary);
  transition: color 0.3s ease;
  line-height: 1.3;
}

.service-card:hover .service-title {
  color: white;
}

.service-description {
  color: var(--corp-gray-600);
  line-height: 1.5;
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
  flex-grow: 1;
  transition: color 0.3s ease;
}

.service-link {
  display: flex;
  align-items: center;
  color: var(--corp-blue-light);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-link svg {
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link {
  color: white;
}

.service-card:hover .service-description {
  color: white;
}

.service-card:hover .service-link svg {
  transform: translateX(8px);
}

/* Services CTA Button */
.services-cta-wrapper {
  text-align: center;
  margin-top: var(--spacing-2xl);
  position: relative;
  z-index: 1;
}

.btn-services-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  /* gap-3 */
  padding: 1rem 2rem;
  /* py-4 px-8 */
  background: linear-gradient(to right, var(--corp-mustard), var(--corp-yellow-soft));
  color: white;
  font-weight: 600;
  /* font-semibold */
  font-size: 1rem;
  border-radius: 0.75rem;
  /* rounded-xl */
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  /* shadow-lg */
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-services-all:hover {
  background: linear-gradient(to right, var(--corp-mustard-dark), var(--corp-mustard));
  color: white;
  box-shadow: 0 20px 60px rgba(217, 119, 6, 0.3);
  transform: translateY(-0.25rem);
  /* -translate-y-1 */
}

.btn-services-all svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-services-all:hover svg {
  transform: translateX(4px);
}

/* News Section */
.news-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(to bottom, var(--corp-gray-50), white);
  position: relative;
  overflow: hidden;
}

.news-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05), rgba(217, 119, 6, 0.05));
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.news-section .container {
  max-width: 1600px;
  padding: 0 var(--spacing-xl);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding-left: calc(var(--spacing-xl) - 5px);
  padding-right: calc(var(--spacing-xl) + 5px);
}

@media (min-width: 1920px) {
  .news-section .container {
    max-width: 1800px;
    padding: 0 calc(var(--spacing-2xl) + 5px) 0 calc(var(--spacing-2xl) - 5px);
  }
}

/* News Section Header */
.news-section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.news-section-label-wrapper {
  display: inline-block;
  margin-bottom: var(--spacing-md);
}

.news-section-label {
  color: var(--corp-mustard);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  line-height: 1.2;
}

.news-section-label-line {
  width: 5rem;
  height: 0.25rem;
  background: linear-gradient(to right, var(--corp-mustard), var(--corp-yellow-soft));
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

.news-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--corp-blue-primary);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.news-section-subtitle {
  font-size: 1rem;
  color: var(--corp-gray-600);
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
  padding-right: 1px;
}

/* News Card */
.news-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
  transform: translateY(-0.5rem);
}

.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* News Card Image */
.news-card-image-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.news-card:hover .news-card-image {
  transform: scale(1.1);
}

.news-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.news-card-badge-text {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(to right, var(--corp-mustard), var(--corp-yellow-soft));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.news-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.news-card:hover .news-card-overlay {
  opacity: 1;
}

/* News Card Content */
.news-card-content {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--corp-gray-500);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.news-card-date svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.news-card-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--corp-blue-primary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
  color: var(--corp-mustard);
}

.news-card-excerpt {
  color: var(--corp-gray-600);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-read-more {
  display: flex;
  align-items: center;
  color: var(--corp-blue-light);
  font-weight: 500;
  font-size: 0.8125rem;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--corp-gray-200);
  transition: color 0.3s ease;
}

.news-card:hover .news-card-read-more {
  color: var(--corp-mustard);
}

.news-card-read-more-text {
  margin-right: 0.5rem;
}

.news-card-read-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-read-more svg {
  transform: translateX(0.25rem);
}

/* News Section Footer */
.news-section-footer {
  text-align: center;
}

.btn-news-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: white;
  border: 2px solid var(--corp-blue-primary);
  color: var(--corp-blue-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-news-all::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--corp-mustard), var(--corp-yellow-soft));
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.btn-news-all:hover {
  color: white;
  border-color: var(--corp-mustard);
  box-shadow: 0 20px 60px rgba(217, 119, 6, 0.3);
  transform: translateY(-0.25rem);
}

.btn-news-all:hover::before {
  transform: translateY(0);
}

.btn-news-all svg,
.btn-news-all span {
  position: relative;
  z-index: 1;
}

.btn-news-all svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-news-all svg:last-child {
  transition: transform 0.3s ease;
}

.btn-news-all:hover svg:last-child {
  transform: translateX(0.25rem);
}

/* Footer */
.site-footer {
  background: var(--corp-blue-primary);
  color: white;
  padding: var(--spacing-2xl) 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  align-items: start;
}

@media (max-width: 1023px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column-contacts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-section-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #fbbf24;
  font-size: 1rem;
  font-weight: 600;
}

.footer-column-title-link {
  color: #fbbf24;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column-title-link:hover {
  color: white;
  text-decoration: none;
}

.footer-column:not(:first-child) .footer-section-title {
  margin-top: 0;
}

.footer-column-contacts .footer-section-title {
  margin-top: 0;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: var(--spacing-lg) 0;
}

.footer-logo-wrapper {
  margin-bottom: var(--spacing-md);
  display: block;
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  text-decoration: none;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  filter: brightness(0) invert(1);
  display: block;
}

/* Main site logo in footer - no filter if it's already light/white */
.footer-logo-main {
  filter: none;
  opacity: 1;
}

.footer-logo-placeholder {
  display: block;
  width: 60px;
  height: 60px;
  margin-bottom: var(--spacing-sm);
}

.footer-company-name {
  color: #fbbf24;
  margin-bottom: var(--spacing-sm);
  font-size: 0.9375rem;
  font-weight: 600;
}

.footer-company-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  font-size: 0.8125rem;
}

.footer-column h4 {
  color: #fbbf24;
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s ease;
  cursor: default;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin: 0;
  padding: 0;
}

.footer-menu a {
  color: white;
  display: block;
  padding: 0.25rem 0;
  padding-left: 0;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.2;
}

.footer-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #fbbf24;
  transition: width 0.2s ease;
}

.footer-menu a:hover {
  color: #fbbf24;
  padding-left: calc(16px + 0.5rem);
}

.footer-menu a:hover::before {
  width: 16px;
}

.footer-menu .current-menu-item>a,
.footer-menu .current-menu-ancestor>a {
  color: #fbbf24;
  padding-left: calc(16px + 0.5rem);
}

.footer-menu .current-menu-item>a::before,
.footer-menu .current-menu-ancestor>a::before {
  width: 16px;
}

.footer-social {
  margin-top: var(--spacing-md);
  display: block !important;
  visibility: visible !important;
}

.social-links {
  display: flex !important;
  gap: 0.75rem;
  flex-wrap: wrap;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 40px !important;
  width: 100% !important;
}

.footer-social h4 {
  color: #fbbf24;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: color 0.2s ease;
  cursor: default;
}

.social-links a {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: white !important;
  transition: all 0.3s ease;
  text-decoration: none;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 1 !important;
}

.social-link-facebook,
.social-link-instagram {
  background: var(--corp-blue-primary) !important;
}

.social-link-tiktok {
  background: var(--corp-blue-primary) !important;
}

.social-link-facebook svg,
.social-link-instagram svg,
.social-link-tiktok svg {
  fill: white !important;
  color: white !important;
}

.social-links a:hover {
  background: #fbbf24 !important;
  border-color: #fbbf24 !important;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.social-link-facebook:hover,
.social-link-instagram:hover,
.social-link-tiktok:hover {
  background: #fbbf24 !important;
  border-color: #fbbf24 !important;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.social-links a svg {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  fill: currentColor !important;
}

.footer-contact {
  margin-top: 0;
}

.footer-contact h4 {
  color: #fbbf24;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s ease;
  cursor: default;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--spacing-md);
  color: white;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.footer-contact-icon-phone {
  background: rgba(255, 255, 255, 0.1);
}

.footer-contact-item:hover .footer-contact-icon {
  background: #fbbf24;
}

.footer-contact-text {
  color: white;
  line-height: 1.2;
  flex: 1;
  font-size: 0.875rem;
}

.footer-contact-text a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-text a:hover {
  color: #fbbf24;
}

.footer-buy-ticket {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  background: linear-gradient(to right, var(--corp-mustard), var(--corp-yellow-soft));
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.footer-buy-ticket:hover {
  background: linear-gradient(to right, var(--corp-mustard-dark), var(--corp-mustard));
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-lg) 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  background: var(--corp-blue-primary);
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  padding-bottom: var(--spacing-lg);
  margin-bottom: 0;
}

.footer-bottom-left {
  flex: 1;
  min-width: 200px;
}

.footer-bottom-left p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-right {
  text-align: right;
}

.footer-bottom-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--corp-mustard), var(--corp-yellow-soft), var(--corp-mustard));
  margin: 0;
}

.footer-group-prefix {
  color: rgba(255, 255, 255, 0.8);
  margin-right: 0.25rem;
}

.footer-group-link {
  color: var(--corp-yellow-soft);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-group-link:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #fbbf24;
}

@media (max-width: 767px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-right {
    text-align: center;
  }
}

/* About Teaser Section */
/* About Company Section */
.about-company-section {
  padding: var(--spacing-2xl) 0;
  background: #f9fafb;
  /* Фоновый цвет до блока "Сервисы для пассажиров" */
}

.about-company-section .container {
  max-width: 1600px;
  padding: 0 var(--spacing-xl);
}

@media (min-width: 1920px) {
  .about-company-section .container {
    max-width: 1800px;
    padding: 0 var(--spacing-2xl);
  }
}

.about-company-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

/* Left Column - About Company */
.about-company-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  width: 590px;
  /* Фиксированная ширина */
  max-width: 100%;
}

@media (max-width: 1279px) {
  .about-company-left {
    width: 100%;
    /* На средних экранах - полная ширина */
  }
}

.about-company-header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.about-company-label {
  color: var(--corp-mustard);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.about-company-line {
  width: 5rem;
  height: 0.25rem;
  background: linear-gradient(to right, var(--corp-mustard), var(--corp-yellow-soft));
}

.about-company-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--corp-blue-primary);
  line-height: 1.2;
  margin: 0;
}

.about-company-description {
  color: var(--corp-gray-700);
  line-height: 1.7;
  font-size: 1rem;
  width: 590px;
  /* Фиксированная ширина как у блоков ниже */
  max-width: 100%;
}

@media (max-width: 1279px) {
  .about-company-description {
    width: 100%;
    /* На средних экранах - полная ширина */
  }
}

.about-company-description p {
  margin: 0 0 var(--spacing-md) 0;
}

.about-company-description p:last-child {
  margin-bottom: 0;
}

.btn-about-company {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: calc(var(--spacing-md) + 0.25rem) var(--spacing-xl);
  /* Увеличен padding сверху и снизу на 0.25rem (4px) для большей высоты */
  background: var(--corp-blue-primary);
  /* Темно-синий фон как на скриншоте */
  margin-top: -120px;
  /* Поднято на 120px вверх (было -80px, теперь еще на 40px выше) */
  border: 2px solid var(--corp-blue-primary);
  color: white;
  /* Белый текст на синем фоне */
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-about-company:hover {
  background: var(--corp-blue-dark);
  /* Темнее при наведении */
  border-color: var(--corp-blue-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Right Column - Statistics */
.about-company-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  /* space-y-8 из Figma */
}

/* Figure of the Day Card */
/* Figure of Day Card - HIDDEN */
.figure-of-day-card {
  display: none !important;
}

.figure-of-day-card-old {
  position: relative;
  background: #F59E0B;
  border-radius: 1rem;
  padding: 1.25rem;
  color: white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
  width: 400px;
  height: 300px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.figure-of-day-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.figure-of-day-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.figure-of-day-line {
  width: 3rem;
  height: 0.15rem;
  background: rgba(255, 255, 255, 0.5);
}

.figure-of-day-value {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0.5rem 0;
  color: white;
  text-transform: uppercase;
}

.figure-of-day-description {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: white;
  opacity: 0.95;
}

.figure-of-day-trend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.figure-trend-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #10B981;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.figure-trend-badge::before {
  content: '↑';
  margin-right: 0.2rem;
}

.figure-trend-note {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 1.3;
}

.figure-of-day-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  opacity: 0.25;
  pointer-events: none;
  width: 60px;
  height: 60px;
}

.figure-of-day-icon svg {
  width: 60px;
  height: 60px;
}

/* Additional Stats Section */
/* Additional Stats Section - HIDDEN */
.additional-stats-section {
  display: none !important;
}

.additional-stats-section-old {
  background: white;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 400px;
  height: 350px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.additional-stats-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--corp-blue-primary);
  margin: 0 0 1.5rem 0;
}

.company-stats-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  overflow-y: auto;
}

.company-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.company-stat-item .company-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--corp-blue-primary);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.company-stat-item .company-stat-label {
  font-size: 0.875rem;
  color: var(--corp-gray-600);
  line-height: 1.4;
}

/* Company Stats Grid */
.company-stats-grid {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  visibility: visible !important;
  opacity: 1 !important;
  margin-bottom: var(--spacing-lg);
}

.company-stat-card {
  background: white;
  border-radius: 0.75rem;
  padding: var(--spacing-md);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  width: 292px;
  height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.company-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.company-stat-icon {
  width: 4rem;
  height: 4rem;
  min-height: 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--corp-blue-primary), var(--corp-blue-light));
  margin-bottom: var(--spacing-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
  flex-shrink: 0;
}

.company-stat-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

/* Более заметная иконка людей */
.company-stat-icon svg[viewBox="0 0 24 24"] path[d*="M17 21"],
.company-stat-icon svg[viewBox="0 0 24 24"] path[d*="M23 21"] {
  stroke-width: 2.5;
}

.company-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--corp-blue-primary);
  line-height: 1.2;
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-primary);
}

.company-stat-label {
  font-size: 0.875rem;
  color: var(--corp-gray-600);
  line-height: 1.4;
  font-family: var(--font-primary);
}

/* Information Disclosure Card */
/* Info Disclosure Card - HIDDEN */
.info-disclosure-card {
  display: none !important;
}

.info-disclosure-card-old {
  background: linear-gradient(to right, var(--corp-blue-primary), #3B82F6);
  border-radius: 1rem;
  padding: 1.25rem;
  color: white;
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.2);
  width: 400px !important;
  height: 160px !important;
  max-width: 400px !important;
  min-width: 400px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  position: relative;
  margin-top: -1rem;
}

/* Stats 2025 and Passenger Services Grid */
.stats-2025-services-grid {
  display: grid;
  grid-template-columns: 590px 700px;
  /* Ширина первого блока 590px, второго 700px */
  gap: 1.5rem;
  /* gap-6 = 1.5rem */
  margin-top: 0;
  /* Убран отступ сверху */
  margin-bottom: 2rem;
  align-items: start;
  /* Выравнивание по верху */
  max-width: 1310px;
  /* Максимальная ширина сетки (590px + 24px gap + 700px) */
  margin-left: auto;
  margin-right: auto;
}

/* Выравнивание блока "Сервисы для пассажиров" с меткой "О КОМПАНИИ" */
.passenger-services-stats-card {
  margin-top: calc(-1 * (var(--spacing-xs) + 0.875rem * 1.2 + var(--spacing-xs) + 0.25rem + 2.25rem * 1.2 + var(--spacing-lg) + 1rem * 1.7));
  /* Отрицательный margin-top для выравнивания с меткой "О КОМПАНИИ" 
     (высота about-company-header + about-company-title + gap + about-company-description) */
  align-self: start;
  /* Выравнивание по верхнему краю */
}

/* Выравнивание блока "Сервисы для пассажиров" с меткой "О КОМПАНИИ" через grid */
.stats-2025-services-grid>*:last-child {
  /* Второй элемент (блок "Сервисы для пассажиров") */
  /* Поднимаем блок на высоту всех элементов до grid, чтобы он был на уровне метки "О КОМПАНИИ" */
  /* Используем фиксированное значение для более точного контроля - примерно 19-20rem (304-320px) */
  margin-top: calc(-20rem + 8px);
  /* Опущено на 8px от предыдущего значения */
  align-self: start;
}

@media (max-width: 1279px) {
  .stats-2025-services-grid {
    grid-template-columns: 1fr;
    /* Одна колонка на средних экранах */
  }
}

/* Stats 2025 Card */
.stats-2025-card {
  background: linear-gradient(to right, var(--corp-blue-primary), #3B82F6);
  border-radius: 1rem;
  /* rounded-2xl = 1rem */
  padding: 1.25rem 1.5rem 1rem 1.5rem;
  /* Отступы: сверху 1.25rem, снизу 1rem */
  color: white;
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.2);
  display: flex;
  flex-direction: column;
  width: 590px;
  /* Фиксированная ширина */
  max-width: 100%;
  box-sizing: border-box;
  height: 200px;
  /* Уменьшена высота с 215px до 200px */
  justify-content: space-between;
  /* Распределение пространства */
}

@media (max-width: 1279px) {
  .stats-2025-card {
    width: 100%;
    /* На средних экранах - полная ширина */
    height: auto;
    /* Автоматическая высота на мобильных */
  }
}

.stats-2025-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* gap-3 = 0.75rem */
  margin-bottom: 0;
  /* Без отступа снизу, используем justify-content: space-between */
}

.stats-2025-year {
  font-size: 1.5rem;
  /* text-2xl = 1.5rem */
  font-weight: 700;
  /* font-bold */
  color: white;
}

.stats-2025-trend-icon {
  width: 24px;
  /* w-6 = 24px */
  height: 24px;
  /* h-6 = 24px */
  stroke: white;
  flex-shrink: 0;
}

.stats-2025-content {
  display: flex;
  flex-direction: row;
  /* Горизонтальный layout как на скриншоте */
  gap: 1rem;
  /* Равномерное распределение */
  flex: 1;
  justify-content: space-between;
  /* Равномерное распределение метрик */
  align-items: flex-start;
  /* Выравнивание по верхнему краю для одинакового уровня всех цифр */
}

.stats-2025-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  /* Равномерное распределение */
  text-align: center;
  /* Выравнивание по центру */
  align-items: center;
  /* Центрирование содержимого */
  justify-content: flex-start;
  /* Выравнивание по верхнему краю */
  align-self: flex-start;
  /* Выравнивание элемента по верхнему краю в родительском контейнере */
  padding-top: 10px;
  /* Опускаем все цифры вниз на 10px */
}

.stats-2025-value {
  font-size: 2.25rem;
  /* text-4xl = 2.25rem */
  font-weight: 700;
  /* font-bold */
  color: white;
  line-height: 1;
  /* line-height: 1 для точного выравнивания */
  margin-bottom: 0.5rem;
  /* mb-2 = 0.5rem */
  display: block;
  /* Блочный элемент для точного контроля */
  text-align: center;
  /* Центрирование */
  height: 3rem;
  /* Фиксированная высота для всех значений */
  display: flex;
  /* Flex для выравнивания */
  align-items: center;
  /* Вертикальное центрирование внутри фиксированной высоты */
  justify-content: center;
  /* Горизонтальное центрирование */
}

.stats-2025-label {
  font-size: 0.875rem;
  /* text-sm = 0.875rem */
  color: white;
  opacity: 0.9;
  /* opacity-90 */
  line-height: 1.3;
}

.stats-2025-label br {
  display: block;
  /* Разрешаем перенос строки */
}

/* Key Info Card - HIDDEN */
.key-info-card {
  display: none !important;
}

.key-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--corp-blue-primary);
  margin: 0 0 var(--spacing-md) 0;
}

.key-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.key-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.key-info-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--corp-mustard);
  display: flex;
  align-items: center;
  justify-content: center;
}

.key-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
}

.key-info-text {
  flex: 1;
  color: var(--corp-gray-700);
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* Passenger Services Stats Card */
.passenger-services-stats-card {
  background: white;
  border-radius: 1rem;
  /* rounded-2xl = 1rem */
  padding: 1.5rem 1.5rem calc(1.5rem + 40px) 1.5rem;
  /* padding: сверху 1.5rem, справа 1.5rem, снизу 1.5rem + 40px (для отступа после текста), слева 1.5rem */
  border: 1px solid var(--corp-gray-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* shadow-sm */
  display: flex;
  flex-direction: column;
  width: 700px;
  /* Увеличена ширина с 590px до 700px */
  max-width: 100%;
  box-sizing: border-box;
  height: calc(500px + 40px + 30px + 20px);
  /* Уменьшена высота: было +50px, стало +20px (уменьшено на 30px) */
  overflow-y: visible;
  /* Убрана прокрутка */
}

@media (max-width: 1279px) {
  .passenger-services-stats-card {
    width: 100%;
    /* На средних экранах - полная ширина */
    height: auto;
    /* Автоматическая высота на мобильных */
    overflow-y: visible;
    /* Убираем прокрутку на мобильных */
  }
}

.passenger-services-stats-title {
  font-size: 1.375rem;
  /* Увеличен размер с 1.25rem до 1.375rem (22px) */
  font-weight: 700;
  /* font-bold - жирный шрифт */
  color: var(--corp-blue-primary);
  margin: 0 0 1.5rem 0;
  /* mb-6 = 1.5rem */
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.passenger-services-stats-title span:last-child {
  font-weight: 700;
  /* Жирный шрифт для текста */
  font-size: 1.375rem;
  /* Увеличен размер текста */
}

.passenger-services-stats-title-icon {
  flex-shrink: 0;
  color: var(--corp-blue-primary);
  /* Синяя иконка */
}

.passenger-services-stats-title-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
}

.passenger-services-stats-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* Увеличен отступ между карточками с 1rem до 1.5rem (24px) */
  flex: 1;
}

.passenger-service-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  /* Увеличенный padding: сверху/снизу 1.5rem, слева/справа 1.25rem */
  background: white;
  border-radius: 1rem;
  /* Больше скругление */
  border: 1px solid var(--corp-gray-200);
  transition: all 0.2s ease;
  min-height: 100px;
  /* Минимальная высота для карточек */
}

.passenger-service-card-highlight {
  background: #BFDBFE;
  /* Более темный голубой фон для "Лист ожидания" - как на скриншоте */
  border-color: #93C5FD;
  /* Более темная рамка */
}

.passenger-service-icon {
  flex-shrink: 0;
  width: 48px;
  /* Увеличенный размер иконки */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--corp-gray-600);
  /* Серый цвет иконок */
}

.passenger-service-card-highlight .passenger-service-icon {
  color: var(--corp-blue-primary);
  /* Синий цвет для иконки на голубом фоне */
}

.passenger-service-icon svg {
  width: 28px;
  /* Увеличенный размер SVG */
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
}

.passenger-service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  /* Уменьшен gap между элементами для более компактного вида */
}

.passenger-service-name {
  font-size: 1.125rem;
  /* Увеличенный размер */
  font-weight: 700;
  /* font-bold */
  color: var(--corp-blue-primary);
  margin: 0;
  line-height: 1.3;
  /* Уменьшен line-height для более компактного вида */
}

.passenger-service-stats {
  font-size: 0.9375rem;
  /* Немного больше */
  color: var(--corp-gray-600);
  line-height: 1.5;
  /* Уменьшен line-height для более компактного вида */
  margin: 0;
  /* Убираем margin */
}

.passenger-service-card-highlight .passenger-service-stats {
  color: var(--corp-gray-700);
  /* Темнее текст на голубом фоне */
}

.passenger-services-footer {
  margin-top: 1rem;
  /* Отступ сверху от последней карточки */
  padding-top: 0;
  /* Без padding сверху */
  padding-bottom: 0;
  /* Без padding снизу */
  border-top: 1px solid var(--corp-gray-200);
  /* Тонкая светло-серая линия как на скриншоте */
}

.passenger-services-footer-text-wrapper {
  margin-top: auto;
  /* Автоматический отступ сверху для размещения внизу блока */
  padding: 0;
  /* Без padding */
  text-align: center;
  /* Текст по центру */
  display: flex;
  /* Flex для центрирования */
  align-items: center;
  /* Вертикальное центрирование */
  justify-content: center;
  /* Горизонтальное центрирование */
  min-height: 80px;
  /* Минимальная высота для области текста */
}

.passenger-services-footer-text {
  font-size: 0.875rem;
  /* Уменьшен размер до 0.875rem */
  font-weight: 500;
  /* Средняя жирность */
  color: var(--corp-gray-600);
  /* Цвет текста */
  line-height: 1.5;
  margin: 0;
  /* Убираем margin */
  text-align: center;
  /* Текст по центру */
  padding: 0;
  /* Без padding */
}

.info-disclosure-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: white;
  line-height: 1.3;
}

.info-disclosure-description {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  flex: 1;
}

.btn-info-disclosure {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.5rem 1rem;
  background: white;
  border: 2px solid white;
  color: var(--corp-blue-primary);
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.btn-info-disclosure:hover {
  background: linear-gradient(to right, #F59E0B, #FBBF24);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.grid {
  display: grid;
}

.grid-2-cols {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 1024px) {
  .grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.space-y-6>*+* {
  margin-top: var(--spacing-md);
}

.text-mustard {
  color: var(--corp-mustard);
}

.text-blue-primary {
  color: var(--corp-blue-primary);
}

.text-gray-700 {
  color: var(--corp-gray-700);
}

.text-gray-600 {
  color: var(--corp-gray-600);
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-mustard {
  --tw-gradient-from: var(--corp-mustard);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0));
}

.to-yellow-soft {
  --tw-gradient-to: var(--corp-yellow-soft);
}

.prose p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

/* Figure Card */
.figure-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.figure-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(217, 119, 6, 0.3);
}

.figure-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--corp-mustard), var(--corp-yellow-soft), var(--corp-mustard));
}

.figure-card-bg::before,
.figure-card-bg::after {
  content: '';
  position: absolute;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.figure-card-bg::before {
  top: -5rem;
  right: -5rem;
}

.figure-card-bg::after {
  bottom: -5rem;
  left: -5rem;
}

.figure-card-content {
  position: relative;
  padding: var(--spacing-xl);
  color: white;
  z-index: 1;
}

.figure-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.figure-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.figure-trend {
  background: var(--corp-emerald);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.figure-value {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.figure-description {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.figure-note {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Stat Cards */
.stat-card {
  background: white;
  padding: var(--spacing-md);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-xs);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--corp-blue-primary);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--corp-gray-600);
}

/* News Block */
.news-block-section {
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.news-grid {
  display: grid;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: white;
  border: 1px solid var(--corp-gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

.news-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.news-image {
  overflow: hidden;
  height: 200px;
  background: var(--corp-gray-200);
}

.news-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-card:hover .news-thumbnail {
  transform: scale(1.1);
}

.news-content {
  padding: var(--spacing-md);
}

.news-meta {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: 0.875rem;
}

.news-date {
  color: var(--corp-gray-500);
}

.news-category {
  background: var(--corp-mustard);
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.news-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--corp-gray-900);
}

.news-title a {
  color: inherit;
}

.news-title a:hover {
  color: var(--corp-blue-primary);
}

.news-excerpt {
  color: var(--corp-gray-600);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.news-link {
  color: var(--corp-blue-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.news-link:hover {
  color: var(--corp-mustard);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: var(--spacing-xs);
}

.mb-2 {
  margin-bottom: var(--spacing-sm);
}

.mb-3 {
  margin-bottom: var(--spacing-md);
}

.mb-4 {
  margin-bottom: var(--spacing-lg);
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: var(--spacing-xs);
}

.mt-2 {
  margin-top: var(--spacing-sm);
}

.mt-3 {
  margin-top: var(--spacing-md);
}

.mt-4 {
  margin-top: var(--spacing-lg);
}

.inline-block {
  display: inline-block;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Hero + News Section (2/3 + 1/3 layout) */
.hero-news-section {
  position: relative;
  min-height: 600px;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero-news-section {
    padding: 0;
  }
}

.hero-news-container {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  gap: 0;
  align-items: start;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero-news-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .hero-news-container {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    align-items: stretch;
    box-sizing: border-box;
    overflow: hidden;
  }

  .news-sidebar {
    display: none !important;
    /* Скрываем новостной блок */
  }

  .hero-slider-wrapper {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1440px) {
  .hero-news-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}

/* Hero Slider Wrapper (full width) */
.hero-slider-wrapper {
  position: relative;
  min-height: 600px;
  height: 600px;
  overflow: hidden;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: stretch;
}

@media (min-width: 768px) {
  .hero-slider-wrapper {
    border-radius: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-slider-wrapper {
    height: 600px;
    min-height: 600px;
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  margin: 0;
  padding: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .hero-slide-image {
    border-radius: 0.75rem;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(30, 58, 138, 0.75) 0%, rgba(30, 58, 138, 0.5) 60%, rgba(30, 58, 138, 0.2) 80%, transparent 100%);
  z-index: 1;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .hero-overlay {
    border-radius: 0.75rem;
  }
}

/* Hero Slide Content Wrapper */
.hero-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: calc(var(--spacing-xl) * 2.5) calc(var(--spacing-xl) / 2) var(--spacing-xl);
  gap: var(--spacing-md);
  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0;
  max-width: 650px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  flex: 0 0 auto;
  /* Не растягивается, занимает только необходимое место */
}

.hero-badge {
  display: none;
  /* Скрываем бейдж, так как в оригинале его нет в этом месте */
}

.hero-badge-line {
  width: 5rem;
  height: 0.25rem;
  background: linear-gradient(to right, var(--corp-mustard), var(--corp-yellow-soft));
  margin-bottom: var(--spacing-md);
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.hero-badge-line .hero-badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-badge-line:has(.hero-badge-text) {
  width: auto;
  height: auto;
  background: none;
  padding: 0;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  margin-top: 0;
  z-index: 10;
  width: 100%;
  flex: 0 0 auto;
  /* Не растягивается, занимает только необходимое место */
  align-self: flex-start;
  /* Выравнивание по левому краю */
}

@media (max-width: 767px) {
  .hero-buttons {
    gap: 0.75rem;
    margin-top: var(--spacing-md);
  }

  .hero-buttons .btn {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
    height: 2.25rem;
  }
}

.hero-buttons .btn {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  max-width: fit-content;
  white-space: nowrap;
}

.hero-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--corp-mustard);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(217, 119, 6, 0.3);
  opacity: 0;
}

.hero-slider-wrapper:hover .hero-nav {
  opacity: 1;
}

.hero-nav svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.hero-nav:hover {
  background: var(--corp-mustard-dark);
  box-shadow: 0 6px 12px rgba(217, 119, 6, 0.5);
  transform: translateY(-50%) scale(1.05);
}

.hero-nav.prev {
  left: var(--spacing-md);
}

.hero-nav.next {
  right: var(--spacing-md);
}

/* Hero Pagination Dots */
.hero-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
  align-items: center;
}

.hero-pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
}

.hero-pagination-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-pagination-dot.active {
  width: 48px;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(to right, var(--corp-mustard), var(--corp-yellow-soft));
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

/* News Sidebar (1/3 width) */
.news-sidebar {
  display: none !important;
  /* Скрываем новостной блок везде */
  background: white;
  color: var(--corp-gray-900);
  flex-direction: column;
  min-height: 350px;
  height: 350px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--corp-gray-200);
  box-sizing: border-box;
  position: relative;
}

@media (min-width: 768px) {
  .news-sidebar {
    border-radius: 0.75rem;
    width: 97%;
    max-width: 97%;
  }

  .news-sidebar-header {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    overflow: hidden;
    clip-path: inset(0 round 0.75rem 0.75rem 0 0);
  }
}

@media (min-width: 1024px) {
  .news-sidebar {
    height: 95%;
    min-height: 350px;
    margin-right: 0;
    width: 97%;
    max-width: 97%;
    box-sizing: border-box;
  }

  .news-sidebar-header {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    clip-path: inset(0 round 0.75rem 0.75rem 0 0);
  }
}

.news-sidebar-header {
  background: linear-gradient(to right, var(--corp-blue-primary), var(--corp-blue-dark));
  padding: var(--spacing-lg);
  flex-shrink: 0;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin: 0;
  width: 100%;
  isolation: isolate;
  clip-path: inset(0 round 0.5rem 0.5rem 0 0);
}

.news-sidebar-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.news-sidebar-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.news-sidebar-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  overflow-y: auto;
  overflow-x: hidden;
  padding: var(--spacing-lg);
  min-height: 0;
}

.news-sidebar-item {
  padding: var(--spacing-sm);
  border-radius: 0.75rem;
  border: 1px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  margin-bottom: var(--spacing-xs);
}

.news-sidebar-item:hover {
  background: linear-gradient(to right, rgba(30, 58, 138, 0.05), rgba(96, 165, 250, 0.05));
  border-color: rgba(30, 58, 138, 0.2);
}

.news-sidebar-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
  font-size: 0.75rem;
}

.news-sidebar-category {
  background: linear-gradient(to right, rgba(217, 119, 6, 0.1), rgba(251, 191, 36, 0.1));
  color: var(--corp-mustard);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.news-sidebar-date {
  color: var(--corp-gray-500);
  font-weight: 500;
}

.news-sidebar-item-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  line-height: 1.4;
}

.news-sidebar-item-title a {
  color: var(--corp-gray-900);
  transition: color var(--transition-base);
  text-decoration: none;
}

.news-sidebar-item-title a:hover {
  color: var(--corp-blue-primary);
}

.news-sidebar-item-excerpt {
  font-size: 0.875rem;
  color: var(--corp-gray-600);
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
}

.news-sidebar-item-link {
  color: var(--corp-blue-primary);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all var(--transition-base);
  text-decoration: none;
}

.news-sidebar-item-link:hover {
  color: var(--corp-blue-dark);
  gap: 0.5rem;
  text-decoration: none;
}

.news-sidebar-footer {
  padding: var(--spacing-lg);
  border-top: 1px solid var(--corp-gray-200);
  background: rgba(249, 250, 251, 0.8);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.news-sidebar-all-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid var(--corp-gray-300);
  color: var(--corp-gray-700);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-sidebar-all-btn:hover {
  background: linear-gradient(to right, var(--corp-blue-primary), var(--corp-blue-light));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1023px) {
  .hero-news-container {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    min-height: auto;
    padding: var(--spacing-lg);
  }

  .hero-content {
    max-width: 100%;
    padding: var(--spacing-md);
  }

  .hero-title {
    font-size: 2rem;
  }
}

/* Samruk-Kazyna Modal */
.samruk-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100004;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.samruk-modal.active {
  display: flex;
}

.samruk-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.samruk-modal-content {
  position: relative;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }

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

.samruk-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--corp-gray-600);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  z-index: 10;
}

.samruk-modal-close:hover {
  background: var(--corp-gray-100);
  color: var(--corp-gray-900);
}

.samruk-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corp-blue-primary);
  margin: 0 0 2rem 0;
  padding-right: 3rem;
}

.samruk-modal-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.samruk-modal-section {
  padding: 1.5rem;
  background: var(--corp-gray-50);
  border-radius: 0.75rem;
  border: 1px solid var(--corp-gray-200);
}

.samruk-modal-section-primary {
  background: linear-gradient(to right, var(--corp-blue-primary), var(--corp-blue-light));
  color: white;
  border: none;
}

.samruk-modal-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--corp-gray-900);
}

.samruk-modal-section-primary .samruk-modal-section-title {
  color: white;
}

.samruk-modal-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.samruk-modal-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.samruk-modal-contact:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.samruk-modal-contact svg {
  flex-shrink: 0;
}

.samruk-modal-contact-whatsapp svg {
  color: #25D366;
  /* WhatsApp зеленый цвет для иконки */
}

.samruk-modal-contact-portal svg {
  color: #4CAF50;
  /* Зеленый цвет для иконки портала */
}

.samruk-modal-contact-app svg {
  color: #FF9800;
  /* Оранжевый цвет для иконки приложения */
}

.samruk-modal-note {
  font-size: 0.875rem;
  opacity: 0.9;
}

.samruk-modal-schedule {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.samruk-modal-schedule-item {
  margin: 0;
  color: var(--corp-gray-700);
  line-height: 1.6;
}

.samruk-modal-schedule-item strong {
  color: var(--corp-gray-900);
  font-weight: 600;
}

.samruk-modal-email {
  display: inline-flex;
  align-items: center;
  color: var(--corp-blue-primary);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
}

.samruk-modal-email:hover {
  color: var(--corp-mustard);
  text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 767px) {
  .samruk-modal-content {
    padding: 1.5rem;
    max-width: 100%;
    margin: 1rem;
    border-radius: 0.75rem;
  }

  .samruk-modal-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-right: 2.5rem;
  }

  .samruk-modal-section {
    padding: 1rem;
  }

  .samruk-modal-section-title {
    font-size: 1rem;
  }

  .samruk-modal-contact {
    font-size: 0.875rem;
    padding: 0.625rem;
  }

  .samruk-modal-email {
    font-size: 1rem;
  }
}

.hero-description {
  font-size: 1rem;
}

/* ========================================
   Accessibility Mode - Версия для слабовидящих
   ======================================== */

body.accessibility-mode {
  /* Базовый размер шрифта 16px */
  font-size: 16px;
  line-height: 1.6;
  /* Монохромный режим - черно-белый */
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

body.accessibility-mode * {
  /* Монохромный режим - все цвета черно-белые */
  color: #000 !important;
  background-color: #fff !important;
  border-color: #000 !important;
}

body.accessibility-mode *:not(body):not(html) {
  /* Убираем все переходы и анимации */
  transition: none !important;
  animation: none !important;
  -webkit-transition: none !important;
  -webkit-animation: none !important;
}

body.accessibility-mode h1,
body.accessibility-mode h2,
body.accessibility-mode h3,
body.accessibility-mode h4,
body.accessibility-mode h5,
body.accessibility-mode h6 {
  /* Заголовки с базовым размером */
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #000 !important;
}

body.accessibility-mode h1 {
  font-size: 18px;
}

body.accessibility-mode h2 {
  font-size: 18px;
}

body.accessibility-mode h3 {
  font-size: 18px;
}

body.accessibility-mode h4 {
  font-size: 18px;
}

body.accessibility-mode h5 {
  font-size: 18px;
}

body.accessibility-mode h6 {
  font-size: 18px;
}

body.accessibility-mode p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #000 !important;
}

body.accessibility-mode a {
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  color: #000 !important;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
}

body.accessibility-mode a:hover,
body.accessibility-mode a:focus {
  color: #000 !important;
  background-color: #fff !important;
  text-decoration-thickness: 3px;
  outline: 3px solid #000 !important;
  outline-offset: 2px;
}

body.accessibility-mode button,
body.accessibility-mode .btn {
  font-size: 18px;
  font-weight: 600;
  min-height: 48px;
  min-width: 120px;
  padding: 0.875rem 1.5rem;
  line-height: 1.6;
  color: #000 !important;
  background-color: #fff !important;
  border: 2px solid #000 !important;
}

body.accessibility-mode button:focus,
body.accessibility-mode .btn:focus {
  outline: 4px solid #000 !important;
  outline-offset: 3px;
}

body.accessibility-mode input,
body.accessibility-mode textarea,
body.accessibility-mode select {
  font-size: 18px;
  min-height: 48px;
  padding: 0.875rem 1rem;
  line-height: 1.6;
  border-width: 2px;
  color: #000 !important;
  background-color: #fff !important;
  border-color: #000 !important;
}

body.accessibility-mode input:focus,
body.accessibility-mode textarea:focus,
body.accessibility-mode select:focus {
  outline: 4px solid #000 !important;
  outline-offset: 2px;
  border-color: #000 !important;
}

/* Увеличение размеров иконок */
body.accessibility-mode svg {
  width: calc(1em * 1.25);
  height: calc(1em * 1.25);
  min-width: 20px;
  min-height: 20px;
}

body.accessibility-mode .accessibility-toggle svg,
body.accessibility-mode .top-bar svg,
body.accessibility-mode .header-actions svg {
  width: 20px;
  height: 20px;
}

/* Увеличение отступов между элементами */
body.accessibility-mode .nav-menu li {
  margin-bottom: 1rem;
}

body.accessibility-mode .nav-menu a {
  padding: 0.75rem 1rem;
}

body.accessibility-mode .services-list {
  gap: 2rem;
}

body.accessibility-mode .news-card,
body.accessibility-mode .service-card {
  margin-bottom: 2rem;
  padding: 1.5rem;
}

body.accessibility-mode .news-sidebar-item {
  margin-bottom: 2rem;
  padding: 1.25rem;
}

/* Улучшение видимости фокуса для всех интерактивных элементов */
body.accessibility-mode *:focus {
  outline: 3px solid #000 !important;
  outline-offset: 2px;
}

body.accessibility-mode *:focus:not(:focus-visible) {
  outline: none;
}

body.accessibility-mode *:focus-visible {
  outline: 4px solid #000 !important;
  outline-offset: 3px;
}

/* Отключение всех анимаций и переходов */
body.accessibility-mode *,
body.accessibility-mode *::before,
body.accessibility-mode *::after {
  animation: none !important;
  transition: none !important;
  -webkit-animation: none !important;
  -webkit-transition: none !important;
}

/* Монохромный режим - все тексты черные */
body.accessibility-mode .text-gray-600,
body.accessibility-mode .text-gray-700,
body.accessibility-mode .news-card-excerpt,
body.accessibility-mode .news-sidebar-item-excerpt {
  color: #000 !important;
}

body.accessibility-mode .text-gray-500 {
  color: #000 !important;
}

/* Увеличение размеров кнопок в топ-баре */
body.accessibility-mode .top-bar button,
body.accessibility-mode .top-bar a {
  min-height: 44px;
  padding: 0.625rem 1rem;
  font-size: 18px;
  color: #000 !important;
  background-color: #fff !important;
}

/* Увеличение размеров элементов меню */
body.accessibility-mode .dropdown-menu a {
  padding: 1rem 1.25rem;
  font-size: 18px;
  min-height: 48px;
  color: #000 !important;
  background-color: #fff !important;
}

/* Улучшение видимости активной кнопки доступности */
body.accessibility-mode .accessibility-toggle.active {
  background-color: #000 !important;
  color: #fff !important;
  font-weight: 700;
  outline: 3px solid #000 !important;
  outline-offset: 2px;
}

body.accessibility-mode .accessibility-toggle.active:hover {
  background-color: #000 !important;
  outline-color: #000 !important;
}

/* Увеличение размеров карточек и блоков */
body.accessibility-mode .info-disclosure-card,
body.accessibility-mode .figure-of-day-card {
  padding: 2rem;
}

body.accessibility-mode .info-disclosure-title {
  font-size: 18px;
  margin-bottom: 1rem;
  color: #000 !important;
}

body.accessibility-mode .info-disclosure-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #000 !important;
}

body.accessibility-mode .btn-info-disclosure {
  min-height: 52px;
  padding: 1rem 1.5rem;
  font-size: 18px;
  color: #000 !important;
  background-color: #fff !important;
  border: 2px solid #000 !important;
}

/* Увеличение размеров в футере */
body.accessibility-mode .footer-menu a {
  padding: 0.75rem 0;
  font-size: 18px;
  min-height: 44px;
  color: #000 !important;
}

body.accessibility-mode .footer-column h4 {
  font-size: 18px;
  margin-bottom: 1rem;
  color: #000 !important;
}

body.accessibility-mode .footer-contact-text {
  font-size: 1rem;
  line-height: 1.8;
}

/* Увеличение размеров в слайдере */
body.accessibility-mode .hero-title {
  font-size: 3.5rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

body.accessibility-mode .hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

body.accessibility-mode .hero-buttons .btn {
  min-height: 56px;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Улучшение видимости разделителей */
body.accessibility-mode hr,
body.accessibility-mode .divider {
  border-width: 2px;
  margin: 2rem 0;
}

/* Увеличение размеров меток и бейджей */
body.accessibility-mode .news-section-label,
body.accessibility-mode .about-company-label,
body.accessibility-mode .services-label {
  font-size: 1rem;
  padding: 0.5rem 0;
}

body.accessibility-mode .news-sidebar-category,
body.accessibility-mode .news-card-category {
  font-size: 0.9375rem;
  padding: 0.5rem 0.75rem;
  min-height: 36px;
}

/* ========================================
   Исправления для режима доступности
   ======================================== */

/* 1. Футер - белый фон с темным текстом */
body.accessibility-mode .site-footer {
  background: white !important;
  color: #1F2937 !important;
  border-top: 2px solid #E5E7EB;
}

body.accessibility-mode .site-footer * {
  color: #1F2937 !important;
}

body.accessibility-mode .footer-section-title,
body.accessibility-mode .footer-column h4,
body.accessibility-mode .footer-company-name {
  color: #1E3A8A !important;
  font-weight: 700;
}

body.accessibility-mode .footer-menu a,
body.accessibility-mode .footer-contact-text,
body.accessibility-mode .footer-company-description {
  color: #374151 !important;
}

body.accessibility-mode .footer-menu a:hover {
  color: #1E3A8A !important;
  text-decoration: underline;
}

body.accessibility-mode .footer-divider {
  background: #E5E7EB !important;
}

body.accessibility-mode .footer-logo-img {
  filter: none !important;
}

body.accessibility-mode .footer-contact-icon {
  background: #F3F4F6 !important;
  color: #1E3A8A !important;
}

body.accessibility-mode .footer-contact-icon:hover {
  background: #1E3A8A !important;
  color: white !important;
}

body.accessibility-mode .footer-buy-ticket {
  background: linear-gradient(to right, #1E3A8A, #3B82F6) !important;
  color: white !important;
}

body.accessibility-mode .footer-buy-ticket:hover {
  background: linear-gradient(to right, #1E40AF, #2563EB) !important;
}

body.accessibility-mode .footer-bottom {
  background: white !important;
  border-top: 2px solid #E5E7EB !important;
  color: #374151 !important;
}

body.accessibility-mode .footer-bottom p,
body.accessibility-mode .footer-bottom a {
  color: #374151 !important;
}

body.accessibility-mode .footer-bottom a:hover {
  color: #1E3A8A !important;
}

body.accessibility-mode .footer-bottom-line {
  background: linear-gradient(to right, #1E3A8A, #3B82F6, #1E3A8A) !important;
}

body.accessibility-mode .social-link {
  background: #F3F4F6 !important;
  border-color: #D1D5DB !important;
  color: #1E3A8A !important;
}

body.accessibility-mode .social-link:hover {
  background: #1E3A8A !important;
  color: white !important;
}

/* 2. Исправление слайдера и новостного блока */
body.accessibility-mode .hero-news-section {
  position: relative !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  display: block !important;
}

body.accessibility-mode .hero-news-container {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.5rem !important;
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (min-width: 1024px) {
  body.accessibility-mode .hero-news-container {
    grid-template-columns: 66.666% 33.333% !important;
  }
}

body.accessibility-mode .hero-slider-wrapper {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  min-height: 400px !important;
  display: block !important;
}

body.accessibility-mode .news-sidebar {
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
  display: block !important;
}

/* 3. Исправление кнопок слайдера */
body.accessibility-mode .hero-nav {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  font-size: 1.5rem !important;
  z-index: 20 !important;
}

body.accessibility-mode .hero-nav svg {
  width: 24px !important;
  height: 24px !important;
}

body.accessibility-mode .hero-buttons {
  position: relative !important;
  top: auto !important;
  bottom: 2rem !important;
  left: var(--spacing-xl) !important;
  transform: none !important;
  z-index: 10 !important;
}

body.accessibility-mode .hero-buttons .btn {
  min-height: 56px !important;
  padding: 1rem 2rem !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  border-width: 2px !important;
}

/* 4. Блок "Раскрытие информации" - белый фон */
body.accessibility-mode .info-disclosure-card {
  background: white !important;
  border: 2px solid #1E3A8A !important;
  color: #1F2937 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

body.accessibility-mode .info-disclosure-title {
  color: #1E3A8A !important;
  font-weight: 700 !important;
}

body.accessibility-mode .info-disclosure-description {
  color: #374151 !important;
}

body.accessibility-mode .btn-info-disclosure {
  background: #1E3A8A !important;
  border-color: #1E3A8A !important;
  color: white !important;
}

body.accessibility-mode .btn-info-disclosure:hover {
  background: #1E40AF !important;
  border-color: #1E40AF !important;
  color: white !important;
}

/* ============================================
   Contact Page Styles
   ============================================ */

/* Breadcrumbs */
.breadcrumbs {
  background: var(--corp-gray-50);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--corp-gray-200);
}

.breadcrumbs .container {
  max-width: 1400px;
  padding: 0 var(--spacing-xl);
}

.breadcrumbs-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.875rem;
}

.breadcrumbs-home {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--corp-gray-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-home:hover {
  color: var(--corp-blue-primary);
}

.breadcrumbs-home svg {
  width: 16px;
  height: 16px;
}

.breadcrumbs-separator {
  display: flex;
  align-items: center;
  color: var(--corp-gray-400);
}

.breadcrumbs-separator svg {
  width: 16px;
  height: 16px;
}

.breadcrumbs-link {
  color: var(--corp-gray-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-link:hover {
  color: var(--corp-blue-primary);
}

.breadcrumbs-current {
  color: var(--corp-blue-primary);
  font-weight: 500;
}

/* Single News Page */
.single-news-container {
  padding: var(--spacing-2xl) 0;
  background: white;
}

.single-news-container .container {
  max-width: 1400px;
  padding: 0 var(--spacing-xl);
}

.single-news-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.single-news-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--corp-gray-600);
  text-decoration: none;
  font-size: 0.9375rem;
  margin-bottom: var(--spacing-xl);
  transition: color 0.2s ease;
}

.single-news-back-btn:hover {
  color: var(--corp-blue-primary);
}

.single-news-back-btn svg {
  width: 16px;
  height: 16px;
}

.single-news-article {
  background: white;
}

.single-news-header {
  margin-bottom: var(--spacing-xl);
}

.single-news-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--corp-gray-900);
  margin: 0 0 var(--spacing-lg) 0;
}

.single-news-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.single-news-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--corp-gray-600);
  font-size: 0.9375rem;
}

.single-news-date svg {
  width: 16px;
  height: 16px;
  color: var(--corp-gray-500);
}

.single-news-share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--corp-gray-600);
  font-size: 0.9375rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.single-news-share-btn:hover {
  color: var(--corp-blue-primary);
}

.single-news-share-btn svg {
  width: 16px;
  height: 16px;
}

.single-news-image {
  margin-bottom: var(--spacing-xl);
  border-radius: 0.75rem;
  overflow: hidden;
}

.single-news-featured-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.single-news-content {
  color: var(--corp-gray-700);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.single-news-content p {
  margin-bottom: var(--spacing-lg);
}

.single-news-content p:last-child {
  margin-bottom: 0;
}

/* Page Header */
.page-header {
  background: linear-gradient(to right, var(--corp-blue-primary), var(--corp-blue-dark));
  padding: var(--spacing-2xl) 0;
  color: white;
  position: relative;
}

.page-header .container {
  max-width: 1400px;
  padding: 0 var(--spacing-xl);
}

.page-header-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--spacing-sm) 0;
  color: white;
}

.page-header-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 800px;
}

/* Contact Page Content */
.contact-page-content {
  padding: var(--spacing-2xl) 0;
  background: white;
}

.contact-page-content .container {
  max-width: 1400px;
  padding: 0 var(--spacing-xl);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

/* Contact Card */
.contact-card {
  background: white;
  border-radius: 0.75rem;
  padding: var(--spacing-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

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

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 var(--spacing-lg) 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.contact-icon {
  color: var(--corp-gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-content {
  flex: 1;
}

.contact-info-label {
  font-weight: 600;
  color: var(--corp-gray-900);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.contact-info-value {
  color: var(--corp-gray-600);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.contact-info-value a {
  color: var(--corp-blue-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-value a:hover {
  color: var(--corp-blue-dark);
  text-decoration: underline;
}

/* Quick Links */
.quick-links-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.quick-link-card {
  display: block;
  background: var(--corp-gray-50);
  padding: var(--spacing-md);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.quick-link-card:hover {
  background: var(--corp-gray-100);
  border-color: var(--corp-gray-200);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.quick-link-card.quick-link-social {
  cursor: default;
}

.quick-link-card.quick-link-social:hover {
  transform: none;
}

.quick-link-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--corp-blue-primary);
  margin: 0 0 0.25rem 0;
}

.quick-link-card.quick-link-social .quick-link-title {
  color: var(--corp-gray-900);
  margin-bottom: var(--spacing-sm);
}

.quick-link-description {
  font-size: 0.875rem;
  color: var(--corp-gray-600);
  margin: 0;
  line-height: 1.5;
}

.social-links-inline {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--corp-blue-primary);
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.social-link-btn:hover {
  background: var(--corp-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

/* Map Card */
.contact-map-card {
  background: white;
  border-radius: 0.75rem;
  padding: var(--spacing-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-map-container {
  margin-top: var(--spacing-lg);
}

/* ============================================
   Feedback Page Styles
   ============================================ */

.feedback-page-content {
  padding: var(--spacing-2xl) 0;
  background: var(--corp-gray-50);
}

.feedback-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.feedback-contact-card {
  background: white;
  border-radius: 0.75rem;
  padding: var(--spacing-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--corp-gray-200);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feedback-contact-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.feedback-contact-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: #d97706;
  flex-shrink: 0;
}

.feedback-contact-icon svg {
  width: 48px;
  height: 48px;
}

.feedback-contact-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--corp-gray-900);
  margin-bottom: var(--spacing-sm);
}

.feedback-contact-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--corp-blue-primary);
  margin-bottom: 0.5rem;
}

.feedback-contact-value a {
  color: var(--corp-blue-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.feedback-contact-value a:hover {
  color: var(--corp-blue-dark);
  text-decoration: underline;
}

.feedback-contact-note {
  font-size: 0.875rem;
  color: var(--corp-gray-600);
  margin-top: 0.25rem;
}

.feedback-chat-button {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: white;
  border: 1px solid var(--corp-gray-300);
  border-radius: 0.5rem;
  color: var(--corp-gray-900);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  cursor: pointer;
}

.feedback-chat-button:hover:not(:disabled) {
  background: var(--corp-gray-50);
  border-color: var(--corp-gray-400);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feedback-chat-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Feedback Form Wrapper */
.feedback-form-wrapper {
  background: white;
  border-radius: 0.75rem;
  padding: var(--spacing-2xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: var(--spacing-2xl);
}

.feedback-form-placeholder {
  text-align: center;
  padding: var(--spacing-2xl);
  color: var(--corp-gray-600);
}

/* Contact Form 7 Styles */
.feedback-form-wrapper .wpcf7-form {
  max-width: 100%;
  display: block;
}

.feedback-form-wrapper .wpcf7-form>p {
  margin: 0 0 var(--spacing-lg) 0;
  display: block;
}

/* Name and Email fields side by side - using flexbox for better control */
.feedback-form-wrapper .wpcf7-form>p:first-of-type,
.feedback-form-wrapper .wpcf7-form>p:nth-of-type(2) {
  display: inline-block;
  width: calc(50% - 0.75rem);
  vertical-align: top;
  margin-bottom: var(--spacing-lg);
  box-sizing: border-box;
}

.feedback-form-wrapper .wpcf7-form>p:first-of-type {
  margin-right: 1.5rem;
}

/* Ensure proper spacing for other fields */
.feedback-form-wrapper .wpcf7-form>p:nth-of-type(3),
.feedback-form-wrapper .wpcf7-form>p:nth-of-type(4),
.feedback-form-wrapper .wpcf7-form>p:nth-of-type(5) {
  display: block;
  width: 100%;
  margin-bottom: var(--spacing-lg);
}

.feedback-form-wrapper .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  margin-bottom: 0;
  width: 100%;
}

.feedback-form-wrapper .wpcf7-form-control {
  width: 100% !important;
  padding: 0.875rem 1rem 0.875rem 3rem !important;
  border: 1px solid var(--corp-gray-300) !important;
  border-radius: 0.5rem !important;
  font-size: 1rem !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  background: white !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.feedback-form-wrapper .wpcf7-form-control:focus {
  outline: none !important;
  border-color: var(--corp-blue-primary) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

.feedback-form-wrapper .wpcf7-form-control::placeholder {
  color: var(--corp-gray-400) !important;
}

.feedback-form-wrapper .wpcf7-textarea {
  min-height: 150px !important;
  resize: vertical !important;
  padding: 0.875rem 1rem !important;
  padding-left: 3rem !important;
}

.feedback-form-wrapper .wpcf7-select {
  padding-right: 2.5rem !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.75rem center !important;
  background-size: 12px !important;
  appearance: none !important;
  cursor: pointer !important;
}

/* Form Labels */
.feedback-form-wrapper .wpcf7-form label {
  display: block !important;
  font-weight: 600 !important;
  color: var(--corp-gray-900) !important;
  margin-bottom: 0.5rem !important;
  font-size: 0.9375rem !important;
}

.feedback-form-wrapper .wpcf7-form label .wpcf7-required {
  color: #ef4444 !important;
  margin-left: 0.25rem !important;
}

/* Form Fields with Icons - Using SVG icons */
.feedback-form-wrapper .wpcf7-form-control-wrap {
  position: relative;
}

.feedback-form-wrapper .wpcf7-form-control-wrap.your-name::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%239ca3af' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.feedback-form-wrapper .wpcf7-form-control-wrap.your-email::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%239ca3af' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.feedback-form-wrapper .wpcf7-form-control-wrap.your-phone::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%239ca3af' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.feedback-form-wrapper .wpcf7-form-control-wrap.your-subject::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%239ca3af' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.feedback-form-wrapper .wpcf7-form-control-wrap.your-message::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 20px;
  height: 20px;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%239ca3af' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Submit Button Wrapper */
.feedback-form-wrapper .wpcf7-form>p:has(.wpcf7-submit),
.feedback-form-wrapper .wpcf7-form>p:has(input[type="submit"]),
.feedback-form-wrapper .wpcf7-form>p:has(button[type="submit"]) {
  display: block !important;
  width: 100% !important;
  margin-top: var(--spacing-md) !important;
  margin-bottom: 0 !important;
  text-align: left !important;
}

/* Fallback for browsers without :has() support */
.feedback-form-wrapper .wpcf7-form p:last-of-type {
  display: block !important;
  width: 100% !important;
  margin-top: var(--spacing-md) !important;
  margin-bottom: 0 !important;
  text-align: left !important;
}

/* Submit Button */
.feedback-form-wrapper .wpcf7-submit,
.feedback-form-wrapper input[type="submit"],
.feedback-form-wrapper button[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.875rem 2rem !important;
  background: #d97706 !important;
  color: white !important;
  border: none !important;
  border-radius: 0.5rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin-top: var(--spacing-md) !important;
  width: auto !important;
  min-width: 200px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.feedback-form-wrapper .wpcf7-submit:hover,
.feedback-form-wrapper input[type="submit"]:hover,
.feedback-form-wrapper button[type="submit"]:hover {
  background: #b45309 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3) !important;
}

.feedback-form-wrapper .wpcf7-submit:active,
.feedback-form-wrapper input[type="submit"]:active,
.feedback-form-wrapper button[type="submit"]:active {
  transform: translateY(0) !important;
}

/* Response Time Info */
.feedback-response-time-info {
  background: #e0f2fe;
  border-left: 4px solid var(--corp-blue-primary);
  border-radius: 0.5rem;
  padding: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.feedback-response-time-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--corp-blue-primary);
  margin: 0 0 var(--spacing-sm) 0;
}

.feedback-response-time-text {
  font-size: 0.9375rem;
  color: var(--corp-gray-700);
  line-height: 1.6;
  margin: 0;
}

.contact-map-placeholder {
  background: var(--corp-gray-100);
  height: 400px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--corp-gray-500);
  font-size: 1rem;
}

/* ============================================
   Branches Page Styles
   ============================================ */

/* Branches Page Content */
.branches-page-content {
  padding: var(--spacing-2xl) 0;
  background: white;
}

.branches-page-content .container {
  max-width: 1400px;
  padding: 0 var(--spacing-xl);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

/* Branch Card */
.branch-card {
  background: white;
  border-radius: 0.75rem;
  padding: var(--spacing-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  border: 1px solid var(--corp-gray-200);
}

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

.branch-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 var(--spacing-lg) 0;
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--corp-gold);
}

.branch-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.branch-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.branch-icon {
  color: var(--corp-gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.branch-icon svg {
  width: 20px;
  height: 20px;
}

.branch-info-content {
  flex: 1;
}

.branch-info-value {
  color: var(--corp-gray-700);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.branch-info-value a {
  color: var(--corp-blue-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.branch-info-value a:hover {
  color: var(--corp-blue-dark);
  text-decoration: underline;
}

/* Branch Director */
.branch-director {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--corp-gray-200);
}

.branch-director-label {
  font-weight: 600;
  color: var(--corp-gray-900);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.branch-director-name {
  color: var(--corp-gray-700);
  font-size: 1rem;
  font-weight: 500;
}

/* Branches Empty State */
.branches-empty {
  text-align: center;
  padding: var(--spacing-2xl);
  color: var(--corp-gray-500);
}

/* Branches Map Card */
.branches-map-card {
  display: none !important;
  background: white;
  border-radius: 0.75rem;
  padding: var(--spacing-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.branches-map-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 var(--spacing-lg) 0;
}

.branches-map-container {
  margin-top: var(--spacing-lg);
}

.branches-map-placeholder {
  background: var(--corp-gray-100);
  height: 400px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--corp-gray-500);
  font-size: 1rem;
}

/* ============================================
 * Vacancies Page
 * ============================================
 */

.vacancies-page-content {
  padding: var(--spacing-2xl) 0;
  background: white;
}

.vacancies-page-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

.vacancies-career-block {
  background: white;
  border-radius: 0.75rem;
  padding: var(--spacing-2xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}

.vacancies-career-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(to right, var(--corp-blue-primary), #60A5FA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.vacancies-career-icon svg {
  width: 32px;
  height: 32px;
}

.vacancies-career-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0;
  line-height: 1.3;
}

.vacancies-career-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--corp-gray-700);
  margin: 0;
  max-width: 600px;
}

.vacancies-career-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(to right, var(--corp-blue-primary), var(--corp-blue-dark));
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vacancies-career-button:hover {
  background: linear-gradient(to right, var(--corp-blue-dark), #1e40af);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.vacancies-career-button:active {
  transform: translateY(0);
}

.vacancies-career-button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.vacancies-career-link-text {
  font-size: 0.875rem;
  color: var(--corp-gray-500);
  margin: 0;
  margin-top: calc(var(--spacing-md) * -1);
}

/* ============================================
 * News Page
 * ============================================
 */

.news-page-content {
  padding: var(--spacing-2xl) 0;
  background: white;
}

.news-page-content .container {
  max-width: 1400px;
  padding: 0 var(--spacing-xl);
}

/* Search Section */
.news-page-search {
  margin-bottom: var(--spacing-2xl);
}

.news-page-search-form {
  display: flex;
  gap: var(--spacing-md);
  max-width: 600px;
  margin: 0 auto;
}

.news-page-search-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.news-page-search-icon {
  position: absolute;
  left: 1rem;
  color: var(--corp-gray-400);
  pointer-events: none;
  z-index: 1;
}

.news-page-search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 1px solid var(--corp-gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--corp-gray-900);
  background: white;
  transition: all 0.3s ease;
}

.news-page-search-input:focus {
  outline: none;
  border-color: var(--corp-blue-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.news-page-search-input::placeholder {
  color: var(--corp-gray-400);
}

.news-page-search-button {
  padding: 0.875rem 2rem;
  background: linear-gradient(to right, var(--corp-blue-primary), var(--corp-blue-dark));
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.news-page-search-button:hover {
  background: linear-gradient(to right, var(--corp-blue-dark), #1e40af);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.news-page-search-button:active {
  transform: translateY(0);
}

/* News Grid */
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

/* News Card */
.news-page-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-page-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.news-page-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news-page-card-image {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.news-page-card-content {
  padding: var(--spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-page-card-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--corp-blue-primary);
  color: white;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  align-self: flex-start;
}

.news-page-card-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--corp-gray-500);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.news-page-card-date svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.news-page-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 var(--spacing-sm) 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-page-card-excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--corp-gray-700);
  margin: 0 0 var(--spacing-md) 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-page-card-read-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--corp-blue-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: auto;
}

.news-page-card-read-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.news-page-card:hover .news-page-card-read-more svg {
  transform: translateX(4px);
}

.news-page-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--spacing-2xl);
  color: var(--corp-gray-500);
  font-size: 1.125rem;
}

/* Load More Button */
.news-page-load-more-wrapper {
  text-align: center;
  margin-top: var(--spacing-2xl);
}

.news-page-load-more-button {
  padding: 1rem 2.5rem;
  background: linear-gradient(to right, var(--corp-blue-primary), var(--corp-blue-dark));
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-page-load-more-button:hover:not(:disabled) {
  background: linear-gradient(to right, var(--corp-blue-dark), #1e40af);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.news-page-load-more-button:active:not(:disabled) {
  transform: translateY(0);
}

.news-page-load-more-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.news-page-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--spacing-2xl);
  color: var(--corp-gray-500);
  font-size: 1.125rem;
}

/* ============================================
   Reports Pages Styles
   ============================================ */

.reports-page-content {
  padding: var(--spacing-xl) 0;
  background: white;
}

.reports-page-content .container {
  max-width: 800px;
  /* Еще более компактная ширина */
  padding: 0 var(--spacing-md);
  margin: 0 auto;
}

.reports-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* Компактный gap между карточками */
  max-width: 100%;
}

/* Report Card */
.report-card {
  background: white;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  /* Еще более компактные отступы */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  /* Компактный gap */
  border: 1px solid #e5e7eb;
  position: relative;
}

.report-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Report Icon */
.report-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0f2fe;
  /* Светло-синий фон как в Figma */
  position: relative;
}

.report-icon-pdf {
  background: #e0f2fe;
}

.report-icon-pdf svg {
  color: #1e40af;
  /* Темно-синий цвет документа */
}

.report-icon-annual {
  background: #f3f4f6;
}

.report-icon-annual svg {
  color: var(--corp-mustard);
}

.report-icon-excel {
  background: #f3f4f6;
}

.report-icon-excel svg {
  color: #10b981;
}

.report-icon svg {
  width: 20px;
  height: 20px;
}

/* Report Content */
.report-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  /* Минимальный gap */
}

.report-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.4;
}

.report-meta {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.75rem;
  color: #6b7280;
  flex-wrap: wrap;
  line-height: 1.3;
}

.report-date {
  color: var(--corp-gray-600);
}

.report-separator {
  color: var(--corp-gray-400);
  margin: 0 0.5rem;
}

.report-size {
  color: var(--corp-gray-600);
}

/* Report Actions */
.report-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  margin-left: auto;
  /* Выравнивание кнопок справа */
  align-items: center;
  /* Выравнивание кнопок по центру */
  align-self: center;
  /* Выравнивание контейнера по вертикали с текстом */
}

.report-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4375rem 0.875rem;
  /* Еще более компактные отступы */
  font-weight: 500;
  font-size: 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  background: white;
  border: 1px solid #d1d5db;
  /* Серая рамка */
  color: #374151;
}

.report-download-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}

.report-download-btn-pdf {
  background: white;
  border: 1px solid #e5e7eb;
  color: var(--corp-gray-700);
}

.report-download-btn-pdf:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: var(--corp-gray-900);
}

.report-download-btn-excel {
  background: white;
  border: 1px solid #e5e7eb;
  color: var(--corp-gray-700);
}

.report-download-btn-excel:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: var(--corp-gray-900);
}

.report-download-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.reports-empty {
  text-align: center;
  padding: var(--spacing-2xl);
  color: var(--corp-gray-500);
  font-size: 1rem;
}

/* ============================================
   Online Tablo Page Styles
   ============================================ */

.online-tablo-page-content {
  padding: var(--spacing-2xl) 0;
  background: #f9fafb;
}

.online-tablo-page-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Main Card */
.online-tablo-main-card {
  background: white;
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.online-tablo-icon-circle {
  width: 80px;
  height: 80px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--corp-blue-primary);
}

.online-tablo-main-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.online-tablo-main-description {
  font-size: 1.125rem;
  color: var(--corp-gray-600);
  margin: 0 0 2rem;
  line-height: 1.6;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.online-tablo-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--corp-blue-primary);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 1rem;
}

.online-tablo-button:hover {
  background: var(--corp-blue-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.online-tablo-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.online-tablo-external-link-text {
  font-size: 0.875rem;
  color: var(--corp-gray-500);
  margin-top: 1rem;
}

/* Info Cards Grid */
.online-tablo-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.online-tablo-info-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.online-tablo-info-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.online-tablo-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.online-tablo-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.online-tablo-icon-green {
  background: #dcfce7;
  color: #16a34a;
}

.online-tablo-icon-blue {
  background: #dbeafe;
  color: #2563eb;
}

.online-tablo-icon-purple {
  background: #f3e8ff;
  color: #9333ea;
}

.online-tablo-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--corp-gray-900);
  margin: 0;
}

.online-tablo-card-description {
  font-size: 0.875rem;
  color: var(--corp-gray-600);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.online-tablo-card-button {
  width: 100%;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--corp-gray-700);
  cursor: pointer;
  transition: all 0.2s ease;
}

.online-tablo-card-button:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: var(--corp-gray-900);
}

.online-tablo-phone-number {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--corp-blue-primary);
  margin: 0.5rem 0 0.25rem;
}

.online-tablo-phone-availability {
  font-size: 0.75rem;
  color: var(--corp-gray-500);
}

/* Quick Info Section */
.online-tablo-quick-info {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.online-tablo-quick-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 1.5rem;
}

.online-tablo-quick-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.online-tablo-quick-info-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--corp-gray-900);
  margin: 0 0 0.75rem;
}

.online-tablo-quick-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.online-tablo-quick-info-list li {
  font-size: 0.875rem;
  color: var(--corp-gray-600);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.online-tablo-quick-info-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--corp-gray-400);
}

/* ============================================
   Discounts Page Styles
   ============================================ */

.discounts-page-content {
  padding: var(--spacing-2xl) 0;
  background: #f9fafb;
}

.discounts-page-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Discounts Grid */
.discounts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.discount-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  cursor: pointer;
}

.discount-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.discount-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.discount-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  transition: transform 0.3s ease;
}

.discount-card:hover .discount-icon {
  transform: scale(1.1);
}

.discount-icon-amber {
  background: #f59e0b;
}

.discount-icon-blue {
  background: #3b82f6;
}

.discount-icon-slate {
  background: #64748b;
}

.discount-icon-pink {
  background: #ec4899;
}

.discount-icon-red {
  background: #ef4444;
}

.discount-icon-green {
  background: #10b981;
}

.discount-icon-orange {
  background: #f97316;
}

.discount-card-content {
  flex: 1;
  min-width: 0;
}

.discount-card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.discount-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--corp-gray-900);
  margin: 0;
  transition: color 0.3s ease;
}

.discount-card:hover .discount-card-title {
  color: var(--corp-blue-primary);
}

.discount-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corp-mustard);
  flex-shrink: 0;
  background: linear-gradient(to right, var(--corp-mustard), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.discount-card-short-description {
  font-size: 0.875rem;
  color: var(--corp-gray-600);
  margin: 0;
  line-height: 1.5;
}

.discount-card-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.discount-toggle-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--corp-blue-primary);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.discount-toggle-button:hover {
  color: var(--corp-blue-dark);
}

.discount-toggle-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.discount-card.expanded .discount-toggle-icon {
  transform: rotate(180deg);
}

.discount-arrow-icon {
  width: 16px;
  height: 16px;
  color: #bfdbfe;
  transition: transform 0.3s ease;
}

.discount-card:hover .discount-arrow-icon {
  transform: translateX(4px);
}

.discount-card.expanded .discount-arrow-icon {
  transform: rotate(90deg);
}

/* Expanded Content */
.discount-expanded {
  display: none !important;
  margin-top: 0;
  padding-top: 0;
}

.discount-card.expanded>.discount-expanded {
  display: block !important;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
}

.discount-expanded-section {
  margin-bottom: 1.5rem;
}

.discount-expanded-section:last-child {
  margin-bottom: 0;
}

.discount-expanded-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--corp-gray-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
}

.discount-expanded-text {
  font-size: 0.9375rem;
  color: var(--corp-gray-700);
  line-height: 1.6;
  background: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  margin: 0;
}

.discount-expanded-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.discount-expanded-list li {
  font-size: 0.9375rem;
  color: var(--corp-gray-700);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.discount-expanded-list li:last-child {
  margin-bottom: 0;
}

.discount-expanded-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--corp-mustard);
  font-weight: bold;
}

.discount-trains-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--corp-blue-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0.75rem;
}

.discount-trains-toggle:hover {
  background: #dbeafe;
}

.discount-trains-count {
  font-size: 0.75rem;
  color: #2563eb;
  background: #bfdbfe;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.discount-trains-list {
  display: none;
  padding: 1rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.discount-trains-list.expanded {
  display: block;
}

.discount-trains-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--corp-gray-700);
  margin: 0 0 0.75rem;
}

/* How to Section */
.discounts-how-to {
  background: linear-gradient(to bottom right, #eff6ff, #e0e7ff);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid #bfdbfe;
}

.discounts-how-to-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corp-gray-800);
  text-align: center;
  margin: 0 0 2rem;
}

.discounts-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.discount-step {
  text-align: center;
}

.discount-step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(to right, #3b82f6, #2563eb);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transition: transform 0.3s ease;
}

.discount-step:hover .discount-step-number {
  transform: scale(1.1);
}

.discount-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--corp-gray-800);
  margin: 0 0 0.75rem;
}

.discount-step-description {
  font-size: 0.9375rem;
  color: var(--corp-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Important Information Section */
.discounts-important {
  background: linear-gradient(to right, #fef3c7, #fde68a);
  border-left: 4px solid var(--corp-mustard);
  border-radius: 1rem;
  padding: 1.5rem;
}

.discounts-important-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.discounts-important-icon {
  width: 24px;
  height: 24px;
  background: var(--corp-mustard);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  margin-top: 2px;
}

.discounts-important-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--corp-gray-800);
  margin: 0;
}

.discounts-important-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.discounts-important-list li {
  font-size: 0.9375rem;
  color: var(--corp-gray-700);
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  border-radius: 0.5rem;
  transition: background 0.2s ease;
}

.discounts-important-list li:hover {
  background: rgba(251, 191, 36, 0.3);
}

.discounts-important-list li:last-child {
  margin-bottom: 0;
}

.discounts-important-list li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--corp-mustard);
  font-size: 1.125rem;
  font-weight: bold;
}

/* ============================================
   Trains Page Styles
   ============================================ */

.trains-page-content {
  padding: var(--spacing-2xl) 0;
  background: #ffffff;
}

.trains-page-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Trains List */
.trains-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Train Card */
.train-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.train-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Train Image */
.train-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.train-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.train-card:hover .train-image {
  transform: scale(1.05);
}

/* Train Info */
.train-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.train-class-badge {
  display: inline-block;
  background: var(--corp-mustard);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.train-name {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0;
  line-height: 1.2;
}

.train-description {
  font-size: 1rem;
  color: var(--corp-gray-700);
  line-height: 1.6;
  margin: 0;
}

/* Train Specs */
.train-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1rem 0;
}

.train-spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.train-spec-label {
  font-size: 0.875rem;
  color: var(--corp-gray-600);
  font-weight: 500;
}

.train-spec-value {
  font-size: 1.125rem;
  color: var(--corp-gray-900);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.train-spec-icon {
  width: 20px;
  height: 20px;
  color: var(--corp-blue-primary);
  flex-shrink: 0;
}

/* Train Amenities */
.train-amenities {
  margin-top: 1rem;
}

.train-amenities-label {
  font-size: 0.875rem;
  color: var(--corp-gray-600);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.train-amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f3f4f6;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--corp-gray-700);
  transition: all 0.2s ease;
}

.amenity-item:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

.amenity-item svg {
  width: 16px;
  height: 16px;
  color: var(--corp-blue-primary);
  flex-shrink: 0;
}

/* Technical Maintenance Section */
.trains-maintenance {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 3rem;
}

.trains-maintenance-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 1.5rem 0;
}

.trains-maintenance-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trains-maintenance-content p {
  font-size: 1rem;
  color: var(--corp-gray-700);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   Rules Page Styles
   ============================================ */

.rules-page-content {
  padding: var(--spacing-2xl) 0;
  background: #ffffff;
}

.rules-page-content .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Rules Sections */
.rules-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Rules Section Card */
.rules-section-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.rules-section-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.rules-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

/* Rules Section Text (Paragraphs) */
.rules-section-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rules-section-text p {
  font-size: 1rem;
  color: var(--corp-gray-700);
  line-height: 1.6;
  margin: 0;
}

/* Rules Section List (Bullet Points) */
.rules-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rules-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--corp-gray-700);
  line-height: 1.6;
}

.rules-list-marker {
  color: var(--corp-mustard);
  font-size: 1.25rem;
  font-weight: bold;
  flex-shrink: 0;
  line-height: 1.4;
}

.rules-list-text {
  flex: 1;
}

/* ============================================
   FAQ Page Styles
   ============================================ */

.faq-page-content {
  padding: var(--spacing-2xl) 0;
  background: #ffffff;
}

.faq-page-content .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* FAQ Categories */
.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* FAQ Category */
.faq-category {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0;
  line-height: 1.2;
}

/* FAQ Questions */
.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* FAQ Item (Card) */
.faq-item {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: var(--corp-gray-50);
}

.faq-question-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--corp-gray-900);
  line-height: 1.5;
  flex: 1;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--corp-blue-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-top: 0.125rem;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
  animation: slideDown 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer-content {
  font-size: 1rem;
  color: var(--corp-gray-700);
  line-height: 1.6;
}

.faq-answer-content p {
  margin: 0 0 1rem 0;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

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

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

/* FAQ Support Block */
.faq-support-block {
  background: linear-gradient(135deg, var(--corp-blue-primary) 0%, #1E3A8A 100%);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  color: white;
  margin-top: 3rem;
}

.faq-support-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.faq-support-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-support-contacts {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.faq-support-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-support-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.faq-support-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--corp-mustard);
  text-decoration: none;
  transition: color 0.2s ease;
}

.faq-support-link:hover {
  color: #F59E0B;
  text-decoration: underline;
}

/* ============================================
   Management Page Styles
   ============================================ */

/* Management Page Styles */
.management-page-content {
  padding: var(--spacing-2xl) 0;
  background: #ffffff;
}

.management-page-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Section Title */
.management-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 2rem 0;
  line-height: 1.2;
}

/* Carousel Wrapper */
.management-carousel-wrapper {
  margin-bottom: 3rem;
}

.management-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Carousel Navigation Buttons */
.management-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--corp-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--corp-blue-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.management-carousel-nav:hover {
  background: var(--corp-gray-100);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.management-carousel-nav-prev {
  left: -20px;
}

.management-carousel-nav-next {
  right: -20px;
}

/* Carousel Track */
.management-carousel-track {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  min-height: 200px;
}

/* Member Card Button (Mini) */
.management-member-card-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.management-member-card-btn.hidden {
  display: none;
}

.management-member-card-btn.visible {
  display: block;
}

.management-member-card-mini {
  width: 180px;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--corp-gray-50);
  border: 1px solid var(--corp-gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.management-member-card-btn.active .management-member-card-mini,
.management-member-card-btn:hover .management-member-card-mini {
  background: white;
  border-color: var(--corp-blue-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.management-member-card-btn.active .management-member-card-mini {
  border-width: 2px;
}

/* Mini Photo */
.member-mini-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.member-mini-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-mini-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--corp-gray-200);
  color: var(--corp-gray-400);
}

/* Mini Info */
.member-mini-info {
  text-align: center;
}

.member-mini-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--corp-gray-900);
  margin: 0 0 0.25rem 0;
}

.member-mini-position {
  font-size: 0.75rem;
  color: var(--corp-gray-600);
  margin: 0;
}

/* Detail Card */
.management-detail-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}

.management-detail-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
}

/* Left Column */
.management-detail-left {
  background: var(--corp-blue-primary);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  min-height: 100%;
}

.member-detail-photo-wrapper {
  margin-bottom: 1.5rem;
}

.member-detail-photo {
  width: 224px;
  height: 288px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: block;
}

.member-detail-photo-placeholder {
  width: 224px;
  height: 288px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.member-detail-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.member-detail-position-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.member-detail-position-badge svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Right Column */
.management-detail-right {
  padding: 2rem;
}

.member-detail-section {
  margin-bottom: 2rem;
}

.member-detail-section:last-child {
  margin-bottom: 0;
}

.member-detail-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.member-detail-icon {
  color: var(--corp-mustard);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Education List */
.member-detail-education-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-detail-education-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--corp-gray-700);
  line-height: 1.6;
}

.member-detail-education-list li:last-child {
  margin-bottom: 0;
}

.education-bullet {
  width: 6px;
  height: 6px;
  background: var(--corp-mustard);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* Career Timeline */
.member-detail-career-timeline {
  position: relative;
  padding-left: 2rem;
}

.career-timeline-line {
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--corp-mustard), transparent);
}

.career-timeline-items {
  position: relative;
}

.career-timeline-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.career-timeline-item:last-child {
  margin-bottom: 0;
}

.career-timeline-dot {
  position: absolute;
  left: -1.75rem;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  background: var(--corp-mustard);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.career-timeline-content {
  background: var(--corp-gray-50);
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.2s ease;
}

.career-timeline-content:hover {
  background: var(--corp-gray-100);
}

.career-item-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.career-period {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--corp-mustard);
  margin-bottom: 0.25rem;
}

.career-position {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--corp-gray-900);
  margin: 0;
  line-height: 1.4;
}

.career-company {
  font-size: 0.75rem;
  color: var(--corp-gray-600);
  margin: 0;
  line-height: 1.5;
}

/* Navigation */
.management-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.management-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: var(--corp-blue-primary);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 0.5rem;
}

.management-nav-btn:hover {
  background: var(--corp-gray-100);
  color: var(--corp-blue-dark);
}

.management-nav-counter {
  font-size: 0.875rem;
  color: var(--corp-gray-600);
}

.management-current-index {
  font-weight: 600;
  color: var(--corp-gray-900);
}

/* Dot Indicators */
.management-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.management-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--corp-gray-300);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.management-dot:hover {
  background: var(--corp-gray-400);
}

.management-dot.active {
  width: 24px;
  background: var(--corp-blue-primary);
  border-radius: 4px;
}

/* No Members Message */
.management-no-members {
  text-align: center;
  padding: 3rem;
  color: var(--corp-gray-600);
  font-size: 1.125rem;
}

/* Empty State */
.member-detail-empty {
  font-size: 0.875rem;
  color: var(--corp-gray-500);
  font-style: italic;
  margin: 0;
  padding: 0.5rem 0;
}

/* ========================================
   History Page Styles
   ======================================== */

.history-page-content {
  padding: 3rem 0 4rem;
  background-color: #fff;
}

.history-page-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Timeline Section */
.history-timeline {
  max-width: 900px;
  margin: 0 auto 4rem;
  position: relative;
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-line {
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--corp-blue-primary);
  z-index: 1;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--corp-mustard);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.timeline-marker-inner {
  width: 0.75rem;
  height: 0.75rem;
  background: #fff;
  border-radius: 50%;
}

.timeline-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

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

.timeline-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corp-mustard);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.timeline-description {
  font-size: 1rem;
  color: var(--corp-gray-700);
  line-height: 1.6;
  margin: 0;
}

/* Achievements Section */
.history-achievements {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(to right, var(--corp-blue-primary), var(--corp-blue-dark));
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
}

.achievements-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2rem 0;
  line-height: 1.2;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.achievement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.achievement-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0;
}

.achievement-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin: 0;
}

/* ========================================
   Board of Directors Page Styles
   ======================================== */

.board-page-content {
  padding: 3rem 0 4rem;
  background-color: #fff;
}

.board-page-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* About Main Page Content */
.about-main-page-content {
  padding: 3rem 0 4rem;
  background-color: #fff;
}

.about-main-page-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Mission & Vision Section */
.mission-vision-section {
  margin-bottom: 4rem;
}

.mission-vision-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.mission-card,
.vision-card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.mission-card {
  border-left: 4px solid var(--corp-gold);
}

.vision-card {
  border-left: 4px solid var(--corp-blue-primary);
}

.mission-icon,
.vision-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--corp-gold);
}

.vision-icon {
  color: var(--corp-blue-primary);
}

.mission-title,
.vision-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 1rem 0;
}

.mission-text,
.vision-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--corp-gray-700);
  margin: 0;
}

/* Section Title */
.section-title {
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--corp-gray-900);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  text-align: left;
}

/* Activities Section */
.activities-section {
  margin-bottom: 4rem;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.activity-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.activity-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  color: var(--corp-blue-primary);
}

.activity-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 1rem 0;
}

.activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.activity-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--corp-gray-700);
}

.activity-list li::before {
  content: '•';
  color: var(--corp-gold);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Services Section */
.services-section {
  margin-bottom: 4rem;
  margin-top: -29px;
}

.services-section .section-title {
  margin-bottom: 0;
}

.about-main-page-content .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-main-page-content .service-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: none;
}

.about-main-page-content .service-card:hover {
  transform: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.about-main-page-content .service-card:hover .service-title {
  color: var(--corp-gray-900) !important;
}

.about-main-page-content .service-card:hover .service-list li {
  color: var(--corp-gray-700) !important;
}

.about-main-page-content .service-card:hover .service-list li::before {
  color: var(--corp-gold) !important;
}

.about-main-page-content .service-card .service-icon {
  width: 32px !important;
  height: 32px !important;
  margin-bottom: 1rem;
  color: #1e3a8a !important;
  display: block !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  flex: none !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  position: static !important;
  overflow: visible !important;
  transition: none !important;
}

.about-main-page-content .service-card .service-icon svg {
  width: 32px !important;
  height: 32px !important;
  stroke: #1e3a8a !important;
  stroke-width: 1.5 !important;
  fill: none !important;
  color: #1e3a8a !important;
  z-index: auto !important;
  position: static !important;
  transform: none !important;
  transition: none !important;
}

.about-main-page-content .service-card:hover .service-icon {
  transform: none !important;
  box-shadow: none !important;
}

.about-main-page-content .service-card:hover .service-icon svg {
  transform: none !important;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 1rem 0;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--corp-gray-700);
}

.service-list li::before {
  content: '•';
  color: var(--corp-gold);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Structure Section */
.structure-section {
  margin-bottom: 4rem;
  margin-top: -80px;
}

.company-structure-card {
  background: linear-gradient(to right, var(--corp-blue-primary), var(--corp-blue-dark));
  border-radius: 0.5rem;
  padding: 2rem;
  color: white;
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.2);
}

.structure-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  color: white;
}

.structure-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.structure-subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: white;
}

.structure-branches-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.structure-branches-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
}

.structure-branches-list li::before {
  content: '• ';
}

.structure-subsidiary-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: white;
}

.structure-subsidiary-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Values Section */
.values-section {
  margin-bottom: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--corp-blue-primary);
}

.value-card:nth-child(1) .value-icon {
  color: var(--corp-gold);
}

.value-card:nth-child(2) .value-icon {
  color: var(--corp-blue-primary);
}

.value-card:nth-child(3) .value-icon {
  color: #10B981;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--corp-gray-900);
  margin: 0 0 0.75rem 0;
}

.value-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--corp-gray-600);
  margin: 0;
}

/* Learn More Section */
.learn-more-section {
  margin-bottom: 0;
  background: var(--corp-gray-50);
  border-radius: 1rem;
  padding: 2rem;
}

.learn-more-section .section-title {
  margin-bottom: 1.5rem;
}

.learn-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.learn-more-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease;
  display: block;
}

.learn-more-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.learn-more-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.learn-more-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--corp-blue-primary);
  margin: 0 0 0.5rem 0;
}

.learn-more-arrow {
  color: var(--corp-blue-primary);
  flex-shrink: 0;
}

.learn-more-card-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--corp-gray-600);
  margin: 0;
}

/* About Board Block */
.board-about-block {
  max-width: 900px;
  margin: 0 auto 4rem;
  background: linear-gradient(to right, var(--corp-blue-primary), #60A5FA);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.board-about-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.board-about-content {
  flex: 1;
}

.board-about-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.board-about-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0;
}

/* Board Members Grid */
.board-members {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.board-member-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--corp-gray-200);
  overflow: hidden;
  transition: all 0.3s ease;
}

.board-member-card:hover {
  border-color: #60A5FA;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Member Header */
.board-member-header {
  background: linear-gradient(to right, var(--corp-blue-primary), #60A5FA);
  padding: 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}

.board-member-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
  z-index: 0;
}

.board-member-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.board-member-header-content {
  flex: 1;
}

.board-member-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.board-member-position {
  font-size: 1rem;
  font-weight: 500;
  color: var(--corp-yellow-soft);
  margin: 0;
  line-height: 1.4;
}

/* Member Content */
.board-member-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.board-member-bio,
.board-member-education {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.board-member-section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.board-member-section-icon {
  color: var(--corp-mustard);
  flex-shrink: 0;
}

.board-member-section-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--corp-gray-600);
}

.board-member-section-text {
  font-size: 0.875rem;
  color: var(--corp-gray-700);
  line-height: 1.6;
  margin: 0;
}

.board-member-education {
  padding-top: 1rem;
  border-top: 1px solid var(--corp-gray-200);
}

/* Competencies Block */
.board-competencies {
  max-width: 900px;
  margin: 0 auto;
  background: var(--corp-gray-50);
  border-radius: 1rem;
  padding: 2rem;
  border-left: 4px solid var(--corp-mustard);
}

.board-competencies-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--corp-blue-primary);
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.board-competencies-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.board-competency-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.board-competency-bullet {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--corp-mustard);
  border-radius: 50%;
  margin-top: 0.5rem;
}

.board-competency-text {
  font-size: 1rem;
  color: var(--corp-gray-700);
  line-height: 1.6;
  flex: 1;
}