<?
require($_SERVER["DOCUMENT_ROOT"]."/bitrix/header.php");
$APPLICATION->SetTitle("inggu_new_era");
?>    <style>
    /* ==========================================================================
       CSS VARIABLES & GLOBAL SETTINGS
       ========================================================================== */
    :root {
      --bg: #ffffff;
      --text: #1f2a37;
      --muted: #6b7280;
      --line: #dfe3ea;
      --hero-bg: #0a1f38;
      --accent: #1e3c72;
      --card: #f7f9fc;
      --shadow: 0 10px 30px rgba(16,24,40,.08);
      --shadow2: 0 18px 40px rgba(16,24,40,.14);
      --max: 1320px;
      /* Typography Fluid Scaling */
      --h1-size: clamp(32px, 5vw + 1rem, 64px);
      --h2-size: clamp(24px, 4vw + 1rem, 36px);
      --lead-size: clamp(15px, 2vw + 0.5rem, 18px);
      --section-pad: clamp(40px, 8vw, 80px);
    }

    * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
    html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, sans-serif;
      color: var(--text);
      background: #f9fbfd;
      -webkit-font-smoothing: antialiased;
      line-height: 1.5;
      overflow-x: hidden;
      width: 100%;
    }
    img { display: block; max-width: 100%; height: auto; object-fit: cover; }
    a { text-decoration: none; color: inherit; transition: opacity 0.2s ease, color 0.2s ease; }
    button { font: inherit; cursor: pointer; border: none; transition: all 0.2s ease; background: transparent; outline: none; }
    
    .page { width: 100%; background: #fff; display: flex; flex-direction: column; }
    .container { width: min(var(--max), 100%); margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); }

    /* ==========================================================================
       HEADER & TOP STRIP
       ========================================================================== */
    .top-strip {
      background: #061424; /* Solid background for mobile reliability */
      width: 100%;
      padding: 8px 24px;
      display: flex; justify-content: flex-end; gap: 24px;
      font-size: 12px; color: rgba(255,255,255,.7);
      z-index: 20; position: relative;
    }
    .top-strip a:hover { color: #fff; }

    .hero {
      position: relative;
      min-height: auto;
      display: flex; flex-direction: column;
      color: #fff;
      background: var(--hero-bg);
      padding-bottom: clamp(40px, 8vw, 80px);
    }
    .hero::before {
	  content: ""; position: absolute; inset: 0;
	  background: linear-gradient(90deg, rgba(10,31,56,.95) 0%, rgba(10,31,56,.85) 50%, rgba(10,31,56,.4) 100%),
				  url("http://albakoff.ru/razrabotka/inggu/fasad.jpg") center/cover no-repeat;
	  z-index: 0;
	}
    .hero-inner {
      position: relative; z-index: 2; flex: 1;
      display: flex; flex-direction: column;
    }
    
    .header {
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 24px 0;
      flex-wrap: wrap;
    }
    .brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; z-index: 10; }
    .brand-mark { width: auto; height: clamp(50px, 8vw, 70px); object-fit: contain; }
    .brand-text { font-size: clamp(10px, 2vw, 14px); line-height: 1.15; font-weight: 600; text-transform: uppercase; }
    
    .nav { display: flex; gap: clamp(16px, 2vw, 28px); font-size: 14px; font-weight: 500; color: #fff; flex-wrap: wrap; }
    .nav a:hover { opacity: 0.8; }
    
    .actions { display: flex; align-items: center; gap: 12px; z-index: 10; }
    .icon-btn {
      width: clamp(36px, 5vw, 44px); height: clamp(36px, 5vw, 44px); border-radius: 10px; background: rgba(255,255,255,.1);
      color: #fff; display: grid; place-items: center; backdrop-filter: blur(5px);
    }
    .icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
    .cabinet {
      height: clamp(36px, 5vw, 44px); padding: 0 clamp(12px, 2vw, 20px); border-radius: 10px;
      background: rgba(255,255,255,.15); color: #fff; font-size: 14px; font-weight: 500;
      display: flex; align-items: center; gap: 10px; backdrop-filter: blur(5px);
    }
    .cabinet svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
    .burger-menu { display: none; }

    /* ==========================================================================
       HERO CONTENT
       ========================================================================== */
    .hero-main { margin-top: clamp(40px, 8vw, 80px); display: flex; flex-direction: column; }
    h1 {
      margin: 0 0 24px; font-size: var(--h1-size); line-height: 1.1; font-weight: 600; letter-spacing: -0.02em; max-width: 700px;
    }
    .lead {
      margin: 0 0 40px; font-size: var(--lead-size); line-height: 1.5; color: rgba(255,255,255,.85); max-width: 540px;
    }
    
    .hero-cta { display: flex; gap: 16px; margin-bottom: clamp(40px, 8vw, 80px); flex-wrap: wrap; }
    .btn {
      height: 50px; padding: 0 32px; border-radius: 8px; font-size: 15px; font-weight: 600;
      display: inline-flex; align-items: center; justify-content: center; text-align: center;
    }
    .btn-primary { background: #fff; color: #0a1f38; }
    .btn-secondary { background: rgba(255,255,255,.05); color: #fff; border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(4px); }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }

    .hero-stats {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px;
      border-top: 1px solid rgba(255,255,255,.15); padding-top: 32px; align-items: center;
    }
    .stat { display: flex; align-items: center; gap: 16px; }
    .stat-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); flex-shrink: 0; background: rgba(255,255,255,.05); }
    .stat-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.5; }
    .stat-text strong { display: block; font-size: clamp(18px, 2.5vw, 20px); font-weight: 600; line-height: 1.1; }
    .stat-text span { display: block; font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; line-height: 1.2; }
    
    .watch { display: flex; align-items: center; gap: 16px; margin-left: auto; justify-self: end; }
    .watch .play {
      width: 50px; height: 50px; border-radius: 50%; background: #fff; color: #0a1f38;
      display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 4px 15px rgba(0,0,0,.2);
    }
    .watch .play svg { width: 16px; height: 16px; fill: currentColor; margin-left: 3px; }
    .watch span { font-size: 14px; font-weight: 500; line-height: 1.3; }

    /* ==========================================================================
       SECTIONS COMMON
       ========================================================================== */
    .section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
    .section-head {
      display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: clamp(24px, 5vw, 40px); gap: 16px; flex-wrap: wrap;
    }
    .section h2 { margin: 0; font-size: var(--h2-size); font-weight: 600; color: #111827; letter-spacing: -0.01em; line-height: 1.2; }
    .link-all {
      display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: #0a1f38; white-space: nowrap;
    }
    .link-all svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }


/* ==========================================================================
   ФАКУЛЬТЕТЫ (FLEX-СЕТКА БЕЗ ПУСТОТ)
   ========================================================================== */
.faculties-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
}

.faculty-card {
  /* Ключевая магия: карточка занимает минимум 30%, но если есть место — растягивается (flex-grow: 1) */
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px; /* На телефонах места не хватит, и карточка займет всю ширину */
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.faculty-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.faculty-card h3 {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
}

.faculty-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30, 60, 114, 0.05); /* Легкий оттенок синего акцента */
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faculty-icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faculty-card:hover .faculty-icon {
  background: var(--accent);
  color: #ffffff;
}

.faculty-card:hover .faculty-icon svg {
  transform: translateX(2px); /* Легкая анимация стрелки при наведении */
}
 

    /* ==========================================================================
       WHY US (Dark Section)
       ========================================================================== */
    .why-section { background: #0a1a2f; color: #fff; padding: var(--section-pad) 0; }
    .why-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: stretch; }
    .why-section h2 { color: #fff; margin-bottom: clamp(32px, 5vw, 48px); }
    
    .features { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 40px) 32px; align-content: start; }
    .feature { display: flex; gap: 16px; align-items: flex-start; }
    .feature .ico {
      width: 48px; height: 48px; border-radius: 12px; border: 1px solid rgba(255,255,255,.2);
      display: grid; place-items: center; flex-shrink: 0; background: rgba(255,255,255,.03);
    }
    .feature .ico svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.5; }
    .feature-text h3 { margin: 0 0 8px; font-size: 16px; font-weight: 600; line-height: 1.3; }
    .feature-text p { margin: 0; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.7); }

    .why-card { 
      position: relative; 
      border-radius: 24px; 
      overflow: hidden; 
      display: flex; 
      flex-direction: column; 
      justify-content: flex-end; 
      /* ИСПРАВЛЕНИЕ: изолируем контекст наложения, возвращая картинку на место */
      isolation: isolate; 
    }
    
    .why-card::after {
      content: ""; position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.8) 100%);
      z-index: 1; /* Градиент ложится поверх картинки */
    }
    
    .why-card img { 
      position: absolute; 
      inset: 0; 
      width: 100%; 
      height: 100%; 
      object-fit: cover; 
      z-index: 0; /* Картинка на базовом слое внутри карточки */
    }
    
    .why-card-copy { 
      position: relative; 
      padding: clamp(24px, 4vw, 40px); 
      z-index: 2; /* Текст гарантированно на самом верхнем слое */
      width: 100%; 
    }
    .btn-white {
      background: #fff; color: #0a1f38; height: 44px; padding: 0 24px; border-radius: 8px; font-weight: 600; font-size: 14px;
      display: inline-flex; align-items: center; justify-content: center;
    }

    /* ==========================================================================
   БЕСШОВНАЯ АВТОМАТИЧЕСКАЯ ЛЕНТА ПАРТНЕРОВ (MARQUEE) - ИСПРАВЛЕННАЯ
   ========================================================================== */
.partners-section {
  padding: clamp(24px, 4vw, 32px) 0; /* Немного уменьшили, так как добавили отступ ниже */
  background: transparent;
  overflow: hidden;
  width: 100%;
}

.partners-carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  user-select: none;
  /* ИСПРАВЛЕНИЕ: Добавили запас сверху и снизу, чтобы карточки и их тени не срезались при всплытии */
  padding: 12px 0; 
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}

/* Стилизация одинаковой ячейки для всех логотипов */
.carousel-card {
  flex: 0 0 220px;
  height: 100px;
  background: #f5f7fb; /* ИСПРАВЛЕНО: новый мягкий фон по умолчанию */
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Эффект при наведении */
.carousel-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px); /* Слегка увеличили амплитуду для плавности */
  box-shadow: var(--shadow);
  background: #ffffff; /* Дизайнерский трюк: при наведении карточка становится чисто белой и "подсвечивается" на фоне #f5f7fb */
}

/* Стилизация самих логотипов внутри ячеек */
.carousel-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0%); /* ИСПРАВЛЕНО: логотипы сразу в цвете */
  opacity: 1;            /* ИСПРАВЛЕНО: сразу полная яркость */
  transition: all 0.3s ease;
}

/* Анимация бесшовного сдвига */
@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

    /* ==========================================================================
       FOOTER
       ========================================================================== */
    .footer { background: #071628; color: #fff; padding: var(--section-pad) 0 clamp(24px, 4vw, 30px); font-size: 14px; }
    .footer-inner { display: grid; grid-template-columns: 2fr repeat(3, 1fr) 1.5fr; gap: clamp(32px, 4vw, 40px); margin-bottom: clamp(40px, 6vw, 60px); }
    .footer-brand .brand-mark { width: 40px; height: 40px; stroke: #fff; fill: none; stroke-width: 1.5; }
    .footer-desc { color: rgba(255,255,255,.6); margin: 24px 0; max-width: 280px; line-height: 1.6; }
    .socials { display: flex; gap: 12px; flex-wrap: wrap; }
    .social { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; transition: background 0.2s; }
    .social:hover { background: rgba(255,255,255,.2); }
    .social svg { width: 18px; height: 18px; fill: #fff; }
    
    .footer h4 { font-size: 16px; font-weight: 600; margin: 0 0 20px; }
    .footer-list { display: flex; flex-direction: column; gap: 12px; color: rgba(255,255,255,.7); }
    .footer-list a { padding: 4px 0; display: inline-block; }
    .footer-list a:hover { color: #fff; transform: translateX(4px); }
    
    .contact-item { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.8); margin-bottom: 16px; line-height: 1.5; }
    .contact-item svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
    .btn-dark {
      width: 100%; height: 48px; border-radius: 8px; background: #233246; color: #fff; font-weight: 500; margin-top: 12px; display: flex; align-items: center; justify-content: center;
    }
    .btn-dark:hover { background: #2f425c; }
    
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
      display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: 13px; flex-wrap: wrap; gap: 16px;
    }
    .footer-bottom a:hover { color: #fff; }

    /* ==========================================================================
       MEDIA QUERIES (RESPONSIVE ADAPTATIONS)
       ========================================================================== */

    /* Tablet Landscape / Small Desktops */
    @media (max-width: 1200px) {
      .directions { grid-template-columns: repeat(4, 1fr); }
      .dir-card:last-child { display: none; } /* Hide 5th card to maintain grid balance */
      .why-inner { grid-template-columns: 1fr; }
      .why-card { min-height: 400px; }
      .news-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
      .footer-inner > div:nth-child(4), .footer-inner > div:nth-child(5) { grid-column: span 1; }
    }

    /* Tablet Portrait */
    @media (max-width: 992px) {
	  /* Скрываем верхнюю строчку уже с планшетов */
	  .top-strip { display: none; } 
	  .header { position: relative; }
	  
	  /* Делаем из обычного меню выпадающее */
	  .nav { 
		display: flex; 
		flex-direction: column; 
		position: absolute; 
		top: 100%; 
		left: 0; 
		right: 0; 
		background: #0a1f38; 
		padding: 24px; 
		gap: 16px; 
		box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
		border-radius: 12px;
		opacity: 0; 
		pointer-events: none; 
		transform: translateY(-10px); 
		transition: all 0.3s ease; 
		z-index: 100;
	  }
	  .nav.active { 
		opacity: 1; 
		pointer-events: all; 
		transform: translateY(0); 
	  }
	  
	  .burger-menu {
		display: grid; width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.1);
		color: #fff; place-items: center; margin-left: 8px; border: 1px solid rgba(255,255,255,.2);
	  }
	  .burger-menu svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
	  .cabinet span { display: none; }
	  
	  .directions { grid-template-columns: repeat(3, 1fr); }
	  .dir-card:nth-child(4) { display: none; }
	  
	  .partners-row { flex-direction: column; align-items: stretch; gap: 24px; text-align: center; }
	  .partners h2 { margin-bottom: 8px; text-align: center; }
	  .partners-inner-wrap { justify-content: center; }
	  .partners-logos { flex-wrap: wrap; justify-content: center; gap: 24px 32px; }
	  
	  .footer-inner { grid-template-columns: 1fr 1fr; }
	  .footer-inner > div:first-child { grid-column: 1 / -1; margin-bottom: 24px; }
	}

    /* Mobile Devices */
    @media (max-width: 768px) {
      .top-strip { display: none; } /* Reclaim vertical space on small screens */
      .header { padding: 16px 0; }
      
      .hero-cta { flex-direction: column; gap: 12px; }
      .btn { width: 100%; height: 54px; } /* Larger touch target */
      .stat-icon { width: 56px; height: 56px; } /* Slightly larger icons for emphasis on mobile */
	  
	  /* Горизонтальный скролл для статистики (исправленное выравнивание) */
	  .hero-stats { 
		display: flex; 
		flex-wrap: nowrap; 
		overflow-x: auto; 
		scroll-snap-type: x mandatory; 
		gap: 16px; 
		border-top: none; 
		padding: 16px 0 8px 0; 
		-webkit-overflow-scrolling: touch; 
		/* Возвращаем блок в границы контейнера для ровного выравнивания */
		margin: 0; 
		width: 100%; 
	  }
	  .hero-stats::-webkit-scrollbar { display: none; }
	  
	  /* Плашки-карточки */
	  .stat, .watch { 
		/* Меняем на auto: теперь блок будет ровно по ширине контента */
		flex: 0 0 auto; 
		scroll-snap-align: start; 
		background: rgba(255,255,255,.08); 
		/* Делаем отступы более вытянутыми по горизонтали для красоты */
		padding: 12px 20px; 
		border-radius: 12px; 
		border: 1px solid rgba(255,255,255,.15);
		margin: 0;
	  }
	  .stat-icon { width: 44px; height: 44px; flex-shrink: 0; }
	  .watch { width: auto; justify-self: unset; flex-direction: row; align-items: center; }
		
	/* Поиск в столбик на мобильных */
	  .search-form { 
		flex-direction: column; 
	  }
		
      .directions-wrap {
        margin: 0 calc(clamp(16px, 4vw, 24px) * -1); 
        padding: 0 clamp(16px, 4vw, 24px);
        width: 100vw;
      }
      .directions {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory; 
        gap: 16px; padding-bottom: 32px; scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
      }
      .directions::-webkit-scrollbar { display: none; } /* Hide scrollbar for clean UI */
      .dir-card { flex: 0 0 calc(100vw - 64px); scroll-snap-align: center; display: block; }
      .dir-card:last-child { margin-right: 24px; display: block; } /* Show all cards in scroll */
      .dir-card:nth-child(4) { display: block; }
      .nav-arrow { display: none; } /* Hide physical arrows, rely on swipe */
      
      .features { grid-template-columns: 1fr; gap: 32px; }
      .why-card { min-height: 320px; border-radius: 16px; }
      
      .news-grid { grid-template-columns: 1fr; }
      .carousel-card { flex: 0 0 160px; height: 80px; padding: 12px 16px;}
	  
      .footer-inner { grid-template-columns: 1fr; gap: 40px; }
      .footer-inner > div { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
    }

    /* Small Mobile Specific */
    @media (max-width: 480px) {
      .brand-mark { width: 32px; height: 32px; }
      .brand-text { font-size: 11px; }
      h1 { font-size: 36px; }
      
      .dir-card { flex: 0 0 85vw; scroll-snap-align: start; }
      .partners-logos { grid-template-columns: repeat(2, 1fr); display: grid; place-items: center; gap: 24px; }
      .partners-nav { display: none; }
    }
	/* Общие стили для модальных окон */
	.modal-overlay {
	  position: fixed;
	  inset: 0;
	  background: rgba(6, 20, 36, 0.8);
	  backdrop-filter: blur(8px);
	  -webkit-backdrop-filter: blur(8px);
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  z-index: 1000;
	  opacity: 0;
	  pointer-events: none;
	  transition: opacity 0.3s ease;
	}
	.modal-overlay.active {
	  opacity: 1;
	  pointer-events: all;
	}
	.modal-content {
	  background: #fff;
	  padding: 40px;
	  border-radius: 16px;
	  position: relative;
	  width: min(90%, 800px);
	  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
	  transform: translateY(-30px);
	  transition: transform 0.3s ease;
	}
	.modal-overlay.active .modal-content {
	  transform: translateY(0);
	}
	.modal-close {
	  position: absolute;
	  top: 12px;
	  right: 16px;
	  font-size: 36px;
	  background: none;
	  border: none;
	  color: #1f2a37;
	  cursor: pointer;
	  line-height: 1;
	}
	.modal-close:hover {
	  color: #ef4444;
	}

	/* Специфика для поиска */
	.search-content {
	  width: min(90%, 600px);
	  padding: 50px 30px 30px;
	}
	.search-form {
	  display: flex;
	  gap: 12px;
	}
	.search-form input {
	  flex: 1;
	  padding: 14px 20px;
	  border: 1px solid #dfe3ea;
	  border-radius: 8px;
	  font-size: 16px;
	  outline: none;
	}
	.search-form input:focus {
	  border-color: #1e3c72;
	}

	/* Специфика для видео */
	.video-content {
	  padding: 0;
	  background: #000;
	  overflow: hidden;
	  aspect-ratio: 16/9;
	}
	.video-content .modal-close {
	  color: #fff;
	  top: 10px;
	  right: 15px;
	  z-index: 10;
	  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
	}
	.video-wrapper {
	  width: 100%;
	  height: 100%;
	}
	
	/* ==========================================================================
   UI/UX БЛОК: СЛОВО РЕКТОРА (EDITORIAL DESIGN)
   ========================================================================== */
.rv-wrapper {
  display: flex;
  background: #0a1f38; /* Глубокий премиальный синий цвет */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(10, 31, 56, 0.2);
  position: relative;
  margin-top: 32px;
}

/* Асимметричная сетка: Картинка занимает 40% и вытянута на всю высоту */
.rv-image {
  flex: 0 0 40%;
  position: relative;
  min-height: 100%; 
}
.rv-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%; /* Смещаем фокус на лицо */
}

/* Текстовый блок занимает 60% */
.rv-content {
  flex: 1;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 64px);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Декоративный световой блик на фоне текста */
.rv-content::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Строгий бейдж с линией */
.rv-badge {
  display: inline-table;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  position: relative;
  padding-left: 48px;
}
.rv-badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}


/* Дизайнерский акцент на слове */
.rv-highlight {
  color: #60a5fa; /* Светло-голубой контрастный цвет */
  font-style: italic;
  font-weight: 400;
}


.rv-quote p {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Усиливаем приоритет, чтобы глобальные стили не перекрашивали текст в черный */
.rv-wrapper .rv-title {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: #ffffff !important; 
  margin: 0 0 40px 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Дизайнерский акцент на слове */
.rv-highlight {
  color: #60a5fa;
  font-style: italic;
  font-weight: 400;
}

.rv-quote {
  position: relative;
  margin-bottom: 48px;
}

/* Стили для векторной кавычки */
.rv-quote-icon {
  position: absolute;
  top: -24px;
  left: -20px;
  width: 80px;
  height: 80px;
  fill: rgba(255, 255, 255, 0.06); /* Бледная белая тень на фоне */
  z-index: 1;
  pointer-events: none;
}

.rv-quote p {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Блок с подписью отделен тонкой линией */
.rv-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 24px;
}

.rv-author {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rv-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.rv-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
  line-height: 1.5;
}

/* Стилизация под рукописный текст */
.rv-signature {
  font-family: 'Brush Script MT', 'Caveat', cursive, serif;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.3);
  transform: rotate(-5deg);
  user-select: none;
}

/* Адаптивность для планшетов и телефонов (Блок Ректора) */
@media (max-width: 992px) {
  .rv-wrapper {
    flex-direction: column;
    margin: 32px 0 0 0; 
  }
  .rv-image {
	flex: none;
	width: 100%;
    min-height: 420px;
  }
  .rv-content {
    padding: 48px 40px;
  }
  .rv-title {
    margin: 0 0 32px 0;
  }
}

@media (max-width: 768px) {
  .rv-wrapper {
    margin: 32px 0 0 0;
    border-radius: 16px;
  }
  .rv-image {
    min-height: 340px; 
  }
  .rv-content {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .rv-wrapper {
    margin: 32px 0 0 0;
  }
  .rv-image {
    min-height: 280px; 
  }
  .rv-content {
    padding: 32px 20px;
  }
  .rv-quote-icon {
    width: 60px;
    height: 60px;
    top: -16px;
    left: -12px;
  }
  .rv-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 24px;
  }
  .rv-signature {
    display: none;
  }
}
/* ==========================================================================
   UI/UX АРХИТЕКТУРА: BENTO GRID НОВОСТИ
   ========================================================================== */

/* Контейнер и типографика заголовка */
.news-bento-section {
  padding-top: clamp(60px, 10vw, 120px);
  padding-bottom: clamp(60px, 10vw, 100px);
}
.bento-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.bento-section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
.bento-link-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(30, 60, 114, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-link-all:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}
.bento-link-all svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s ease;
}
.bento-link-all:hover svg {
  transform: translateX(4px);
}

/* Сетка Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: clamp(16px, 2vw, 24px);
}

/* Базовая стилизация карточки */
.bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  background: #000; /* Резервный фон */
  isolation: isolate;
  transform: translateZ(0); /* Hardware acceleration */
}

/* Изображения и эффекты наведения */
.bento-img-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bento-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bento-card:hover .bento-img-wrapper img {
  transform: scale(1.06);
}

/* Сложные градиенты для читаемости текста */
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 31, 56, 0) 0%,
    rgba(10, 31, 56, 0.2) 40%,
    rgba(10, 31, 56, 0.85) 90%,
    rgba(10, 31, 56, 0.95) 100%
  );
  transition: opacity 0.4s ease;
}
.bento-card:hover .bento-overlay {
  opacity: 0.9;
}

/* Контентный блок карточек */
.bento-content { position: relative; z-index: 2; padding: clamp(20px, 3vw, 32px); width: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;}

/* Теги и мета-информация */
.bento-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  width: 100%;
}
.bento-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.solid-tag {
  background: var(--accent);
  color: #fff;
}
.blur-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 0;
}
.bento-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Заголовки новостей */
.bento-title {
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  font-weight: 600;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: color 0.3s ease;
}

/* ==========================================================================
   КОНФИГУРАЦИЯ СЕТКИ (Асимметрия и иерархия)
   ========================================================================== */

/* ГЛАВНАЯ НОВОСТЬ (Крупная карточка) */
.featured-card {
  grid-column: span 2;
  grid-row: span 2;
}
.featured-card .bento-title {
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 12px;
}
.bento-excerpt {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Иконка-стрелка для главной карточки */
.bento-action {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 2;
  color: #ffffff;
  opacity: 0;
  transform: scale(0.8) translate(-10px, 10px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.featured-card:hover .bento-action {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}
.bento-action svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* СТАНДАРТНАЯ НОВОСТЬ */
.standard-card {
  grid-column: span 1;
  grid-row: span 1;
}
.standard-card .bento-title {
  font-size: clamp(16px, 1.2vw, 18px);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   АДАПТИВНОСТЬ СЕТКИ BENTO
   ========================================================================== */

/* Планшеты (Portrait & Landscape) */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-card {
    grid-column: span 2; /* Занимает весь верхний ряд */
    grid-row: span 1;
    min-height: 400px;
  }
}


/* Мобильные телефоны (Bento Grid — стабильная кроссбраузерная версия) */
@media (max-width: 640px) {
  /* 1. Резервируем место внизу секции под будущую кнопку */
  .news-bento-section {
    position: relative;
    padding-bottom: 90px; 
  }

  /* 2. Возвращаем bento-head в нормальное состояние, чтобы вернуть боковые отступы */
  .bento-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 24px; /* Отступ от заголовка до карточек */
  }

  .bento-section-title {
    margin: 0;
  }

  /* 3. Сетка новостей */
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(320px, auto); 
  }

  /* 4. Переносим кнопку вниз секции и выравниваем по сетке */
  .bento-link-all {
    position: absolute;
    bottom: 32px; /* Прижимаем к нижнему краю секции */
    /* Заставляем кнопку идеально повторять защитные боковые поля сайта */
    left: clamp(16px, 4vw, 24px);
    right: clamp(16px, 4vw, 24px);
    display: inline-flex;
    justify-content: center;
    width: auto; /* Ширина автоматически растянется от левого clamp до правого */
    box-sizing: border-box;
  }

  /* Стили карточек */
  .featured-card {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 380px;
  }
  .bento-action {
    display: none; 
  }
  .bento-content {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   ВЫПАДАЮЩИЕ МЕНЮ (DROPDOWNS)
   ========================================================================== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* Стрелочка индикатор */
.dropdown-toggle svg {
  transition: transform 0.3s ease;
}
.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 340px; /* Ширина для длинных названий */
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow2);
  padding: 12px 0;
  margin: 10px 0 0 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

/* Раскрытие при наведении */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  color: #1f2a37 !important; /* Темный текст на белом фоне */
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.4;
  white-space: normal; /* Разрешаем перенос длинного текста */
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  background: rgba(30, 60, 114, 0.05);
  color: var(--accent) !important;
}

/* Специфика для мобильного меню (раздел Наука) */
@media (max-width: 992px) {
  .nav .dropdown { display: block; width: 100%; }
  
  .nav .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2); /* Темный фон для вложенности */
    border: none;
    padding: 12px 0;
    margin: 8px 0 0 0;
    display: none; /* Скрываем в потоке по умолчанию */
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  /* На мобильных раскрываем список при наведении/нажатии */
  .nav .dropdown:hover .dropdown-menu,
  .nav .dropdown:active .dropdown-menu {
    display: block;
  }
  
  .nav .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 10px 20px 10px 32px; /* Сдвигаем вправо для визуальной иерархии */
  }
  
  .nav .dropdown-menu li a:hover {
    background: transparent;
    color: #ffffff !important;
  }
}
/* ==========================================================================
   ПЛИТКИ / БАННЕРЫ (ПОЛЕЗНЫЕ ССЫЛКИ)
   ========================================================================== */
.banner-grid-section {
  padding-bottom: var(--section-pad); /* Отступ снизу перед футером */
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.banner-grid__item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  text-align: center;
  height: 100%;
}

.banner-grid__item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.banner-grid__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.banner-grid__item:hover .banner-grid__icon {
  transform: scale(1.05); /* Легкое увеличение иконки при наведении */
}

.banner-grid__label {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  line-height: 1.4;
  color: #111827;
}

/* Адаптивность для плиток */
@media (max-width: 1200px) {
  .banner-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
  .banner-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .banner-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-grid__item { padding: 16px 12px; border-radius: 12px; }
  .banner-grid__icon { width: 48px; height: 48px; margin-bottom: 12px; }
}
/* ==========================================================================
   СОЦСЕТИ И 1С-БИТРИКС (ФУТЕР)
   ========================================================================== */
.socials-custom {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.socials-custom a {
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.socials-custom a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Ограничиваем размер картинок, чтобы они гармонично вписались в футер */
.socials-custom img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px; /* Легкое скругление, если у картинок есть фон */
}

.bx-composite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background-color: rgb(233, 69, 36);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.bx-composite-btn:hover {
  background-color: rgb(200, 55, 25);
  color: #ffffff;
}
/* ==========================================================================
   ОБНОВЛЕННЫЕ СТИЛИ ДЛЯ КОНТЕНТНОЙ СТРАНИЦЫ И САЙДБАРА
   ========================================================================== */
.page-header-inner {
  background: #0a1f38;
  color: #fff;
  padding-bottom: 8px; /* ИСПРАВЛЕНИЕ 1: Сбалансировали высоту укороченной шапки */
}
.page-header-inner .header {
  padding: 20px 0; /* Сделали саму панель чуть компактнее */
}

/* Хлебные крошки */
.breadcrumbs {
  padding-top: 24px;
  padding-bottom: 12px;
  font-size: 13px;
}
.breadcrumbs-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.breadcrumbs a {
  color: #6b7280;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--accent);
}
.breadcrumbs .separator {
  color: #9ca3af;
  user-select: none;
}
.breadcrumbs span.current {
  color: var(--text);
  font-weight: 500;
}

/* ИСПРАВЛЕНИЕ 3: Двухколоночный макет (Контент + Сайдбар) */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px; /* Основной контент занимает остаток, сайдбар — фиксированно 320px */
  gap: clamp(24px, 5vw, 48px);
  padding-top: 16px;
  padding-bottom: var(--section-pad);
}

.main-content {
  min-width: 0; /* Защита сетки от распирания большими элементами */
}

/* Элементы типографики внутри контента */
.content-area h1 { font-size: clamp(28px, 4vw, 42px); color: #111827; margin: 0 0 24px 0; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.content-area h2 { font-size: clamp(22px, 3vw, 28px); color: #1f2a37; margin: 40px 0 16px 0; font-weight: 600; line-height: 1.3; }
.content-area h3 { font-size: clamp(18px, 2.5vw, 22px); color: #374151; margin: 32px 0 12px 0; font-weight: 600; }
.content-area h4 { font-size: 18px; color: #4b5563; margin: 24px 0 12px 0; font-weight: 600; }

.content-area p { font-size: 16px; line-height: 1.6; color: #374151; margin: 0 0 20px 0; }
.content-area p strong { color: #111827; }

.text-columns { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 32px); margin-bottom: 24px; }

.content-image-box { margin: 32px 0; }
.content-image-box img { width: 100%; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.content-image-caption { font-size: 14px; color: var(--muted); margin-top: 12px; text-align: center; font-style: italic; }

.content-quote { margin: 32px 0; padding: 24px 32px; background: rgba(30, 60, 114, 0.03); border-left: 4px solid var(--accent); border-radius: 0 16px 16px 0; }
.content-quote p { font-size: 18px; font-style: italic; color: #1f2a37; line-height: 1.5; margin-bottom: 12px; }
.content-quote cite { font-size: 14px; font-weight: 600; color: var(--muted); font-style: normal; display: block; }

.content-area ul, .content-area ol { margin: 0 0 24px 0; padding-left: 24px; }
.content-area li { font-size: 16px; line-height: 1.6; color: #374151; margin-bottom: 8px; }
.content-area ul li { list-style-type: none; position: relative; }
.content-area ul li::before { content: ""; position: absolute; left: -18px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background-color: var(--accent); }

/* СТИЛИЗАЦИЯ САЙДБАРА И ЕГО ВИДЖЕТОВ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sidebar-widget {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.02);
}
.sidebar-widget__title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-links li {
  margin-bottom: 12px;
}
.sidebar-links li:last-child {
  margin-bottom: 0;
}
.sidebar-links a {
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
  display: inline-block;
}
.sidebar-links a:hover {
  color: var(--accent);
}

/* АДАПТИВНОСТЬ ДЛЯ ДВУХ КОЛОНОК */
@media (max-width: 992px) {
  .content-layout {
    grid-template-columns: 1fr; /* На планшетах и мобильных сайдбар падает вниз под контент */
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .text-columns { grid-template-columns: 1fr; gap: 0; }
}
  </style><?require($_SERVER["DOCUMENT_ROOT"]."/bitrix/footer.php");?>