

/* Start:/local/templates/tomsk/css/tokens.css?1782193724753*/
/* ============================================================
   Tokens — CSS custom properties
   ============================================================ */

:root {
  --primary:        #1B5C2A;
  --primary-dark:   #134520;
  --accent:         #50C128;
  --accent-hover:   #2A8B3A;
  --accent-light:   #E8F5EC;
  --text:           #1A1A1A;
  --text-muted:     #6B7280;
  --text-light:     #9CA3AF;
  --border:         #E2E8E0;
  --white:          #FFFFFF;
  --body-background:#F8F8F8;
  --light-bg:       #F7FAF7;
  --shadow:         0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:      0 8px 32px rgba(0,0,0,.12);
  --container:      1272px;
  --radius:         8px;
  --radius-lg:      16px;
  --section-py:     80px;
  --section-py-sm:  48px;
}

/* End */


/* Start:/local/templates/tomsk/css/base.css?17853051263685*/
/* ============================================================
   Base — reset, layout, typography, shared buttons
   ============================================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--body-background);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Layout */
.site-main {
  flex: 1 0 auto;
}

.container,
.page-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.page-container--spaced {
  padding-top: 40px;
  padding-bottom: 60px;
}

.container-without-paddings.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 0;
}

.content-container {
  width: 100%;
  min-width: 0;
}

.content-container--flush {
  width: 100%;
  min-width: 0;
}

.section {
  background: #f8f8f8;
  padding: var(--section-py) 0;
}

.white_btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #50c128;
    border-radius: 10px;
    padding: 13px 26px;
    font-size: 14px;
    font-weight: 600;
    color: #50c128;
    text-decoration: none;
    background: transparent;
    transition: background .2s;
    cursor: pointer;
}

.deputy__btn,
.white_btn.deputy__btn
{
    padding: 13px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Typography */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

h1 { font-size: clamp(32px, 4vw, 56px); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; line-height: 1.35; }
h4 { font-size: 16px; font-weight: 600; line-height: 1.4; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(53,168,73,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn svg { flex-shrink: 0; }

/* Section divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.p-0{
    padding: 0;
}
/* Responsive — global rhythm */
@media (max-width: 1024px) {
  :root { --section-py: 60px; }
}
@media (max-width: 768px) {
  :root { --section-py: 48px; }
  .container { padding: 0 16px; }
}
@media (max-width: 600px) {
  :root { --section-py: 44px; }
}
.content-container p>a,.content-container div>a, .rs__main p>a:not(.fi-hero__btn){
    color: #50c128;
}
/* End */


/* Start:/local/templates/tomsk/css/animations.css?1782193724457*/
/* ============================================================
   animations.css — page-load fade-up animation
   ============================================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.65s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    animation: none;
  }
}

/* End */


/* Start:/local/templates/tomsk/css/header.css?17840967889193*/
/* ============================================================
   Header — sticky nav, logos, breadcrumbs, mobile menu
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.site-header .container {
  max-width: 1600px;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 72px;
}

/* Logos */
.header-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-logo-air img {
  height: 46px;
  width: auto;
  display: block;
}
.header-logo-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.header-logo-region {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo-region img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  display: block;
}
.header-logo-region__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.header-logo-region__line {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #080f1e;
  line-height: 1.3;
}
.header-logo-region__line--green {
  color: #50c128;
}

/* Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.header-nav a {
  position: relative;
  color: rgba(15, 23, 42, 0.6);
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 6px 7px;
  border-radius: 6px;
  transition: color .2s;
  white-space: nowrap;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.header-nav a:hover {
  color: var(--accent);
}
.header-nav a:hover::after {
  transform: scaleX(1);
}
.header-nav a.is-active,
.nav-dropdown__trigger.is-active {
  color: var(--accent);
}
.header-nav a.is-active::after,
.nav-dropdown__trigger.is-active::after {
  transform: scaleX(1);
}
.nav-dropdown__panel a.is-active {
  color: var(--accent);
}

/* Desktop dropdown — opens on hover, trigger is a link (<a>) */
.nav-dropdown {
  position: relative;
}
.nav-dropdown__trigger {
  /* inherits .header-nav a base styles; add flex for chevron alignment */
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.nav-dropdown__chevron {
  flex-shrink: 0;
  transition: transform .2s;
}
.nav-dropdown:hover .nav-dropdown__chevron {
  transform: rotate(180deg);
}
.nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.08);
  padding: 24px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s, visibility .18s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown__panel a {
  font-size: 14px;
  font-weight: 400;
  color: #080f1e;
  line-height: 23.2px;
  padding: 0;
  background: none;
  border-radius: 0;
  transition: color .15s;
}
.nav-dropdown__panel a::after {
  display: none;
}
.nav-dropdown__panel a:hover {
  color: #35a849;
  background: none;
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 14px;
  font-weight: 600;
  color: #080f1e;
  white-space: nowrap;
}
.header-phone__prefix {
  color: #50c128;
}
.header-search-form {
  display: flex;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: transparent;
  overflow: hidden;
  transition: width .28s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  flex-shrink: 0;
}
.header-search-form.is-open {
  width: 188px;
  background: #fff;
}
.header-search-form:focus-within {
  border-color: rgba(80, 193, 40, 0.7);
  box-shadow: 0 0 0 3px rgba(80, 193, 40, 0.12);
}
.header-search-form__input {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
  font: inherit;
  font-size: 13px;
  padding: 0;
  width: 0;
  opacity: 0;
  transition: opacity .16s ease, padding .2s ease;
}
.header-search-form.is-open .header-search-form__input,
.header-search-form:focus-within .header-search-form__input {
  padding: 0 0 0 10px;
  opacity: 1;
}
.header-search-form__input::placeholder {
  color: #9ca3af;
}
.header-search {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.header-search:hover {
  background: rgba(0, 0, 0, 0.05);
}
.header-search-form.is-open .header-search,
.header-search-form:focus-within .header-search {
  border-radius: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #080f1e;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Breadcrumbs */
.breadcrumbs-wrap {
  background: #ffffff;
  border-bottom: 1px solid #eef1f6;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  height: 51px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.breadcrumbs::-webkit-scrollbar { display: none; }
.breadcrumbs__item {
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  color: rgba(15, 23, 42, 0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumbs__item:hover { color: #35a849; }
.breadcrumbs__item--current {
  font-size: 14px;
  font-weight: 600;
  color: #080f1e;
}
.breadcrumbs__item--current:hover { color: #080f1e; }
.breadcrumbs__sep {
  font-size: 12px;
  color: #c5cdd9;
  margin: 0 6px;
  flex-shrink: 0;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 200;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: #080f1e;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.mobile-menu__group {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
/* Row: section link + chevron toggle button */
.mobile-menu__group-header {
  display: flex;
  align-items: center;
}
.mobile-menu__group-link {
  flex: 1;
  border-bottom: none; /* border is on .mobile-menu__group */
}
.mobile-menu > a.is-active,
.mobile-menu__group-link.is-active,
.mobile-menu__submenu a.is-active {
  color: #50c128;
}
.mobile-menu__group-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #080f1e;
  cursor: pointer;
  padding: 12px 0 12px 12px;
}
.mobile-menu__chevron {
  flex-shrink: 0;
  transition: transform .25s;
}
.mobile-menu__group-toggle[aria-expanded="true"] .mobile-menu__chevron {
  transform: rotate(180deg);
}
.mobile-menu__submenu {
  display: none;
  flex-direction: column;
  padding-left: 16px;
  padding-bottom: 8px;
  gap: 0;
}
.mobile-menu__submenu.is-open {
  display: flex;
}
.mobile-menu__submenu a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(8,15,30,.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mobile-menu__submenu a:last-child {
  border-bottom: none;
}

/* Hamburger → X animation */
#hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
#hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
img.logo-adaptive-show{
    display: none;
}
/* Responsive */
@media (max-width: 1375px) {
    .header-search-form.is-open {
        width: 155px;
        background: #fff;
    }
}
@media (max-width: 1325px) and (min-width: 1024px) {
    .header-logo-region .header-logo-region__text, img.logo-main-show {
        display: none;
    }
    img.logo-adaptive-show{
        display: block;
    }
    .header-logos {
        gap: 8px;
    }
    .header-logo-region img {
        height: 38px;
        width: 38px;
    }
    .header-logo-air img {
        height: 35px;
    }
}
@media (max-width: 1024px) {
  .header-nav     { display: none; }
  .header-actions { display: none; }
  .hamburger      { display: flex; }
}
@media (max-width: 768px) {
  .header-inner         { height: 60px; }
  .header-logo-region   { display: none; }
  .header-logo-divider  { display: none; }
  .header-logo-air img  { height: 38px; }
  .mobile-menu          { top: 60px; }
}

/* End */


/* Start:/local/templates/tomsk/css/footer.css?17827242865051*/
/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: #fff;
  padding: 40px 0 36px;
}

/* ── Top row ─────────────────────────────────────────── */
.footer-top {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
}
.footer-logo-img img {
  display: block;
  height: 38px;
  width: auto;
}
.footer-org {
  flex: 1;
  min-width: 0;
}
.footer-org__name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  line-height: 1.43;
  margin-bottom: 5px;
}
.footer-org__meta {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.4;
}
.footer-org__meta a {
  color: #4b5563;
  transition: color .2s;
}
.footer-org__meta a:hover { color: #38ad0e; }
.footer-hotline {
  flex-shrink: 0;
  text-align: right;
}
.footer-hotline__label {
  font-size: 10px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}
.footer-hotline__num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.3px;
  line-height: 1;
  transition: color .2s;
}
.footer-hotline__num:hover { color: #38ad0e; }
.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.footer-search {
  display: flex;
  align-items: center;
  width: 260px;
  height: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 0 4px 0 8px;
  gap: 4px;
}
.footer-search__icon-btn {
  background: none;
  border: none;
  padding: 2px 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.footer-search__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 12.5px;
  color: #111827;
  background: transparent;
  min-width: 0;
  font-family: inherit;
}
.footer-search__input::placeholder { color: #9ca3af; }
.footer-search__btn {
  background: linear-gradient(to left, #50c128 3.3%, #38ad0e);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 6px;
  padding: 0 12px;
  height: 26px;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  transition: opacity .2s;
}
.footer-search__btn:hover { opacity: .88; }
.footer-socials {
  display: flex;
  gap: 6px;
}
.footer-social {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
  flex-shrink: 0;
}
.footer-social:hover { border-color: #38ad0e; }

/* ── Bottom row ──────────────────────────────────────── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  flex-shrink: 0;
}
.footer-docs {
  display: flex;
  gap: 10px;
}
.footer-doc {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0 10px 0 11px;
  height: 62px;
  text-decoration: none;
  transition: border-color .2s;
  flex-shrink: 0;
  justify-content: space-between;
}
.footer-doc:hover { border-color: #50c128; }

.footer-doc .footer-doc__content {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.footer-doc__icon {
  width: 32px;
  height: 32px;
  background: rgba(80, 193, 40, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-doc__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-doc__title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
}
.footer-doc__meta {
  font-size: 11px;
  color: #6b7280;
}
.footer-doc__dl {
  width: 28px;
  height: 28px;
  background: rgba(80, 193, 40, 0.1);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top     { flex-wrap: wrap; gap: 24px; }
  .footer-org     { order: 2; width: 100%; }
  .footer-hotline { order: 3; text-align: left; }
  .footer-right   { order: 4; width: 100%; max-width: 100%; min-width: 0; justify-content: space-between; flex-wrap: wrap; }
  .footer-socials { flex-wrap: wrap; max-width: 100%; }
  .footer-bottom  { flex-wrap: wrap; gap: 20px; }
  .footer-copy    { white-space: normal; width: 100% }
}
@media (max-width: 600px) {
  .footer-top     { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-org     { order: 0; width: auto; }
  .footer-hotline { order: 0; }
  .footer-right   { width: 100%; align-items: stretch; gap: 12px; }
  .footer-search  { width: 100%; max-width: 100%; min-width: 0; }
  .footer-socials { width: 100%; }
  .footer-docs    { flex-direction: column; width: 100% }
  .footer-doc__title { white-space: normal; }
}

/* End */


/* Start:/local/templates/tomsk/css/sections/hero.css?17830661332802*/
/* ============================================================
   Hero section (главная страница)
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: #3a5e35;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/upload/hero.png');
  background-size: cover;
  background-position: center;
}
.hero-slider {
  background-image: none;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slider__slide.is-active {
  opacity: 1;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: start;
  padding: 80px 0;
}
.hero__card {
  background: rgba(255,255,255,0.97);
  border-radius: 28px;
  padding: 80px;
  width: 780px;
  max-width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero__heading {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #0f172a;
}
.hero__heading--green  { color: #38ad0e; }
.hero__heading--orange { color: #fd8320; }
.hero__sub {
  font-size: 18px;
  color: rgba(15,23,42,0.6);
  line-height: 1.74;
}
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow .2s, background .2s;
  white-space: nowrap;
}
.hero-btn--green {
  background: linear-gradient(to left, #50c128, #38ad0e);
  color: #fff;
}
.hero-btn--green:hover { box-shadow: 0 4px 16px rgba(56,173,14,.35); }
.hero-btn--full {
  width: 100%;
  justify-content: center;
}
.hero__stats {
  display: flex;
  gap: 30px;
}
.hero-stat {
  width: 187px;
}
.hero-stat__value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #38ad0e;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat__num  { font-size: 35px; font-weight: 700; }
.hero-stat__unit { font-size: 22px; font-weight: 700; }
.hero-stat__desc {
  font-size: 14px;
  color: rgba(15,23,42,0.6);
  line-height: 1.46;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__card { width: 100%; }
}
@media (max-width: 768px) {
  .hero__inner  { padding: 40px 0; }
  .hero__card   { padding: 48px 32px; gap: 40px; border-radius: 20px; }
  .hero__heading { font-size: 40px; }
  .hero-btn     { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .hero__stats      { flex-direction: column; gap: 20px; }
  .hero-stat        { width: 100%; }
  .hero-stat__desc  { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero__card     { padding: 32px 24px; max-width: 100%;}
  .hero-stat__num { font-size: 28px; }
}

/* End */


/* Start:/local/templates/tomsk/css/sections/deputy.css?17821937242980*/
/* ============================================================
   Deputy / Appeal section
   ============================================================ */
.deputy__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}
.deputy__photo-wrap {
  position: sticky;
  top: 96px;
  text-align: center;
}

/* green gradient blob behind the circular photo */
.deputy__photo-blob {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 20px;
}
.deputy__photo-blob::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: .25;
  transform: translate(0px, 0px) scale(1.06);
  z-index: 0;
}
.deputy__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--accent-light);
}
.deputy__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deputy__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a6e38 0%, #4caf60 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.deputy__photo-placeholder svg { opacity: .4; }
.deputy__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.deputy__title {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.deputy__appeal {
  padding-top: 4px;
}
.appeal-quote {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
}
.appeal-quote__mark {
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  line-height: .8;
  flex-shrink: 0;
  margin-top: 4px;
}
.appeal-quote__heading {
  color: var(--text);
}
.deputy__body {
  font-size: 16px;
  color: var(--text);
  line-height: 1.78;
  margin-bottom: 20px;
}
.deputy__body:last-of-type {
  margin-bottom: 32px;
}
.deputy__highlight {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
}
.deputy__highlight-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.deputy__highlight-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 1024px) {
  .deputy__grid       { grid-template-columns: 220px 1fr; gap: 36px; }
  .deputy__photo-blob { width: 220px; height: 220px; }
}
@media (max-width: 768px) {
  .deputy__grid { grid-template-columns: 1fr; gap: 32px; }
  .deputy__photo-wrap {
    position: static;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    align-items: center;
    text-align: left;
  }
  .deputy__photo-blob  { width: 140px; height: 140px; margin: 0; }
  .appeal-quote        { flex-direction: column; gap: 0; }
  .appeal-quote__mark  { font-size: 48px; }
}
@media (max-width: 480px) {
  .deputy__photo-wrap { grid-template-columns: 1fr; }
  .deputy__photo      { width: 160px; }
}

/* End */


/* Start:/local/templates/tomsk/css/sections/tools.css?17821937243476*/
/* ============================================================
   Support Tools Slider
   ============================================================ */

.tools {
  background: var(--white);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

/* Card-stack frame */
.tools-frame {
  position: relative;
}
.tools-frame__ghost {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: 28px;
  pointer-events: none;
}
.tools-frame__ghost--near {
  transform: translate(10px, 18px);
  opacity: .88;
  box-shadow: 0 18px 38px rgba(15,23,42,.08);
  z-index: 1;
}
.tools-frame__ghost--far {
  transform: translate(20px, 34px);
  opacity: .45;
  box-shadow: 0 18px 38px rgba(15,23,42,.08);
  z-index: 0;
}
.tools-frame__card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 24px 26px rgba(15,23,42,.1);
  padding: 52px 44px;
}

/* Header row */
.tools__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.tools__heading {
  color: var(--text);
  font-size: 38px;
}

/* Nav buttons */
.tools-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
}
.tools-nav__btn {
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity .2s, transform .15s;
}
.tools-nav__btn--outline {
  width: 44px;
  height: 44px;
  background: rgba(80,193,40,.08);
  border: 1px solid rgba(80,193,40,.2);
}
.tools-nav__btn--outline svg { stroke: #50c128; }
.tools-nav__btn--filled {
  width: 50px;
  height: 50px;
  background: #50c128;
  border: none;
}
.tools-nav__btn--filled svg { stroke: #fff; }
.tools-nav__btn:hover { opacity: .85; transform: scale(1.06); }

/* Card layout */
.tools-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
}

/* Image area */
.tools-card__img-wrap {
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(45deg, rgb(15,81,50) 0%, rgb(80,193,40) 55%, rgb(183,228,199) 100%);
}
.tools-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body area */
.tools-card__body {
  border: 1px solid #d7d7d4;
  border-radius: 20px;
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
}
.tools-card__label {
  font-size: 15px;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 20px;
}
.tools-card__heading {
  font-size: 30px;
  line-height: 1;
  color: #080f1e;
  margin-bottom: 19px;
}
.tools-card__desc {
  font-size: 16px;
  color: #64748b;
  line-height: 1.58;
  margin-bottom: auto;
  padding-bottom: 32px;
}
.tools-card__link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 2.64px;
  transition: color .2s;
}
.tools-card__link:hover { color: #50c128; }

/* Responsive */
@media (max-width: 1024px) {
  .tools-frame__card     { padding: 40px 32px; }
  .tools-card            { grid-template-columns: 260px 1fr; gap: 20px; }
  .tools-card__img-wrap  { height: 100%; min-height: 280px; }
}
@media (max-width: 768px) {
  .tools-frame__ghost    { display: none; }
  .tools-frame__card     { padding: 28px 20px; border-radius: 20px; }
  .tools-card            { grid-template-columns: 1fr; gap: 16px; }
  .tools-card__img-wrap  { height: 220px; }
  .tools-card__body      { padding: 28px 24px; }
}

/* End */


/* Start:/local/templates/tomsk/css/sections/stats.css?17827111291874*/
/* ============================================================
   Stats Cards section
   ============================================================ */

.stats-section {
  background: #f8f8f8;
}
.stats-section__header {
  text-align: center;
  margin-bottom: 52px;
}
.stats-section__heading { color: var(--text); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.stats-grid > a {
  display: flex;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}
.stat-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 36px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.stat-card__icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: linear-gradient(to left, #50c128 3.3%, #38ad0e);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-card__icon svg { width: 56px; height: 56px; stroke: white; fill: none; }
.stat-card__num {
  position: absolute;
  top: 61px;
  right: 16px;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: #eef0f4;
  pointer-events: none;
  user-select: none;
}
.stat-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 22px;
  line-height: 1.235;
}
.stat-card__desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.547;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .stat-card     { padding: 28px 22px 22px; }
  .stat-card__num { font-size: 38px; top: 52px; }
}

/* End */


/* Start:/local/templates/tomsk/css/sections/invest.css?17823633553941*/
/* === ИНВЕСТИЦИОННЫЕ ПЛОЩАДКИ === */
.invest__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    max-width: 657px;
    margin: 0 auto 56px;
    text-align: center;
}

.invest__heading {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.112;
    color: #080f1e;
    margin: 0;
}

.invest__sub {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(15, 23, 42, 0.6);
    margin: 0;
}

.invest-cards {
    display: flex;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.invest-cards::-webkit-scrollbar {
    display: none;
}

.invest-card {
    position: relative;
    flex-shrink: 0;
    width: 235px;
    height: 287px;
    border-radius: 16px;
    border: 1px solid #e8f0ec;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.invest-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.invest-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(27, 67, 50, 0.4), rgba(27, 67, 50, 0.9));
    pointer-events: none;
}

.invest-card__badge {
    position: absolute;
    top: 19px;
    left: 19px;
    width: 32px;
    height: 32px;
    border-radius: 50px;
    background: #50c128;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.invest-card__body {
    position: absolute;
    top: 81px;
    left: 19px;
    width: 195px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.invest-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 22px;
    letter-spacing: -0.16px;
    margin: 0;
}

.invest-card__id {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 18px;
    margin: 0;
}

.invest-card__link {
    position: absolute;
    top: 245px;
    left: 19px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #50c128;
    text-decoration: none;
    line-height: 1.6;
}

.invest-card__link:hover {
    color: var(--accent-hover);
}

.invest__footer {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.invest__pagination {
    margin-top: 32px;
}

.invest-detail__article {
    max-width: 920px;
    margin: 0 auto;
    padding: 36px;
    background: #fff;
    border: 1px solid rgba(80, 193, 40, 0.12);
    border-radius: 16px;
}

.invest-detail__header {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.invest-detail__badge {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(80, 193, 40, 0.1);
    color: #38ad0e;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.invest-detail__title {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #080f1e;
    margin: 0;
}

.invest-detail__image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 28px;
}

.invest-detail__content {
    font-size: 16px;
    line-height: 1.75;
    color: #374151;
}

.invest-detail__content p {
    margin: 0 0 16px;
}

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

@media (max-width: 768px) {
    .invest-detail__article {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .invest-detail__title {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .invest__heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .invest__heading {
        font-size: 24px;
    }

    .invest__header {
        margin-bottom: 32px;
    }
}

/* End */


/* Start:/local/templates/tomsk/css/sections/advantages.css?17821937242246*/
/* ============================================================
   Advantages — Преимущества региона
   ============================================================ */

.advantages {
  background: #f8f8f8;
}
.advantages__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}
.advantages__header .section-label {
  margin-bottom: 16px;
  color: #50c128;
  gap: 9px;
}
.advantages__header .section-label::before {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}
.advantages__heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.112;
  color: #080f1e;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 294px 271px;
  gap: 24px;
}
.adv-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 36px 30px 30px;
  position: relative;
}
.adv-card__ibox {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: linear-gradient(to left, #50c128 3.3%, #38ad0e);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adv-card__ibox svg {
  width: 56px;
  height: 56px;
}
.adv-card__num {
  position: absolute;
  top: 61px;
  right: 16px;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: #eef0f4;
  pointer-events: none;
  user-select: none;
}
.adv-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.235;
  color: #0f172a;
  margin-top: 22px;
}
.adv-card__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.547;
  color: #64748b;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .advantages-grid     { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .advantages__heading { font-size: 32px; }
}
@media (max-width: 600px) {
  .advantages-grid     { grid-template-columns: 1fr; grid-template-rows: auto; }
  .advantages__header  { margin-bottom: 36px; }
}
@media (max-width: 480px) {
  .adv-card        { padding: 28px 22px 22px; }
  .adv-card__ibox  { width: 80px; height: 80px; }
  .adv-card__num   { font-size: 38px; top: 52px; }
}

/* End */


/* Start:/local/templates/tomsk/css/sections/contact.css?17833422449330*/
/* ============================================================
   Contact Section (форма обратной связи на главной)
   ============================================================ */
.contact__intro {
  text-align: center;
  margin-bottom: 56px;
}
.contact__intro .section-label {
  display: inline-flex;
  font-size: 11px;
  letter-spacing: 1.344px;
}
.contact__intro .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.contact__intro h2 {
  font-size: 38px;
  font-weight: 700;
  color: #080f1e;
  line-height: 1.11;
  margin-bottom: 12px;
}
.contact__sub {
  font-size: 16px;
  color: rgba(15,23,42,.6);
  margin-top: 0;
  line-height: 1.7;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Form card */
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(0,0,0,.05);
  padding: 40px;
}

.contact-form-altasib { width: 100%; }

/* Form rows & fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-field { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(15,23,42,.6);
  text-transform: uppercase;
  letter-spacing: .77px;
  margin-bottom: 8px;
}
.form-label span { color: rgba(15,23,42,.6); }
.form-input,
.form-textarea {
  width: 100%;
  padding: 0 16px;
  height: 54px;
  border: 1px solid #d7d7d4;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: #080f1e;
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.form-input:focus,
.form-textarea:focus {
  border-color: #50c128;
  box-shadow: 0 0 0 3px rgba(80,193,40,.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(15,23,42,.4); }
.form-textarea {
  height: 120px;
  padding: 16px;
  resize: vertical;
}

/* File upload */
.form-upload {
  display: block;
  border: 2px dashed #d7d7d4;
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  margin-bottom: 20px;
}
.form-upload:hover { border-color: #50c128; background: rgba(80,193,40,.04); }
.form-upload.is-selected {
  border-color: #50c128;
  background: rgba(80,193,40,.06);
}
.form-upload.is-dragover {
  border-color: #38ad0e;
  background: rgba(80,193,40,.1);
  box-shadow: 0 0 0 4px rgba(80,193,40,.12);
}
.form-upload__icon {
  width: 48px;
  height: 48px;
  background: rgba(80,193,40,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-upload__icon img { width: 24px; height: 24px; display: block; }
.form-upload__text {
  font-size: 15px;
  color: #080f1e;
  margin-bottom: 6px;
  line-height: 1.63;
}
.form-upload__hint {
  font-size: 13px;
  color: rgba(15,23,42,.6);
  line-height: 1.5;
}
.form-upload__file {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(80,193,40,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}
.form-upload__file[hidden] {
  display: none !important;
}
.form-upload__file-name {
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #080f1e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-upload__file-remove {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 14px;
  background: rgba(8,15,30,.08);
  color: #080f1e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.form-upload__file-remove:hover {
  background: rgba(180,35,24,.12);
  color: #b42318;
}
.form-upload__file-remove:focus-visible {
  outline: 2px solid #50c128;
  outline-offset: 2px;
}
.form-upload input[type="file"] { display: none; }

/* Submit button */
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 55px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .144px;
  background: linear-gradient(to left, #50c128 3.3%, #38ad0e);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .2s, box-shadow .2s;
}
.btn-submit:hover {
  opacity: .9;
  box-shadow: 0 6px 20px rgba(56,173,14,.35);
}
.btn-submit.is-loading,
.btn-submit:disabled {
  opacity: .75;
  cursor: default;
  box-shadow: none;
}
.btn-submit svg,
.btn-submit img { flex-shrink: 0; }

/* Consent */
.form-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0;
}

.form-consent-row input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  cursor: pointer;
  accent-color: #50c128;
}

.form-consent-text {
  font-size: 13px;
  color: rgba(15,23,42,.6);
  line-height: 1.5;
}

.form-consent-text a {
  color: #50c128;
  text-decoration: none;
}

.form-consent-text a:hover {
  text-decoration: underline;
}

.form-consent-row.is-invalid .form-consent-text {
  color: #b42318;
}

.contact-form-altasib.is-consent-pending .btn-submit:disabled,
.contact-form-altasib.is-fields-incomplete .btn-submit:disabled {
  opacity: .38;
}

.contact-form__success,
.contact-form__errors {
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.contact-form__success {
  background: rgba(80,193,40,.1);
  border: 1px solid rgba(80,193,40,.22);
  color: #027313;
  font-size: 14px;
  line-height: 22px;
}

.contact-form__errors {
  background: #fff4f4;
  border: 1px solid rgba(180,35,24,.18);
}

.contact-form__errors-title {
  font-size: 14px;
  font-weight: 700;
  color: #b42318;
  line-height: 20px;
  margin-bottom: 8px;
}

.contact-form__errors-list {
  margin: 0;
  padding-left: 18px;
  color: #b42318;
  font-size: 14px;
  line-height: 22px;
}

.contact-form__captcha {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.contact-form__captcha-image {
  display: block;
  border-radius: 10px;
  border: 1px solid #d7d7d4;
}

.contact-form__captcha-reload {
  border: 0;
  background: transparent;
  color: #50c128;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 0;
  cursor: pointer;
}

/* Contact info block */
.contact-info__heading {
  font-size: 24px;
  font-weight: 600;
  color: #080f1e;
  line-height: 1.33;
  margin-bottom: 12px;
}
.contact-info__desc {
  font-size: 15px;
  color: rgba(15,23,42,.6);
  line-height: 1.6;
  margin-bottom: 24px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 21px;
  background: rgba(80,193,40,.1);
  border: 1px solid #d7d7d4;
  border-radius: 12px;
}
.contact-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(80,193,40,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon img { width: 20px; height: 20px; display: block; }
.contact-item__body { min-width: 0; }
.contact-item__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(15,23,42,.6);
  text-transform: uppercase;
  letter-spacing: .77px;
  margin-bottom: 4px;
  line-height: 1.6;
}
.contact-item__value {
  font-size: 15px;
  font-weight: 600;
  color: #080f1e;
  line-height: 1.6;
}
.contact-item__value a { color: #080f1e; }
.contact-item__value-note {
  font-size: 13px;
  font-weight: 600;
  color: rgba(15,23,42,.6);
}

/* Hotline */
.hotline-box {
  background: #fff;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 12px;
  box-shadow: 0 24px 26px rgba(0,0,0,.05);
  padding: 40px 31px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hotline-box__label {
  font-size: 12px;
  font-weight: 600;
  color: #50c128;
  text-transform: uppercase;
  letter-spacing: .77px;
  margin-bottom: 9px;
  line-height: 1.67;
}
.hotline-box__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hotline-box__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: #fd8320;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotline-box__icon img { width: 16px; height: 16px; display: block; }
.hotline-box__num {
  font-size: 28px;
  font-weight: 700;
  color: #080f1e;
  line-height: 1.14;
}
.hotline-box__num a { color: #080f1e; }

/* Responsive */
@media (max-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-card  { padding: 32px; border-radius: 20px; }
}
@media (max-width: 600px) {
  .form-row           { grid-template-columns: 1fr; }
  .contact-form-card  { padding: 24px; border-radius: 20px; }
  .contact__intro h2  { font-size: 30px; }
  .form-upload__file  { align-items: flex-start; }
  .form-upload__file-name { white-space: normal; word-break: break-word; }
}
@media (max-width: 480px) {
  .hotline-box__num { font-size: 24px; }
}

/* End */


/* Start:/local/templates/tomsk/css/sections/partners.css?17821937243289*/
/* ============================================================
   Partner Links section
   ============================================================ */

.partners {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 64px 0;
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.partner-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 28px;
  box-shadow: 0 24px 26px rgba(0,0,0,.05);
  transition: box-shadow .2s, transform .15s;
  cursor: pointer;
}
.partner-link:hover {
  box-shadow: 0 28px 32px rgba(0,0,0,.09);
  transform: translateY(-2px);
}
.partner-link__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(to left, #50c128 3.3%, #38ad0e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partner-link__icon img { width: 16px; height: 16px; display: block; }
.partner-link__body { flex: 1; min-width: 0; }
.partner-link__name {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1.5;
  margin-bottom: 4px;
}
.partner-link__url {
  font-size: 14px;
  color: #50c128;
  font-weight: 400;
  line-height: 1.49;
}
.partner-link__arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #d7d7d4;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  transition: border-color .2s, background .2s;
}
.partner-link:hover .partner-link__arrow {
  border-color: #50c128;
  background: #50c128;
}
.partner-link__arrow svg { display: block; }
.partner-link__arrow svg path { stroke: rgba(15,23,42,0.6); transition: stroke .2s; }
.partner-link:hover .partner-link__arrow svg path { stroke: #fff; }

/* EKG banner */
.ekg-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 31px 30px;
  background: linear-gradient(to left, #50c128 3.3%, #38ad0e);
  border-radius: 28px;
  box-shadow: 0 24px 25px rgba(0,0,0,.05);
}
.ekg-banner__content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ekg-banner__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.2;
  white-space: nowrap;
}
.ekg-banner__desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.2;
  white-space: nowrap;
}
.ekg-banner__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 2px solid #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}
.ekg-banner__link:hover { background: rgba(255,255,255,0.15); }
.ekg-banner__link svg { display: block; }

/* Responsive */
@media (max-width: 768px) {
  .ekg-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .ekg-banner__content { flex-direction: column; align-items: flex-start; gap: 6px; }
  .ekg-banner__desc    { white-space: normal; }
}
@media (max-width: 600px) {
  .partners__grid { grid-template-columns: 1fr; }
  .partners       { padding: 40px 0; }
}

/* End */


/* Start:/local/templates/tomsk/css/pages/rs.css?17830704796589*/
/* ============================================================
   Страница «Региональный инвестиционный стандарт» — rs-*
   ============================================================ */

.page-container .rs { max-width: 1328px; }

.rs__layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.rs__sidebar {
  flex: 0 0 280px;
  width: 280px;
  position: sticky;
  top: 88px;
  align-self: flex-start;
}

.rs__sidebar-inner {
  position: static;
}

.rs__sidebar-hd {
  height: 32px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(80,193,40,.1);
  margin-bottom: 16px;
}

.rs__sidebar-lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
  line-height: 18px;
}

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

.rs__tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(80,193,40,.1);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #3d3d3d;
}

.rs__tab--active { color: #50c128; }

.rs__tab-txt { flex: 1; }

.rs__tab-ico {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(80,193,40,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Main column ─────────────────────────────────────────── */
.rs__main { flex: 1; min-width: 0; }

.rs__hd { margin-bottom: 32px; }

.rs__hd-lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
  line-height: 18px;
  margin-bottom: 8px;
}

.rs__hd-ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: #080f1e;
  margin-bottom: 12px;
}

.rs__hd-ttl-o { color: #fd8320; }

.rs__hd-line {
  width: 60px;
  height: 3px;
  background: #fd8320;
  border-radius: 2px;
}

/* ── Content card ────────────────────────────────────────── */
.rs__card {
  background: #fff;
  border: 1px solid rgba(80,193,40,.1);
  border-radius: 18px;
  padding: 41px 49px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.rs__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 24px;
  background: #fd8320;
  border-radius: 20px;
  padding: 0 18px 0 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.rs__pane-ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #080f1e;
}

.rs__quote {
  background: #fff5ef;
  border-left: 4px solid #fd8320;
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  min-height: 160px;
  display: flex;
  align-items: flex-start;
  margin: 0;
}

.rs__quote p {
  font-size: 16px;
  line-height: 24px;
  color: #3d3d3d;
  margin: 0;
}

.rs__quote strong {
  font-weight: 600;
  color: #080f1e;
}

.rs__txt {
  font-size: 15px;
  line-height: 25.5px;
  color: #3d3d3d;
}

.rs__el-ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: #080f1e;
}

/* 2-column elements grid */
.rs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rs__el {
  background: #f0f7f2;
  border: 1px solid rgba(80,193,40,.1);
  border-radius: 12px;
  height: 78px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  gap: 16px;
}

.rs__el-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(45,106,79,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs__el-ico img {
  width: 26px;
  height: 26px;
  display: block;
}

.rs__el-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 18.2px;
  color: #080f1e;
}

/* Contact card */
.rs__cc {
  border: 1px solid rgba(80,193,40,.1);
  border-radius: 16px;
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.rs__cc-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  width: 100%;
}

.rs__cc-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
  line-height: 18px;
}

.rs__cc-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 25.6px;
  color: #080f1e;
}

.rs__cc-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rs__cc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d1e8d8;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #080f1e;
  white-space: nowrap;
  transition: background .15s;
  text-decoration: none;
}

.rs__cc-link:hover { background: rgba(80,193,40,.05); }

.rs__cc-link-ico {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #fd8320;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs__cc-link-ico img,
.rs__cc-link-ico svg {
  width: 12px;
  height: 12px;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .page-container .rs { max-width: 1272px; }
  .rs__layout    { flex-direction: column; gap: 0; }
  .rs__sidebar   { position: static; flex: none; width: 100%; margin-bottom: 28px; }
  .rs__sidebar-inner { position: static; }
  .rs__sidebar-hd    { display: none; }
  .rs__tabs {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .rs__tabs::-webkit-scrollbar { display: none; }
  .rs__tab {
    border-bottom: none;
    border: 1px solid rgba(80,193,40,.15);
    border-radius: 24px;
    padding: 8px 16px;
    background: rgba(80,193,40,.04);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .rs__tab--active {
    background: rgba(80,193,40,.12);
    border-color: rgba(80,193,40,.3);
  }
  .rs__tab-ico { display: none; }
}
@media (max-width: 768px) {
  .rs__card    { padding: 28px 24px; gap: 20px; }
  .rs__hd-ttl  { font-size: 24px; line-height: 30px; }
}
@media (max-width: 480px) {
    .rs__card    { margin: 0 -28px;}
  .rs__grid    { grid-template-columns: 1fr; }
  .rs__hd-ttl  { font-size: 20px; line-height: 26px; }
  .rs__pane-ttl { font-size: 20px; }
  .rs__el-ttl  { font-size: 16px; }
}

/* End */


/* Start:/local/templates/tomsk/css/pages/about.css?178328634922808*/
/* ============================================================
   Страница «О регионе» — about-*
   ============================================================ */

.about-page {
  padding: 40px 0 60px;
}

.about-layout {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.about-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
}

.about-sidebar__inner {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-sidebar__header {
  display: flex;
  align-items: flex-end;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(80,193,40,0.1);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
  line-height: 18px;
  min-height: 32px;
}

.about-nav {
  display: flex;
  flex-direction: column;
}

.about-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(80,193,40,0.1);
  font-size: 14px;
  font-weight: 600;
  color: #3d3d3d;
  text-decoration: none;
  transition: color .2s;
}

.about-nav__item:last-child {
  border-bottom: none;
}

.about-nav__item:hover {
  color: #50c128;
}

.about-nav__item.is-active {
  color: #50c128;
}

.about-nav__item.is-active .about-nav__arrow {
  background: rgba(80,193,40,0.18);
}

.about-nav__arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(80,193,40,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sidebar CTA */
.about-cta {
  background: linear-gradient(133.62deg, #027313 0%, #038c0c 100%);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-cta__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 19.6px;
}

.about-cta__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 18px;
  padding-bottom: 8px;
}

.about-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fd8320;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: background .2s;
}

.about-cta__btn:hover {
  background: #e6741a;
}

/* ── Main Content ────────────────────────────────────────── */
.about-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

/* Page heading */
.about-hd {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-hd__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
  line-height: 18px;
  margin-bottom: 7px;
}

.about-hd__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: #080f1e;
  margin-bottom: 12px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.about-hd__title--orange {
  color: #fd8320;
}

.about-hd__line {
  width: 60px;
  height: 3px;
  background: #fd8320;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Hero Image */
.about-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 380px;
}

.about-hero-slider {
  background: #dbe5df;
}

.about-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}

.about-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.about-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

.about-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27,67,50,0.08) 0%, rgba(27,67,50,0.55) 100%);
  border-radius: 12px;
}

.about-hero__caption {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  z-index: 2;
}

/* Stats row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-stat {
  background: #fff;
  border: 1px solid rgba(80,193,40,0.1);
  border-radius: 14px;
  padding: 21px 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 112px;
}

.about-stat__value {
  font-size: 30px;
  font-weight: 700;
  color: #38ad0e;
  line-height: 30px;
  text-align: center;
  white-space: nowrap;
}

.about-stat__value-mixed {
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
}

.about-stat__value-mixed .about-stat__num {
  font-size: 30px;
  font-weight: 700;
  color: #38ad0e;
  line-height: 1;
}

.about-stat__value-mixed .about-stat__unit {
  font-size: 18px;
  font-weight: 700;
  color: #38ad0e;
  line-height: 32px;
}

.about-stat__desc {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  line-height: 16px;
}

/* Content card */
.about-card {
  background: #fff;
  border: 1px solid rgba(80,193,40,0.1);
  border-radius: 18px;
  padding: 41px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Badge */
.about-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: rgba(80,193,40,0.1);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
  white-space: nowrap;
  line-height: 18px;
}

/* Card heading */
.about-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #080f1e;
  line-height: 32px;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Green quote block */
.about-quote {
  background: rgba(80,193,40,0.1);
  border-left: 4px solid #50c128;
  border-radius: 0 12px 12px 0;
  padding: 19px 24px 20px 28px;
  margin: 0;
}

.about-quote p {
  font-size: 16px;
  font-weight: 600;
  color: #080f1e;
  line-height: 24.8px;
  margin: 0;
}

/* Body text */
.about-text {
  font-size: 15px;
  color: #3d3d3d;
  line-height: 26.25px;
}

/* Clusters section */
.about-clusters {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-clusters__hd {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.about-clusters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 6px;
}

.about-cluster {
  background: #fff;
  border: 1px solid rgba(80,193,40,0.1);
  border-radius: 14px;
  padding: 23px 19px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-cluster__icon {
  width: 44px;
  height: 44px;
  background: rgba(80,193,40,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-cluster__title {
  font-size: 14px;
  font-weight: 700;
  color: #080f1e;
  line-height: 18.9px;
  padding-top: 5px;
}

.about-cluster__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 20.15px;
}

/* Photo grid */
.about-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-photo {
  height: 316px;
  border-radius: 12px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

/* 2-column text inside card */
.about-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Wide banner */
.about-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 280px;
}

.about-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

.about-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,67,50,0.7) 0%, rgba(27,67,50,0) 70%);
  display: flex;
  align-items: center;
  padding: 40px;
  border-radius: 12px;
}

.about-banner__heading {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 32px;
  max-width: 380px;
}

/* ── Photo Gallery ───────────────────────────────────────── */
.about-gallery {
    margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}

.about-gallery__item--wide   { grid-column: span 3; }
.about-gallery__item--narrow { grid-column: span 2; }

.about-gallery__item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: block;
}

.about-gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

.about-gallery__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(27,67,50,0.8);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 20px;
  padding: 4.5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  line-height: 19.2px;
  text-transform: uppercase;
}

.about-gallery__empty {
  border: 1px solid #d1e8d8;
  border-radius: 16px;
  padding: 24px;
  font-size: 14px;
  line-height: 22px;
  color: #6b7280;
}

.gallery-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1116px;
  margin: 8px auto 0;
}

.gallery-page--sections {
  padding-bottom: 8px;
}

.gallery-page__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 520px;
}

.gallery-page__label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
  line-height: 18px;
}

.gallery-page__title {
  margin: 0;
  font-size: 46px;
  font-weight: 700;
  line-height: 50px;
  color: #080f1e;
}

.gallery-page__title-accent {
  color: #fd8320;
}

.gallery-page__line {
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: #fd8320;
}

.gallery-page__desc {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  color: #6b7280;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}

.gallery-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.gallery-section-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #dbeadf;
  background: #fff;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.gallery-section-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(8, 15, 30, 0.08);
  border-color: rgba(80, 193, 40, 0.28);
}

.gallery-section-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #f3f6f4;
}

.gallery-section-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-section-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 20px;
}

.gallery-section-card__label {
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
}

.gallery-section-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #080f1e;
}

.gallery-photo-card {
  border-radius: 16px;
  overflow: hidden;
  background: #f3f6f4;
  aspect-ratio: 1 / 0.82;
}

.gallery-photo-card__link {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-photo-empty {
  border: 1px solid #d1e8d8;
  border-radius: 16px;
  padding: 24px;
  font-size: 14px;
  line-height: 22px;
  color: #6b7280;
}

/* ── Investment Projects ─────────────────────────────────── */
.about-projects {
    margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.about-projects__component {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.about-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.about-project-card {
  background: #fff;
  border: 1px solid #d1e8d8;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-project-card__img-wrap {
  position: relative;
  height: 411px;
  overflow: hidden;
  flex-shrink: 0;
}

.about-project-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

.about-project-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.55) 0%, rgba(27,67,50,0) 60%);
  pointer-events: none;
}

.about-project-card__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fd8320;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 16px;
  letter-spacing: 0.3px;
}

.about-project-card__body {
  padding: 21px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.about-project-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #080f1e;
  line-height: 21.6px;
}

.about-project-card__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 20.8px;
  flex: 1;
}

.about-project-card__loc {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
}

.about-project-card__loc svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.about-project-card__loc-text {
  font-size: 12px;
  font-weight: 600;
  color: #50c128;
  line-height: 19.2px;
  white-space: nowrap;
}

.about-projects__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #50c128;
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 600;
  color: #50c128;
  text-decoration: none;
  background: transparent;
  transition: background .2s;
  cursor: pointer;
}

.about-projects__more:hover {
  background: rgba(80,193,40,0.06);
}
.about-projects__more.is-loading {
  opacity: 0.7;
  pointer-events: none;
}
.about-projects__more:disabled {
  opacity: 0.7;
  cursor: default;
}
.about-projects__pagination {
  width: 100%;
}
.about-projects__empty {
  border: 1px solid #d1e8d8;
  border-radius: 16px;
  padding: 24px;
  font-size: 14px;
  line-height: 22px;
  color: #6b7280;
}

/* ── Video section ───────────────────────────────────────── */
.about-videos {
    margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-videos__title {
  font-size: 20px;
  font-weight: 700;
  color: #080f1e;
  line-height: 32px;
}

.about-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-video-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-video-card__thumb {
  position: relative;
  height: 275px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(80, 193, 40, 0.1);
  flex-shrink: 0;
}

.about-video-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

.about-video-card__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(80, 193, 40, 0.12) 0%, rgba(253, 131, 32, 0.16) 100%);
}

.about-video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: 0;
  padding: 0;
  z-index: 1;
}

.about-video-card__play:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.05);
}

.about-video-card__play:focus-visible,
.about-video-modal__close:focus-visible {
  outline: 2px solid #50c128;
  outline-offset: 2px;
}

.about-video-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #080f1e;
  line-height: 21.6px;
}

.about-videos__empty {
  border: 1px solid #d1e8d8;
  border-radius: 16px;
  padding: 24px;
  font-size: 14px;
  line-height: 22px;
  color: #6b7280;
}

.about-video-modal[hidden] {
  display: none;
}

.about-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.about-video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 30, 0.72);
}

.about-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
}

.about-video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 20px;
  background: rgba(8, 15, 30, 0.72);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}

.about-video-modal__close:hover {
  background: rgba(8, 15, 30, 0.88);
  transform: scale(1.04);
}

.about-video-modal__frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.about-video-modal__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-video-modal__native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

body.about-video-modal-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-layout           { grid-template-columns: 240px 1fr; gap: 24px; }
  .about-projects__grid   { grid-template-columns: repeat(2, 1fr); }
  .about-gallery__grid    { grid-template-rows: 200px 200px; }
  .gallery-section-grid   { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
}
@media (max-width: 768px) {
  .about-videos__grid     { grid-template-columns: 1fr; }
  .about-video-card__thumb { height: 220px; }
  .about-video-modal      { padding: 16px; }
  .about-video-modal__dialog { padding-top: 48px; }
  .about-video-modal__close {
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.96);
    color: #080f1e;
  }
  .about-page             { padding: 24px 0 40px; overflow-x: hidden; }
  .about-layout           { grid-template-columns: 1fr; overflow-x: hidden; }
  .about-sidebar          { position: static; min-width: 0; }
  .about-sidebar__inner   { position: static; min-width: 0; }
  .about-sidebar__header  { display: none; }
  .about-nav              { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 4px; scrollbar-width: none; }
  .about-nav::-webkit-scrollbar { display: none; }
  .about-nav__item        { border-bottom: none; border: 1px solid rgba(80,193,40,.15); border-radius: 24px; padding: 8px 16px; background: rgba(80,193,40,.04); white-space: nowrap; flex-shrink: 0; }
  .about-nav__item.is-active { background: rgba(80,193,40,.12); border-color: rgba(80,193,40,.28); }
  .about-nav__arrow       { display: none; }
  .about-hero             { height: 300px; }
  .about-hero__caption    { font-size: 18px; line-height: 26px; }
  .about-stats            { grid-template-columns: repeat(2, 1fr); }
  .about-stat__value      { font-size: 22px; line-height: 1; }
  .about-stat__value-mixed .about-stat__num  { font-size: 22px; }
  .about-stat__value-mixed .about-stat__unit { font-size: 14px; }
  .about-clusters-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-photos           { grid-template-columns: repeat(2, 1fr); }
  .about-photos .about-photo { height: 220px; }
  .about-2col             { grid-template-columns: 1fr; }
  .about-card             { padding: 28px 24px; }
  .about-hd__title        { font-size: 24px; }
  .about-banner__overlay  { padding: 24px 20px; }
  .about-banner__heading  { font-size: 20px; line-height: 28px; max-width: 260px; }
  .about-gallery          { gap: 24px; }
  .about-gallery__grid    { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .about-gallery__item--wide,
  .about-gallery__item--narrow { grid-column: span 1; height: 200px; }
  .about-projects         { gap: 20px; }
  .about-projects__component { gap: 20px; }
  .about-projects__grid   { grid-template-columns: 1fr; }
  .about-projects__more   { width: 100%; justify-content: center; }
  .about-project-card__img-wrap { height: 240px; }
  .gallery-page           { margin-top: 0; max-width: 100%; }
  .gallery-page__title    { font-size: 34px; line-height: 40px; }
  .gallery-page__header   { max-width: 100%; }
  .gallery-photo-grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery-section-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .gallery-section-card__body { padding: 16px; }
  .gallery-section-card__title { font-size: 18px; line-height: 24px; }
}
@media (max-width: 600px) {
  .about-page             { padding: 20px 0 32px; }
  .about-hd__title        { font-size: 20px; line-height: 28px; }
  .about-hero             { height: 240px; }
  .about-hero__caption    { font-size: 15px; line-height: 22px; }
  .about-stats            { grid-template-columns: 1fr; }
  .about-stat__value      { font-size: 24px; }
  .about-clusters-grid    { grid-template-columns: 1fr; }
  .about-photos           { grid-template-columns: 1fr; }
  .about-photos .about-photo { height: 220px; }
  .about-banner           { height: 200px; }
  .about-banner__overlay  { padding: 20px 16px; }
  .about-banner__heading  { font-size: 18px; line-height: 26px; max-width: 100%; }
  .about-card             { padding: 20px 16px; }
  .about-gallery__grid    { grid-template-columns: 1fr; }
  .about-gallery__item--wide,
  .about-gallery__item--narrow { height: 200px; }
  .about-project-card__img-wrap { height: 200px; }
  .about-projects__grid   { grid-template-columns: 1fr; }
  .about-video-modal__dialog { padding-top: 44px; }
  .about-video-modal__close { top: 0; right: 0; }
  .gallery-page__title    { font-size: 28px; line-height: 34px; }
  .gallery-photo-grid     { grid-template-columns: 1fr; }
  .gallery-section-grid   { grid-template-columns: 1fr; gap: 14px; }
  .gallery-section-card__title { font-size: 17px; line-height: 24px; }
}
/* End */


/* Start:/local/templates/tomsk/css/pages/news.css?17854031627490*/
/* ============================================================
   Страница «Новости» — news-*
   ============================================================ */

.news-page__container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Header */
.news-page__header {
  padding-bottom: 2px;
}
.news-page__label {
  font-size: 12px;
  font-weight: 600;
  color: #50c128;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 18px;
  margin-bottom: 8px;
}
.news-page__heading {
  font-size: 28px;
  font-weight: 700;
  color: #080f1e;
  line-height: 1.214;
  margin-bottom: 12px;
}
.news-page__heading-accent {
  color: #fd8320;
}
.news-page__underline {
  width: 60px;
  height: 3px;
  background: #fd8320;
  border-radius: 2px;
}
.news-page [data-news-ajax-container] {
  transition: opacity .22s ease, transform .22s ease;
}
.news-page [data-news-ajax-container].is-loading {
  opacity: .55;
  transform: translateY(4px);
  pointer-events: none;
}

/* Category tabs */
.news-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.news-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 19px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  border: 1px solid rgba(80,193,40,0.1);
  background: #fff;
  color: #3d3d3d;
  text-decoration: none;
}
.news-cat--active {
  background: #50c128;
  border-color: #50c128;
  color: #fff;
}
.content-container .news-cat.news-cat--active,
.content-container .news-cat.news-cat--active:hover {
  color: #fff;
}
.news-cat:not(.news-cat--active):hover {
  background: rgba(80,193,40,0.06);
  border-color: rgba(80,193,40,0.25);
}

/* Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.news-card {
  background: #fff;
  border: 1px solid rgba(80,193,40,0.1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-card__img-wrap {
  position: relative;
  height: 231px;
  overflow: hidden;
  flex-shrink: 0;
}
.news-card__img-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.news-card__img {
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
}
.news-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.45) 0%, rgba(27,67,50,0) 55%);
  pointer-events: none;
}
.news-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fd8320;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  line-height: 1.6;
}
.news-card__content {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.news-card__date {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  line-height: 17.6px;
  white-space: nowrap;
}
.news-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 1.5px;
  background: rgba(80,193,40,0.1);
  flex-shrink: 0;
}
.news-card__views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
  line-height: 17.6px;
  white-space: nowrap;
}
.news-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #080f1e;
  line-height: 21px;
  margin-bottom: 10px;
}
.news-card__title-link {
  color: inherit;
  text-decoration: none;
}
.news-card__title-link:hover {
  color: #50c128;
}
.news-card__excerpt {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  line-height: 20.8px;
  flex: 1;
  margin-bottom: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-card__footer {
  border-top: 1px solid rgba(80,193,40,0.1);
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.news-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.news-tag {
  background: rgba(80,193,40,0.1);
  color: #50c128;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 16px;
  white-space: nowrap;
}
.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(80,193,40,0.1);
  color: #50c128;
  font-size: 12px;
  font-weight: 700;
  padding: 6.5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 19.2px;
  transition: background .2s;
}
.news-card__link:hover {
  background: rgba(80,193,40,0.18);
}

.news-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 24px;
  background: #fff;
  border: 1px solid rgba(80,193,40,0.14);
  border-radius: 16px;
}
.news-empty__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #50c128;
  background: rgba(80,193,40,0.1);
}
.news-empty__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #080f1e;
  margin: 0 0 8px;
}
.news-empty__text {
  max-width: 460px;
  font-size: 15px;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}

/* Pagination */
.news-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.news-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  background: rgba(80,193,40,0.08);
  border: 1px solid rgba(80,193,40,0.2);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.news-pager__btn--active {
  background: linear-gradient(to left, #50c128, #38ad0e);
  border-color: transparent;
  color: #fff;
}
.news-pager__btn--nav {
  font-size: 16px;
  font-weight: 600;
}
.news-pager__btn:not(.news-pager__btn--active):hover {
  background: rgba(80,193,40,0.15);
  border-color: rgba(80,193,40,0.35);
}
.news-pager__ellipsis {
  font-size: 16px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 24px;
  width: 14px;
  text-align: center;
}

.news-page__img {
  margin: 30px 0;
}

.news-page__img img {
  border-radius: 28px;
  width: 100%;
}

.news-page--news-detail .news-page__detail {
  display: flow-root;
  margin-top: 30px;
}

.news-page--news-detail .news-page__date {
  margin: 0 0 20px;
}

.news-page--news-detail .news-page__detail > .news-page__img {
  float: left;
  width: 300px;
  max-width: 100%;
  margin: 0 24px 16px 0;
}

.news-page--news-detail .news-page__detail > .news-page__img img {
  display: block;
  width: 100%;
  height: auto;
}

.news-page--news-detail .news-page__text > :first-child {
  margin-top: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .news-page__heading  { font-size: 24px; }
  .news-card__img-wrap { height: 200px; }
}
@media (max-width: 600px) {
  .news-grid       { grid-template-columns: 1fr; }
  .news-cats       { gap: 6px; }
  .news-cat        { padding: 8px 14px; font-size: 13px; }
  .news-pager      { flex-wrap: wrap; gap: 6px; }
  .news-pager__btn { width: 40px; height: 40px; font-size: 13px; }
  .news-page--news-detail .news-page__detail > .news-page__img  { float: none; margin: 0 0 20px; }
}

/* End */


/* Start:/local/templates/tomsk/css/pages/contacts.css?178351762815118*/
/* ============================================================
   Страница «Контакты» — ct-*
   ============================================================ */

/* ── Shared heading ───────────────────────────────────────── */
.ct-hd {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.ct-hd--no-mb { margin-bottom: 0; }
.ct-hd__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
  line-height: 18px;
  margin-bottom: 7px;
}
.ct-hd__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: #080f1e;
  margin-bottom: 12px;
}
.ct-hd__accent { color: #fd8320; }
.ct-hd__line {
  width: 60px;
  height: 3px;
  background: #fd8320;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Info bar ─────────────────────────────────────────────── */
.ct-infobar {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.ct-infobar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 0 20px;
}
.ct-infobar__item:first-child { padding-left: 0; }
.ct-infobar__item:last-child  { padding-right: 0; }
.ct-infobar__item + .ct-infobar__item {
  border-left: 1px solid #e5e7eb;
}
.ct-infobar__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ct-infobar__icon--green  { background: #d8f3dc; }
.ct-infobar__icon--orange { background: #ffedd5; }
.ct-infobar__icon img { display: block; }
.ct-infobar__label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  line-height: 16px;
  margin-bottom: 2px;
}
.ct-infobar__value {
  font-size: 16px;
  font-weight: 700;
  color: #080f1e;
  line-height: 24px;
}
a.ct-infobar__value { transition: color .2s; }
a.ct-infobar__value:hover { color: #50c128; }

/* ── Director card ────────────────────────────────────────── */
.ct-director {
  background: #ffffff;
  border: 1px solid #d1e8d8;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.ct-director__left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ct-director__photo {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.ct-director__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ct-director__role {
  font-size: 11px;
  font-weight: 600;
  color: #080f1e;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  line-height: 16.5px;
  margin-bottom: 6px;
}
.ct-director__name {
  font-size: 24px;
  font-weight: 700;
  color: #080f1e;
  line-height: 32px;
}
.ct-director__links {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.ct-director__link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d1e8d8;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 7px 15px;
  font-size: 14px;
  color: #080f1e;
  font-weight: 400;
  white-space: nowrap;
  transition: background .2s;
}
.ct-director__link:hover { background: #f0f9f2; }
.ct-director__link-icon {
  width: 24px;
  height: 24px;
  background: #fd8320;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ct-director__link-icon img { display: block; }

/* ── Staff grid ───────────────────────────────────────────── */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ct-card {
  background: #fff;
  border: 1px solid #e3ebe6;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 124px;
}
.ct-card__photo {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.ct-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ct-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ct-card__role {
  font-size: 11px;
  font-weight: 600;
  color: #7a8f86;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  line-height: 16.5px;
}
.ct-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #080f1e;
  line-height: 22px;
}
.ct-card__dept {
  font-size: 12px;
  color: #5a6b65;
  line-height: 18px;
}
.ct-card__contacts {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.ct-card__phone {
  font-size: 14px;
  color: #0f3e2e;
  line-height: 19.5px;
  white-space: nowrap;
}
.ct-card__email {
  font-size: 14px;
  color: #fd8320;
  line-height: 19.5px;
  transition: opacity .2s;
  word-break: break-all;
}
.ct-card__email:hover { opacity: .8; }
.ct-empty {
  border: 1px solid #e3ebe6;
  border-radius: 14px;
  padding: 24px;
  font-size: 14px;
  color: #5a6b65;
  line-height: 22px;
}

/* ── Documents ────────────────────────────────────────────── */
.ct-docs__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.ct-docs__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d7d7d4;
  border-radius: 12px;
  padding: 18px 29px;
  font-size: 14px;
  font-weight: 600;
  color: #080f1e;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
  transition: border-color .2s, background .2s;
}
.ct-docs__all-btn:hover {
  border-color: #50c128;
  background: rgba(80,193,40,.04);
  color: #080f1e;
}
.ct-docs__all-btn img { display: block; }
.ct-docs__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct-doc {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #d7d7d4;
  border-radius: 12px;
  padding: 0 24px;
  min-height: 86px;
}
.ct-doc__icon {
  width: 44px;
  height: 44px;
  background: rgba(80,193,40,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ct-doc__icon img { display: block; }
.ct-doc__body {
  flex: 1;
  min-width: 0;
}
.ct-doc__name {
  font-size: 14.4px;
  font-weight: 600;
  color: #080f1e;
  line-height: 23px;
}
.ct-doc__type {
  font-size: 13px;
  color: rgba(15,23,42,.6);
  line-height: 20px;
}
.ct-doc__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.ct-doc__format {
  font-size: 12px;
  font-weight: 600;
  color: #fd8320;
  min-width: 42px;
  text-align: center;
}
.ct-doc__size {
  font-size: 13px;
  color: rgba(15,23,42,.6);
  min-width: 56px;
  text-align: right;
  white-space: nowrap;
}
.ct-doc__dl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(80,193,40,.1);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(17,24,39,.8);
  white-space: nowrap;
  letter-spacing: .013em;
  transition: background .2s;
}
.ct-doc__dl:hover { background: rgba(80,193,40,.18); color: rgba(17,24,39,.8); }
.ct-doc__dl img { display: block; }

/* ── Feedback section ─────────────────────────────────────── */
.ct-feedback__block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  background: rgba(80,193,40,.1);
  border: 1px solid #d1e8d8;
  border-radius: 20px;
  padding: 37px;
  align-items: start;
}
.ct-fb-info {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}
.ct-fb-info__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #50c128;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 18px;
  margin-bottom: 16px;
}
.ct-fb-info__tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #50c128;
  border-radius: 4px;
  flex-shrink: 0;
}
.ct-fb-info__heading {
  font-size: 24px;
  font-weight: 700;
  color: #080f1e;
  line-height: 32px;
  margin-bottom: 16px;
}
.ct-fb-step {
  border-bottom: 1px solid rgba(45,106,79,.12);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.ct-fb-step--last {
  border-bottom: none;
  margin-bottom: 20px;
}
.ct-fb-step__title {
  font-size: 14px;
  font-weight: 700;
  color: #080f1e;
  line-height: 22.4px;
  margin-bottom: 4px;
}
.ct-fb-step__desc {
  font-size: 12px;
  color: #3d3d3d;
  line-height: 18.6px;
}
.ct-fb-cta {
  background: linear-gradient(159.93deg, #027313 0%, #038c0c 100%);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ct-fb-cta__tag {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 20px;
}
.ct-fb-cta__email {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 32px;
  transition: opacity .2s;
}
.ct-fb-cta__email:hover { opacity: .85; }
.ct-fb-cta__desc {
  font-size: 12px;
  color: rgba(255,255,255,.8);
  line-height: 18px;
}

/* ── Feedback form ────────────────────────────────────────── */
.ct-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 26px rgba(0,0,0,.05);
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
}
.ct-form__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #50c128;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 18px;
  margin-bottom: 13px;
}
.ct-form__tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #50c128;
  border-radius: 50px;
  flex-shrink: 0;
}
.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ct-form__field { margin-bottom: 13px; }
.ct-form__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: .6px;
  text-transform: uppercase;
  line-height: 16px;
  margin-bottom: 6px;
}
.ct-form__input,
.ct-form__select,
.ct-form__textarea {
  width: 100%;
  background: #fafcfa;
  border: 1px solid #d1e8d8;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: #080f1e;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.ct-form__input,
.ct-form__select { height: 40px; padding: 0 14px; }
.ct-form__select {
  height: 42px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.ct-form__textarea {
  height: 90px;
  padding: 11px 14px;
  resize: none;
}
.ct-form__input:focus,
.ct-form__select:focus,
.ct-form__textarea:focus {
  border-color: #50c128;
  box-shadow: 0 0 0 3px rgba(80,193,40,.12);
}
.ct-form__input::placeholder,
.ct-form__textarea::placeholder { color: #757575; }
.ct-form__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 11px;
  color: #6b7280;
  line-height: 17.6px;
  margin-bottom: 13px;
}
.ct-form__counter { white-space: nowrap; flex-shrink: 0; }
.ct-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
  cursor: pointer;
}
.ct-form__checkbox {
  width: 13px;
  height: 13px;
  min-width: 13px;
  border: 1px solid #6b7280;
  border-radius: 2.5px;
  margin-top: 2px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  transition: background .15s, border-color .15s;
}
.ct-form__checkbox:checked {
  background: #50c128;
  border-color: #50c128;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7' fill='none'%3E%3Cpath d='M1 3l2.5 2.5L8 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.ct-form__check-text {
  font-size: 12px;
  color: #6b7280;
  line-height: 18px;
}
.ct-form__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ct-form__draft {
  font-size: 11px;
  color: #6b7280;
  line-height: 17.6px;
}
.ct-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to left, #50c128, #38ad0e);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  height: 40px;
  white-space: nowrap;
  transition: opacity .2s, box-shadow .2s;
}
.ct-form__submit:hover {
  opacity: .92;
  box-shadow: 0 4px 16px rgba(56,173,14,.35);
}

/* Responsive */
@media (max-width: 1275px) {
    .ct-director{
        flex-wrap: wrap;
    }
}
@media (max-width: 1024px) {
  .ct-feedback__block { grid-template-columns: 1fr; gap: 30px; }
  .ct-director { flex-wrap: wrap; gap: 20px; }
  .ct-director__links { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .ct-infobar { flex-direction: column; align-items: stretch; gap: 0; }
  .ct-infobar__item { padding: 16px 0; }
  .ct-infobar__item + .ct-infobar__item {
    border-left: none;
    border-top: 1px solid #e5e7eb;
  }
  .ct-grid { grid-template-columns: 1fr; }
  .ct-director { flex-direction: column; align-items: flex-start; }
  .ct-director__photo { width: 100px; height: 100px; }
  .ct-director__name { font-size: 20px; }
  .ct-docs__header { flex-direction: column; gap: 16px; }
  .ct-docs__all-btn { align-self: flex-start; }
  .ct-doc { flex-wrap: wrap; padding: 16px; min-height: auto; gap: 12px; flex-direction: column; }
  .ct-doc__meta { flex-wrap: wrap; gap: 10px; margin-top: 4px; }
  .ct-form__row { grid-template-columns: 1fr; }
  .ct-form__foot { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ct-form__submit { width: 100%; }
}
@media (max-width: 600px) {
  .ct-card { gap: 12px; }
  .ct-card__photo { width: 64px; height: 64px; }
  .ct-card__name { font-size: 14px; line-height: 20px; }
  .ct-feedback__block { padding: 20px; }
  .ct-form { padding: 20px 16px; }
  .ct-hd__title { font-size: 22px; line-height: 28px; }
  .ct-fb-info__heading { font-size: 20px; line-height: 28px; }
    .ct-director__link {
        font-size: 13px;
    }
}

/* End */


/* Start:/local/templates/tomsk/css/pages/investors.css?17821937247702*/
/* ============================================================
   Страница «Инвестору» — inv-*
   ============================================================ */

.inv-page__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ---------- Заголовок ---------- */
.inv-hd {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inv-hd__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #50c128;
}
.inv-hd__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #080f1e;
  margin: 0;
}
.inv-hd__accent { color: #fd8320; }
.inv-hd__line {
  width: 60px;
  height: 3px;
  background: #fd8320;
  border-radius: 2px;
  margin-top: 2px;
}

/* ---------- Карточка: описание ТОР ---------- */
.inv-tor {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  background: #ffffff;
  border: 1px solid #d1e8d8;
  border-radius: 20px;
  padding: 40px;
}
.inv-tor__text {
  flex: 1;
  min-width: 0;
}
.inv-tor__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #080f1e;
  margin: 0 0 16px;
}
.inv-tor__para {
  font-size: 15px;
  line-height: 25.5px;
  color: #3d4b56;
  margin: 0 0 14px;
}
.inv-tor__para:last-child { margin-bottom: 0; }
.inv-tor__img-wrap {
  flex: 0 0 345px;
  height: 230px;
  position: relative;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.inv-tor__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---------- Карточка: льготы и преференции ---------- */
.inv-benefits {
  background: #ffffff;
  border: 1px solid #d1e8d8;
  border-radius: 20px;
  padding: 30px;
}
.inv-benefits__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: #080f1e;
  margin: 0 0 24px;
}
.inv-benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 17px;
}
.inv-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #d1e8d8;
  border-radius: 12px;
  padding: 13px 17px;
}
.inv-benefit-item__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #50c128;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.inv-benefit-item__text {
  font-size: 14px;
  line-height: 21.7px;
  color: #080f1e;
  margin: 0;
}

/* ---------- Карточка: директор ТОР ---------- */
.inv-director-wrap {
  background: #ffffff;
  border: 1px solid #d1e8d8;
  border-radius: 12px;
}
.inv-director {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
}
.inv-director__left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 0;
}
.inv-director__photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.2);
  overflow: hidden;
}
.inv-director__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inv-director__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.inv-director__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #080f1e;
  line-height: 1.4;
}
.inv-director__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #080f1e;
}
.inv-director__desc {
  font-size: 14px;
  line-height: 21px;
  color: #080f1e;
  margin-top: 4px;
}
.inv-director__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  min-width: 310px;
}
.inv-director__link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d1e8d8;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 7px 16px;
  color: #080f1e;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.inv-director__link:hover { background: #f5faf6; }
.inv-director__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #fd8320;
  flex-shrink: 0;
}
.inv-director__link-icon img,
.inv-director__link-icon svg { display: block; }

/* ---------- Площадки (ЮЖНАЯ / СЕВЕРНАЯ) ---------- */
.inv-site {
  background: #ffffff;
  border: 1px solid #d1e8d8;
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.inv-site__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: #080f1e;
  text-transform: uppercase;
  margin: 0;
}
.inv-site__text {
  font-size: 15px;
  line-height: 26.25px;
  color: #3d3d3d;
  margin: 0;
}

/* Bold lead paragraph inside tor card */
.inv-tor__para--bold {
  font-weight: 700;
}

/* ---------- Hero-фото (Промпарк) ---------- */
.inv-hero-img {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}
.inv-hero-img__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inv-hero-img__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27,67,50,0.08), rgba(27,67,50,0.55));
  border-radius: 28px;
}
.inv-hero-img__caption {
  position: absolute;
  bottom: 40px;
  left: 38px;
  right: 18px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* ---------- Телефон для связи ---------- */
.inv-phone-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #d1e8d8;
  border-radius: 12px;
  padding: 20px;
}
.inv-phone-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #080f1e;
}

/* Responsive */
@media (max-width: 1200px) {
  .inv-tor { gap: 30px; }
  .inv-tor__img-wrap { flex: 0 0 280px; height: 200px; }
}
@media (max-width: 1024px) {
  .inv-tor { flex-direction: column; gap: 24px; }
  .inv-tor__text { flex: none; width: 100%; }
  .inv-tor__img-wrap { flex: none; width: 100%; height: 280px; }
  .inv-director { flex-direction: column; align-items: flex-start; gap: 24px; }
  .inv-director__links { width: 100%; }
  .inv-director__link { justify-content: start; }
  .inv-hero-img { height: 360px; }
}
@media (max-width: 768px) {
  .inv-hd__title { font-size: 22px; }
  .inv-benefit-list { grid-template-columns: 1fr; }
  .inv-tor__img-wrap { flex: none; width: 100%; height: 200px; }
  .inv-director__left { flex-direction: column; align-items: center; text-align: center; }
  .inv-director__info { align-items: center; }
  .inv-hero-img { height: 280px; border-radius: 20px; }
  .inv-hero-img__caption { font-size: 18px; bottom: 24px; left: 24px; }
  .inv-phone-card { flex-direction: column; align-items: flex-start; }
  .inv-phone-card__title { font-size: 18px; }
}
@media (max-width: 600px) {
  .inv-hd__title { font-size: 20px; }
  .inv-tor { padding: 20px; }
  .inv-tor__title { font-size: 20px; }
  .inv-benefits { padding: 20px; }
  .inv-benefits__title { font-size: 16px; margin-bottom: 16px; }
  .inv-director { padding: 20px; }
  .inv-director__name { font-size: 20px; }
  .inv-director__photo { width: 100px; height: 100px; }
  .inv-hero-img { height: 220px; border-radius: 16px; }
  .inv-hero-img__caption { font-size: 16px; bottom: 16px; left: 16px; }
  .inv-site { padding: 20px; }
  .inv-site__title { font-size: 16px; }
}

/* End */


/* Start:/local/templates/tomsk/css/pages/cooperation.css?178332306411802*/
/* ============================================================
   Страница «Сотрудничество» — cop-*
   ============================================================ */

.cop-page__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ---------- Заголовок ---------- */
.cop-hd {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cop-hd__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
}
.cop-hd__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: #080f1e;
  margin: 0;
}
.cop-hd__accent { color: #fd8320; }
.cop-hd__line {
  width: 60px;
  height: 3px;
  background: #fd8320;
  border-radius: 2px;
  margin-top: 2px;
}

/* ---------- Карточка: Закупочная деятельность ---------- */
.cop-acq {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: #ffffff;
  border: 1px solid #d1e8d8;
  border-radius: 20px;
  padding: 45px 41px 41px;
}
.cop-acq__text {
  flex: 1;
  min-width: 0;
}
.cop-acq__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: #1b4332;
  margin: 0 0 16px;
}
.cop-acq__desc {
  font-size: 14px;
  line-height: 23.1px;
  color: #3d3d3d;
  margin: 0 0 24px;
}
.cop-acq__btns {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cop-acq__btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cop-acq__btn:hover { opacity: 0.85; }
.cop-acq__btn--primary {
  background: #50c128;
  color: #ffffff;
  border-radius: 8px;
  padding: 11px 20px;
}
.cop-acq__btn--secondary {
  background: rgba(255,255,255,0.15);
  border: 1px solid #d1e8d8;
  border-radius: 10px;
  padding: 12px 25px 13px;
  color: #1b4332;
}
.cop-acq__img-wrap {
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
}
.cop-acq__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Карточки: партнёр / ЭТП ---------- */
.cop-partner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.cop-partner-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #d1e8d8;
  border-radius: 18px;
  padding: 25px;
}
.cop-partner-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  color: #1b4332;
  margin: 0;
}
.cop-partner-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 20.15px;
  color: #6b7280;
  margin: 0;
  flex: 1;
}
.cop-partner-card__btn {
  display: block;
  border: 2px solid #50c128;
  border-radius: 10px;
  padding: 17px 13px 13px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #50c128;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.cop-partner-card__btn:hover {
  background: #50c128;
  color: #ffffff;
}

/* ---------- Табы ---------- */
.cop-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 13px;
  border-bottom: 1px solid #d1e8d8;
}
.cop-tab {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 20.8px;
  padding: 8px 16px;
  border-radius: 8px;
  color: #6b7280;
}
.cop-tab--active {
  background: #50c128;
  color: #ffffff;
}

/* ---------- Каталог закупок ---------- */
.cop-catalog {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.cop-cat-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  box-shadow: 0 1px 1.5px rgba(0,0,0,0.04);
  overflow: hidden;
}
.cop-cat-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
}
.cop-cat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #50c128;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cop-cat-icon img { display: block; width: 24px; height: 24px; }
.cop-cat-body {
  flex: 1;
  min-width: 0;
}
.cop-cat-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: #080f1e;
  margin: 0;
}
.cop-cat-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #6b7280;
  margin: -2px 0 0;
}
.cop-cat-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.cop-cat-meta__total {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}
.cop-cat-meta__total strong { font-weight: 700; color: #080f1e; }
.cop-cat-badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 99px;
  background: rgba(80,193,40,0.1);
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}
.cop-cat-expand {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: block;
}

/* Строки закупок внутри карточки */
.cop-cat-items { border-top: 1px solid #f3f4f6; }
.cop-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  min-height: 56px;
}
.cop-cat-item + .cop-cat-item { border-top: 1px solid #f9fafb; }
.cop-cat-item__name {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #080f1e;
  margin: 0;
}
.cop-cat-item__date {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #9ca3af;
  white-space: nowrap;
}

/* Бейджи статуса */
.cop-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  border-radius: 99px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.cop-status__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cop-status--active {
  background: rgba(80,193,40,0.1);
  border: 1px solid #50c128;
  color: #50c128;
}
.cop-status--active .cop-status__dot { background: #50c128; }
.cop-status--done {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #080f1e;
}
.cop-status--done .cop-status__dot { background: #9ca3af; }

/* Ссылка «Показать все» */
.cop-cat-show-all { border-top: 1px solid #f9fafb; padding: 12px 24px; }
.cop-cat-show-all a {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #3a8a3e;
  text-decoration: none;
}
.cop-cat-show-all a:hover { text-decoration: underline; }

/* ---------- Плоский список закупок ---------- */
.cop-list {
  background: #ffffff;
  border: 1px solid #d1e8d8;
  border-radius: 20px;
  padding: 0 41px;
  margin-top: 8px;
}
.cop-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(45, 106, 79, 0.12);
}
.cop-list__item:last-child { border-bottom: none; }
.cop-list__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.cop-list__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #080f1e;
  margin: 0;
}
.cop-list__date {
  font-size: 11px;
  font-weight: 600;
  line-height: 17.6px;
  color: #6b7280;
}

/* ---------- Пагинация ---------- */
.cop-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.cop-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  background: rgba(80, 193, 40, 0.08);
  border: 1px solid rgba(80, 193, 40, 0.2);
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cop-pager__btn:hover { background: rgba(80, 193, 40, 0.18); }
.cop-pager__btn--active {
  background: linear-gradient(to left, #50c128 0%, #38ad0e 105%);
  border-color: transparent;
  color: #ffffff;
}
.cop-pager__btn--active:hover { opacity: 0.9; }
.cop-pager__dots {
  font-size: 16px;
  color: #94a3b8;
  line-height: 44px;
  min-width: 14px;
  text-align: center;
}

/* ---------- Детальная страница закупки ---------- */
.cop-detail {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cop-detail__head {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cop-detail__date {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #6b7280;
  margin: 0;
}
.cop-detail__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  color: #080f1e;
  margin: 0;
}
.cop-detail__body {
  font-size: 16px;
  line-height: 1.9;
  color: #3d3d3d;
}
.cop-detail__body p { margin: 0; }
.cop-detail__body p + p { margin-top: 0.3em; }
.cop-detail__body .cop-detail__p-gap { margin-top: 1.5em; }
.cop-detail__highlight {
  font-weight: 600;
  color: #fe6904;
}
.cop-detail__link {
  font-weight: 600;
  color: #50c128;
  text-decoration: none;
}
.cop-detail__link:hover { text-decoration: underline; }

.cop-detail__files {
  padding-top: 20px;
}
.cop-detail__files-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cop-detail__file-row {
  background: rgba(249,250,251,0.5);
  border: 1px solid #d7d7d4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 17px 17px 24px;
}
.cop-detail__file-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
.cop-detail__file-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cop-detail__file-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #080f1e;
  margin: 0;
}
.cop-detail__file-meta {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #6b7280;
  margin: 0;
}
.cop-detail__dl-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(80,193,40,0.1);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 16px;
  height: 38px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(17,24,39,0.8);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.cop-detail__dl-btn:hover { background: rgba(80,193,40,0.2); }

/* Responsive */
@media (max-width: 1200px) {
  .cop-acq { gap: 30px; }
  .cop-acq__img-wrap { width: 260px; height: 185px; }
}
@media (max-width: 1024px) {
  .cop-acq { flex-direction: column; }
  .cop-acq__img-wrap { width: 100%; height: 240px; }
}
@media (max-width: 768px) {
  .cop-hd__title   { font-size: 22px; line-height: 28px; }
  .cop-acq         { padding: 28px 24px 24px; }
  .cop-acq__title  { font-size: 22px; }
  .cop-partner     { grid-template-columns: 1fr; }
  .cop-cat-title   { font-size: 16px; line-height: 26px; }
  .cop-cat-item    { flex-wrap: wrap; }
  .cop-cat-item__date { margin-left: auto; }
  .cop-list        { padding: 0 20px; }
  .cop-list__title { font-size: 15px; }
  .cop-list__item  { flex-wrap: wrap; gap: 12px; }
  .cop-detail      { padding: 24px 20px; }
  .cop-detail__title { font-size: 22px; }
}
@media (max-width: 600px) {
  .cop-hd__title   { font-size: 20px; }
  .cop-acq         { padding: 20px 16px; }
  .cop-acq__title  { font-size: 20px; }
  .cop-acq__btns   { flex-wrap: wrap; }
  .cop-acq__btn    { width: 100%; justify-content: center; }
  .cop-cat-header  { padding: 16px; }
  .cop-cat-item    { padding: 12px 16px; }
  .cop-cat-show-all { padding: 10px 16px; }
  .cop-tabs        { flex-wrap: wrap; }
  .cop-detail      { padding: 16px; border-radius: 16px; }
  .cop-detail__title { font-size: 20px; }
  .cop-detail__file-row { flex-wrap: wrap; }
  .cop-detail__dl-btn { width: 100%; justify-content: center; }
}
@media (max-width: 540px) {
    .cop-page__content .cop-list__item{
        flex-direction: column;
        align-items: start;
    }
}
/* End */


/* Start:/local/templates/tomsk/css/pages/events.css?17821937246530*/
/* ============================================================
   Страница категории закупок / событий — evt-*
   ============================================================ */

/* ---------- Заголовок категории ---------- */
.evt-cat-hd {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.evt-cat-hd__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: #080f1e;
  margin: 0;
}
.evt-cat-hd__title--orange { color: #fd8320; }
.evt-cat-hd__line {
  width: 64px;
  height: 4px;
  background: #fd8320;
  border-radius: 99px;
}

/* ---------- Карточка категории ---------- */
.evt-cat-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  box-shadow: 0 1px 1.5px rgba(0,0,0,0.04);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
}
.evt-cat-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #50c128;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.evt-cat-icon img { width: 28px; height: 28px; display: block; }
.evt-cat-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.evt-cat-body__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #080f1e;
  margin: 0;
}
.evt-cat-body__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #080f1e;
  margin: 0;
}
.evt-cat-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 14px;
  line-height: 21px;
  color: #6b7280;
}
.evt-cat-stats__item strong { font-weight: 600; color: #080f1e; }
.evt-cat-stats__item strong.green { color: #50c128; }

/* ---------- Карточка события ---------- */
.evt-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
}
.evt-card__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 32px;
}
.evt-card__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.evt-card__status-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.evt-status-note {
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: #50c128;
}
.evt-card__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #080f1e;
  margin: 0;
}
.evt-card__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #080f1e;
  margin: 0;
}

/* ---------- Инфо-грид ---------- */
.evt-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.evt-info-card {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px;
}
.evt-info-card__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}
.evt-info-card__icon img { width: 20px; height: 20px; display: block; }
.evt-info-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.evt-info-card__label {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #6b7280;
}
.evt-info-card__value {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #080f1e;
}

/* ---------- Контактный блок ---------- */
.evt-contact-box {
  background: #e8f5e9;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.evt-contact-box__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #080f1e;
  margin: 0;
}
.evt-contact-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.evt-contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #080f1e;
  text-decoration: none;
}
.evt-contact-link img { width: 16px; height: 16px; display: block; flex-shrink: 0; }

/* ---------- Секция файлов ---------- */
.evt-files {
  border-top: 1px solid #f3f4f6;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.evt-files__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #080f1e;
}
.evt-files__title img { width: 20px; height: 20px; display: block; flex-shrink: 0; }
.evt-files__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.evt-file-row {
  background: rgba(249,250,251,0.5);
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px;
}
.evt-file-row__icon { flex-shrink: 0; width: 20px; height: 20px; }
.evt-file-row__icon img { width: 20px; height: 20px; display: block; }
.evt-file-row__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.evt-file-row__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #080f1e;
  margin: 0;
}
.evt-file-row__meta {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #6b7280;
  margin: 0;
}
.evt-dl-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(80,193,40,0.1);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 16px;
  height: 38px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(17,24,39,0.8);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.evt-dl-btn:hover { background: rgba(80,193,40,0.2); }
.evt-dl-btn img { width: 16px; height: 16px; display: block; flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .evt-cat-card  { padding: 24px; }
  .evt-card__main { padding: 32px 24px; }
  .evt-files     { padding: 24px; }
}
@media (max-width: 768px) {
  .evt-cat-hd__title   { font-size: 22px; }
  .evt-cat-body__title { font-size: 20px; }
  .evt-card__title     { font-size: 20px; line-height: 28px; }
  .evt-card__main      { padding: 24px 20px; }
  .evt-files           { padding: 20px; }
  .evt-info-grid       { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .evt-cat-card        { flex-direction: column; }
  .evt-cat-hd__title   { font-size: 20px; }
  .evt-card__title     { font-size: 18px; }
  .evt-card__main      { padding: 20px 16px; }
  .evt-files           { padding: 16px; }
  .evt-file-row        { flex-wrap: wrap; }
  .evt-dl-btn          { width: 100%; justify-content: center; }
  .evt-cat-stats       { flex-wrap: wrap; gap: 4px 16px; }
}

/* End */


/* Start:/local/templates/tomsk/css/pages/services.css?178351762819136*/
/* ============================================================
   Страница «Центр развития бизнеса» — fi-*
   ============================================================ */

.fi-page { padding-top: 48px; padding-bottom: 80px; }
.fi-layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

/* ── Сайдбар ── */
.fi-sidebar {
  flex: 0 0 280px;
  min-width: 0;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.fi-sidebar__inner {
  position: static;
}
.fi-sidebar__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
  line-height: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(80,193,40,0.1);
  margin-bottom: 4px;
}
.fi-nav {
  display: flex;
  flex-direction: column;
}
.fi-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(80,193,40,0.1);
  font-size: 14px;
  font-weight: 600;
  line-height: 19.6px;
  color: #080f1e;
  text-decoration: none;
  transition: color 0.15s;
}
.fi-nav__item--active { color: #50c128; }
.fi-nav__item--last { border-bottom: none; }
.fi-nav__item:hover { color: #50c128; }
.fi-nav__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: rgba(80,193,40,0.1);
  color: #50c128;
}

/* ── Основная область ── */
.fi-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* ── Секция ── */
.fi-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.fi-section--last { gap: 24px; }

/* ── Заголовок блока ── */
.fi-hd {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fi-hd__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
  line-height: 18px;
}
.fi-hd__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: #080f1e;
  margin: 0;
}
.fi-hd__accent { color: #fd8320; }
.fi-hd__line {
  width: 60px;
  height: 3px;
  background: #fd8320;
  border-radius: 2px;
  margin-top: 2px;
}
.fi-hd__sub {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #5f6f67;
  margin: 0;
}

/* ── Hero ── */
.fi-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  border: 1px solid #d1e8d8;
  border-radius: 28px;
  box-shadow: 0px 24px 52px 0px rgba(0,0,0,0.05);
  overflow: hidden;
  min-height: 380px;
}
.fi-hero__text-col {
  background: #ffffff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  order: 1;
}
.fi-hero__img-col {
  position: relative;
  overflow: hidden;
  order: 2;
  min-height: 380px;
  background: #e8f0eb;
}
.fi-hero__img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 102.5%;
  object-fit: cover;
  top: 7%;
}
.fi-hero__body {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.fi-hero__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 43.7px;
  color: #080f1e;
  letter-spacing: -0.5px;
  margin: 0;
}
.fi-hero__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 24.75px;
  color: #3d3d3d;
  margin: 0;
}
.fi-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 28px;
  background: linear-gradient(270deg, #50c128 0%, #38ad0e 105.62%);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.15s;
}
.fi-hero__btn:hover { opacity: 0.9; }
.fi-hero__btn-icon { flex-shrink: 0; display: block; }

/* ── Когда мы полезны? ── */
.fi-when-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fi-when-item {
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 2px 0;
}
.fi-when-item__icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(80,193,40,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fi-when-item__icon { display: block; object-fit: contain; }
.fi-when-item__text {
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  color: #080f1e;
}

/* ── Сервисы для инвестора ── */
.fi-tools-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.fi-tools-desc {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  color: rgba(15,23,42,0.6);
  margin: 0;
}
.fi-tools-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 53px;
  padding: 0 24px;
  border: 1px solid #d7d7d4;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #080f1e;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.fi-tools-btn:hover { background: rgba(0,0,0,0.04); }
.fi-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  overflow: hidden;
}
.fi-tools-cell {
  background: rgba(80,193,40,0.1);
  border: 1px solid #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.fi-tools-cell__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 22.88px;
  color: #080f1e;
  margin: 0;
}
.fi-tools-cell__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 23.94px;
  color: rgba(15,23,42,0.6);
  margin: 0;
}
/* ── Инвестиционные предложения ── */
.fi-invest-banner {
  background: linear-gradient(270deg, #50c128 3.3%, #38ad0e 100%);
  box-shadow: 0px 24px 25px rgba(0,0,0,0.05);
  border-radius: 28px;
  padding: 31px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.fi-invest-banner__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0;
}
.fi-invest-banner__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.fi-invest-banner__btn:hover { background: rgba(255,255,255,0.12); }

/* ── Институты развития ── */
.fi-inst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fi-inst-card {
  background: #ffffff;
  border: 1px solid #dbe5df;
  border-radius: 16px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.fi-inst-card__logo {
  flex-shrink: 0;
  width: auto;
  max-width:100%;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fi-inst-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.fi-inst-card__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  color: #080f1e;
  margin: 0;
}
.fi-inst-card__sub {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #8a9790;
  margin: 0;
}
.fi-inst-footer {
  background: rgba(80,193,40,0.1);
  border: 1px solid #dcebe3;
  border-radius: 12px;
  min-height: 87px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 16px 24px;
  text-align: center;
}
.fi-inst-footer p { font-size: 14px; line-height: 22.1px; margin: 0; color: #5f6f67; }
.fi-inst-footer p strong { color: #2d6a4f; font-weight: 700; }

/* ── Путь инвестора ── */
.fi-steps { margin-top: 16px; }
.fi-steps__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
}
.fi-steps__track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(10% + 0px);
  right: calc(10% + 0px);
  height: 2px;
  background: linear-gradient(90deg, #dcebe3 0%, #50c128 50%, #dcebe3 100%);
  z-index: 0;
  transform: translateY(-50%);
}
.fi-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.fi-step__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.fi-step__circle {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #50c128;
  box-shadow: 0 3px 6px rgba(45,106,79,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  flex-shrink: 0;
}
.fi-step__emoji { display: none; }
.fi-step__body { display: flex; flex-direction: column; gap: 10px; }
.fi-step__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  color: #080f1e;
  display: block;
}
.fi-step__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.97px;
  color: #8a9790;
  margin: 0;
}

/* ── Что нужно для старта? ── */
.fi-docs-layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.fi-doc-list {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.fi-doc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.fi-doc-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(80,193,40,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}
.fi-doc-item__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.fi-doc-item__name {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #080f1e;
}
.fi-doc-item__sub {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #8a9790;
  margin: 0;
}
.fi-docs-cta {
  flex-shrink: 0;
  width: 380px;
  background: linear-gradient(139.66deg, rgb(56,173,14) 0%, rgb(80,193,40) 100%);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fi-docs-cta__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #ffffff;
  margin: 0;
}
.fi-docs-cta__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 22.95px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.fi-docs-cta__btn-dl {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 61px;
  background: #ffffff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16.8px;
  color: #080f1e;
  text-align: center;
  text-decoration: none;
  padding: 13px 16px;
  transition: opacity 0.15s;
}
.fi-docs-cta__btn-dl:hover { opacity: 0.9; }
.fi-docs-cta__btn-form {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  background: #fd8320;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16.8px;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.15s;
}
.fi-docs-cta__btn-form:hover { opacity: 0.9; }

/* ── FAQ ── */
.fi-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fi-faq__item {
  background: #ffffff;
  border: 1px solid #dbe5df;
  border-radius: 16px;
  overflow: hidden;
}
.fi-faq__item--open { border-color: #50c128; }
.fi-faq__q {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 25px;
}
.fi-faq__q--static {
  cursor: default;
}
.fi-faq__item--open .fi-faq__q { padding-bottom: 18px; }
.fi-faq__q-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 25.6px;
  color: #080f1e;
}
.fi-faq__toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: rgba(80,193,40,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #50c128;
}
.fi-faq__toggle--open {
  background: #50c128;
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
}
.fi-faq__a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 24.5px;
  color: #5f6f67;
  transition: max-height .28s ease, opacity .22s ease;
}
.fi-faq__item--open .fi-faq__a {
  opacity: 1;
}
.fi-faq__a-inner {
  padding: 0 25px 22px;
}

/* ── Контакты ── */
.fi-contacts-layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.fi-contact-list {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.fi-contact-card {
  background: #ffffff;
  border: 1px solid rgba(80,193,40,0.1);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 86px;
}
.fi-contact-card--tall { min-height: 105px; }
.fi-contact-card--social { align-items: flex-start; }
.fi-contact-card__icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(80,193,40,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fi-contact-card__icon-wrap--empty { background: rgba(80,193,40,0.1); }
.fi-contact-card__icon-wrap img { display: block; object-fit: contain; }
.fi-contact-card__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
  min-width: 0;
}
.fi-contact-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #8a9790;
  line-height: 19.2px;
}
.fi-contact-card__value {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #080f1e;
}
.fi-contact-card__sub {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #8a9790;
}
.fi-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.fi-social-link {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(80,193,40,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s;
}
.fi-social-link:hover { background: rgba(80,193,40,0.2); }
.fi-social-link img { display: block; object-fit: contain; }
.fi-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}
.fi-social-link--full {
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: 38px;
  height: 38px;
}
.fi-social-link--full:hover { background: transparent; opacity: 0.8; }
.fi-social-link--full img { width: 38px; height: 38px; }
.fi-map-card {
  flex: 1;
  min-height: 568px;
  background: rgba(80,193,40,0.1);
  border: 1px solid rgba(80,193,40,0.1);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
}
.fi-map-card__map {
  flex: 1 1 auto;
  min-height: 420px;
  background: #e7efe9;
}
.fi-map-card__map .bx-yandex-view-layout {
  width: 100% !important;
  height: 100% !important;
}
.fi-map-card__map ymaps,
.fi-map-card__map [class*="ymaps"] {
  border-radius: 0;
}
.fi-map-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}
.fi-map-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: #080f1e;
  text-align: center;
  margin: 0;
}
.fi-map-card__sub {
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  color: #8a9790;
  text-align: center;
  margin: 0;
}
.fi-map-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 27px;
  background: linear-gradient(90deg, #50c128 0%, #38ad0e 105.62%);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 15px;
  color: #ffffff;
  text-decoration: none;
  margin-top: 16px;
  transition: opacity 0.15s;
}
.fi-map-card__btn:hover { opacity: 0.9; }
/* Responsive */
@media (max-width: 1100px) {
  .fi-inst-grid  { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .fi-tools-cell { padding: 36px 28px; }
  .fi-hero       { grid-template-columns: 1fr 340px; }
  .fi-hero__title { font-size: 30px; line-height: 36px; }
}
@media (max-width: 1024px) {
  .fi-layout        { flex-direction: column; gap: 24px; overflow-x: hidden; }
  .fi-sidebar       { position: static; flex: none; width: 100%; min-width: 0; }
  .fi-sidebar__inner { position: static; min-width: 0; }
  .fi-nav           { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 4px; scrollbar-width: none; }
  .fi-nav::-webkit-scrollbar { display: none; }
  .fi-nav__item     { flex-shrink: 0; border-bottom: none; border: 1px solid rgba(80,193,40,.15); border-radius: 20px; padding: 8px 14px; font-size: 13px; white-space: nowrap; justify-content: flex-start; }
  .fi-nav__arrow    { display: none; }
  .fi-contacts-layout { flex-direction: column; }
  .fi-contact-list  { flex: none; width: 100%; }
  .fi-map-card      { min-height: 320px; width: 100%; }
  .fi-map-card__map { min-height: 320px; }
  .fi-steps__track::before { left: 10%; right: 10%; }  .fi-main {max-width: 100%;}
}
@media (max-width: 768px) {
  .fi-hd__title     { font-size: 22px; line-height: 28px; }
  .fi-hero          { grid-template-columns: 1fr; }
  .fi-hero__img-col { display: none; }
  .fi-hero__text-col { padding: 32px 24px; }
  .fi-hero__title   { font-size: 24px; line-height: 30px; }
  .fi-invest-banner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .fi-invest-banner__title { font-size: 18px; }
  .fi-inst-grid     { grid-template-columns: repeat(2, 1fr); }
  .fi-steps__track  { grid-template-columns: 1fr; }
  .fi-steps__track::before { display: none; }
  .fi-step          { flex-direction: row; text-align: left; align-items: flex-start; gap: 16px; }
  .fi-step__top     { flex-direction: row; align-items: center; gap: 12px; flex-shrink: 0; }
  .fi-step__body    { min-width: 0; }
  .fi-docs-layout   { flex-direction: column; }
  .fi-docs-cta      { width: 100%; }
  .fi-tools-row     { flex-direction: column; align-items: flex-start; }
  .fi-tools-btn     { width: 100%; justify-content: center; }
  .fi-tools-grid    { grid-template-columns: 1fr; }
  .fi-tools-cell    { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .fi-page          { padding-top: 32px; padding-bottom: 48px; }
  .fi-main          { gap: 36px; }
  .fi-hd__title     { font-size: 20px; }
  .fi-hero__text-col { padding: 24px 20px; }
  .fi-hero__title   { font-size: 20px; }
  .fi-inst-grid     { grid-template-columns: 1fr; }
  .fi-inst-card     { padding: 20px; }
  .fi-contact-card  { min-height: auto; }
  .fi-map-card      { min-height: 260px; }
  .fi-map-card__map { min-height: 260px; }
  .fi-docs-cta__btn-dl { height: auto; min-height: 54px; padding: 14px 16px; }
  .fi-invest-banner { padding: 24px 20px; border-radius: 20px; }
  .fi-invest-banner__btn { width: 100%; justify-content: center; }
}

/* End */


/* Start:/local/templates/tomsk/css/pages/investment-proposals.css?17830642822195*/
/* ============================================================
   Страница «Инвестиционные предложения» — ip-*
   ============================================================ */

.ip-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 6px;
}

.ip-header__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
}

.ip-header__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: #080f1e;
  margin: 0;
}

.ip-header__accent {
  color: #fd8320;
}

.ip-header__line {
  width: 60px;
  height: 3px;
  background: #fd8320;
  border-radius: 2px;
  margin-top: 2px;
}

.ip-header__sub {
  font-size: 13px;
  line-height: 1.5;
  color: #5f6f67;
  margin: 0;
}

.ip-cards-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
}

.ip-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ip-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f0f7f2;
  border: 1px solid rgba(80, 193, 40, 0.1);
  border-radius: 12px;
  padding: 17px 20px;
}

.ip-card__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(45, 106, 79, 0.06);
}

.ip-card__title {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: #080f1e;
  margin: 0;
}

.ip-card__btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: linear-gradient(45deg, #50c128 14.645%, #38ad0e 85.355%);
  text-decoration: none;
  transition: opacity 0.2s;
}

.ip-card__btn:hover {
  opacity: 0.85;
}

/* Responsive */
@media  (max-width: 1024px) {
    .ip-card__title{
        hyphens: auto;
    }
}
@media (max-width: 768px) {
  .ip-header__title { font-size: 22px; line-height: 28px; }
  .ip-cards-wrap { padding: 24px 20px; }
  .ip-card { padding: 14px 16px; }
}

@media (max-width: 600px) {
  .ip-header__title { font-size: 20px; }
  .ip-cards-wrap { padding: 16px; }
}

/* End */


/* Start:/local/templates/tomsk/css/pages/choose-yours.css?178540316219589*/
/* ============================================================
   choose-yours — page styles
   ============================================================ */

.cy-page {
  padding: 60px 0 80px;
}

[data-choose-yours-ajax-container].is-loading {
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* === SHARED === */
.cy-section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50c128;
  margin-bottom: 8px;
  line-height: 18px;
}

.cy-section-heading {
  font-size: 28px !important;
  font-weight: 700;
  line-height: 34px;
  color: #080f1e;
  white-space: nowrap;
}

.cy-section-heading .cy-orange { color: #fd8320; }
.cy-section-heading .cy-dkgreen { color: #1b4332; }

.cy-heading-underline {
  width: 60px;
  height: 3px;
  background: #fd8320;
  border-radius: 2px;
  margin-top: 8px;
}

/* Buttons */
.cy-btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fd8320;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.49;
}

.cy-btn-orange-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fd8320;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.49;
}

.cy-btn-green-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #50c128;
  color: #50c128;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.49;
}

/* =====================================================
   BLOCK 1 — Hero / About
   ===================================================== */

.cy-b1 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Header row */
.cy-b1__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.cy-b1__heading-wrap {
  flex-shrink: 0;
}

/* Hero 2-col card */
.cy-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  border: 1px solid #d1e8d8;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(0,0,0,0.05);
}

/* Left white panel */
.cy-hero__left {
  background: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cy-hero__content {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.cy-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(80,193,40,0.1);
  border: 1px solid rgba(80,193,40,0.2);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 50px;
  padding: 9px 19px 9px 11px;
  width: fit-content;
}

.cy-hero__badge-icon {
  width: 27px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cy-hero__badge-text {
  font-size: 14px;
  font-weight: 700;
  color: #080f1e;
  letter-spacing: 0.24px;
  line-height: 15.6px;
}

.cy-hero__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 43.7px;
  color: #080f1e;
  letter-spacing: -0.5px;
  white-space: pre-wrap;
}

.cy-hero__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 24.75px;
  color: #3d3d3d;
  max-width: 700px;
  margin-bottom: 32px;
}

.cy-btn-green-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to left, #38ad0e 0%, #50c128 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 22.4px;
  white-space: nowrap;
}

/* Right image panel */
.cy-hero__right {
  overflow: hidden;
  position: relative;
}

.cy-hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info row (About + Contacts) */
.cy-info-row {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
}

/* About card */
.cy-about {
  background: #fff;
  border: 1px solid #d1e8d8;
  border-radius: 18px;
  padding: 33px 37px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.cy-about__title {
  font-size: 20px;
  font-weight: 700;
  color: #080f1e;
  line-height: 32px;
}

.cy-about__text {
  font-size: 14px;
  font-weight: 400;
  color: #3d3d3d;
  line-height: 24.5px;
}

.cy-about__quote {
  background: #fff5ef;
  border-left: 4px solid #fd8320;
  border-radius: 0 10px 10px 0;
  padding: 20px 20px 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #080f1e;
  line-height: 21.7px;
}

/* Contacts card */
.cy-contacts {
  background: linear-gradient(127.61deg, #027313 0%, #038c0c 100%);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 434px;
  box-sizing: border-box;
}

.cy-contacts__label {
  font-size: 11px;
  font-weight: 700;
  color: #74c69d;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 16px;
}

.cy-contacts__label::before {
  content: '●';
  font-size: 10px;
}

.cy-contacts__heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 20.8px;
  padding-bottom: 10px;
  padding-top: 6px;
}

.cy-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 14px;
}

.cy-contact-row__icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: #fd8320;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cy-contact-row__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cy-contact-row__caption {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.63px;
  text-transform: uppercase;
  line-height: 14.4px;
}

.cy-contact-row__value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 20.8px;
}

.cy-contact-row__value--sm {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 19.2px;
}

.cy-contact-row__value a {
  color: #fff;
  text-decoration: underline;
}

/* =====================================================
   BLOCK 2 — Catalog
   ===================================================== */

.cy-b2 {
  margin-top: 80px;
}

.cy-b2--standalone {
  margin-top: 0;
}

.cy-b2__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 24px;
}

/* Filter tabs */
.cy-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.cy-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 19px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #d1e8d8;
  background: #fff;
  color: #3d3d3d;
  text-decoration: none;
  line-height: normal;
}

.cy-tab--active {
  background: #50c128;
  border-color: #50c128;
  color: #fff;
}

/* Product grid */
.cy-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Product card */
.cy-card {
  background: #fff;
  border: 1px solid #d5e3dd;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cy-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.cy-card__image a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.cy-card__image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
}

.cy-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fd8320;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 9999px;
  white-space: nowrap;
  line-height: 16px;
}

.cy-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cy-card__company {
  font-size: 11px;
  font-weight: 600;
  color: #fd8320;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  line-height: 16.5px;
  margin-bottom: 8px;
}

.cy-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #080f1e;
  line-height: 22px;
  margin-bottom: 8px;
}

.cy-card__name a {
  color: inherit;
  text-decoration: none;
}

.cy-card__name a:hover {
  color: #50c128;
}

.cy-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: #6b7f7a;
  line-height: 21.125px;
  flex: 1;
}

.cy-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  margin-top: 20px;
  border-top: 1px solid #e8f0eb;
}

.cy-card__tag {
  background: rgba(80,193,40,0.1);
  color: #50c128;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  line-height: 16.5px;
}

.cy-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(80,193,40,0.1);
  color: #50c128;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  line-height: 19.2px;
}

.cy-empty {
  padding: 32px;
  border: 1px solid #d5e3dd;
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

.cy-empty__title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.3;
  color: #080f1e;
}

.cy-empty__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #6b7f7a;
}

.news-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.news-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #d5e3dd;
  background: #fff;
  color: #080f1e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.news-pager__btn--active {
  background: #50c128;
  border-color: #50c128;
  color: #fff;
}

.news-pager__btn--nav {
  color: #6b7f7a;
}

.news-pager__btn:not(.news-pager__btn--active):hover {
  border-color: #50c128;
  color: #50c128;
}

.news-pager__ellipsis {
  color: #6b7f7a;
  font-size: 18px;
  line-height: 1;
}

/* =====================================================
   BLOCK 3 — Events + Form
   ===================================================== */

.cy-b3 {
  margin-top: 80px;
}

.cy-b3__header {
  margin-bottom: 28px;
}

.cy-b3__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #fd8320;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  margin-bottom: 7px;
  line-height: 16.5px;
}

.cy-b3__label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #fd8320;
  border-radius: 50%;
  flex-shrink: 0;
}

.cy-b3__title {
  font-size: 24px;
  font-weight: 700;
  color: #080f1e;
  line-height: 32px;
}

.cy-b3__body {
  display: grid;
  grid-template-columns: 413px 1fr;
  gap: 30px;
  align-items: start;
}

/* Event cards */
.cy-events-col:empty {
  display: none;
}

.cy-events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cy-event {
  border-radius: 24px;
  padding: 24px;
}

.cy-event--orange {
  background: #fdf0e6;
  border: 1px solid #f5d5bc;
}

.cy-event--green {
  background: rgba(80,193,40,0.1);
  border: 1px solid #d5e3dd;
}

.cy-event__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cy-event__date {
  background: #fff;
  border: 1px solid #f5d5bc;
  border-radius: 12px;
  padding: 9px 5px;
  text-align: center;
  min-width: 60px;
}

.cy-event--green .cy-event__date {
  background: #fff;
  border-color: #d5e3dd;
}

.cy-event__date-range {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cy-event__date-sep {
  width: 15px;
  height: 1px;
  background: #d5e3dd;
  flex-shrink: 0;
}

.cy-event__year {
  font-size: 11px;
  font-weight: 600;
  color: #50c128;
  line-height: 16.5px;
}

.cy-event__day {
  font-size: 24px;
  font-weight: 700;
  color: #50c128;
  line-height: 32px;
}

.cy-event__month {
  font-size: 12px;
  font-weight: 400;
  color: #6b7f7a;
  line-height: 18px;
}

.cy-event__status {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  line-height: 16px;
  white-space: nowrap;
}

.cy-event__status--open {
  background: #fd8320;
  color: #fff;
}

.cy-event__status--soon {
  background: #edf7f1;
  border: 1px solid #d5e3dd;
  color: #50c128;
}

.cy-event__title {
  font-size: 18px;
  font-weight: 700;
  color: #080f1e;
  line-height: 32px;
  margin-bottom: 12px;
}

.cy-event__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.cy-event__meta-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #4a5e58;
  line-height: 19.5px;
}

.cy-event__meta-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.cy-btn-orange-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fd8320;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 11px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 21px;
}

.cy-btn-green-outline-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  color: #50c128;
  font-size: 14px;
  font-weight: 600;
  padding: 11px;
  border-radius: 12px;
  border: 2px solid #50c128;
  cursor: pointer;
  text-decoration: none;
  line-height: 21px;
  box-sizing: border-box;
}

/* Application form */
.cy-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 24px 26px rgba(0,0,0,0.05);
}

.cy-form-card--full {
  max-width: 100%;
  grid-column: 1 / -1;
}

.cy-form-card__top-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #50c128;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 16px;
}

.cy-form-card__top-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #50c128;
  border-radius: 4px;
  flex-shrink: 0;
}

.cy-form-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #1b4332;
  line-height: 32px;
  margin-bottom: 5px;
}

.cy-form-card__desc {
  font-size: 12px;
  font-weight: 400;
  color: #6b7280;
  line-height: 18.6px;
  margin-bottom: 20px;
}

.cy-form-field {
  margin-bottom: 12px;
}

.cy-form-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.066px;
  text-transform: uppercase;
  margin-bottom: 5px;
  line-height: 16px;
}

.cy-form-input,
.cy-form-select,
.cy-form-textarea {
  width: 100%;
  background: #fafcfa;
  border: 1px solid #d1e8d8;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  line-height: normal;
}

.cy-form-input::placeholder,
.cy-form-textarea::placeholder {
  color: #6b7280;
}

.cy-form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.cy-form-select option { color: #1a1a1a; }

.cy-form-textarea {
  min-height: 76px;
  resize: vertical;
}

.cy-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.cy-form-row .cy-form-field {
  margin-bottom: 0;
}

.cy-form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 0 16px;
}

.cy-form-checkbox-row input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  cursor: pointer;
  accent-color: #50c128;
}

.cy-form-checkbox-text {
  font-size: 12px;
  font-weight: 400;
  color: #6b7280;
  line-height: 16px;
}

.cy-form-checkbox-text a {
  color: #50c128;
  text-decoration: none;
}

.cy-form-checkbox-text a:hover {
  text-decoration: underline;
}

.cy-form-checkbox-row.is-invalid .cy-form-checkbox-text {
  color: #b42318;
}

.cy-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(to left, #38ad0e 0%, #50c128 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  height: 40px;
  padding: 0 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  line-height: 20px;
  box-sizing: border-box;
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.cy-btn-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.25);
}

.cy-feedback-form.is-consent-pending .cy-btn-submit:disabled {
  opacity: 0.38;
}

.cy-feedback-form.is-fields-incomplete .cy-btn-submit:disabled {
  opacity: 0.38;
}

.cy-feedback-form.is-submitting .cy-btn-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  filter: none;
}

.cy-form-message {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.cy-form-message--success {
  background: rgba(80, 193, 40, 0.12);
  border: 1px solid #d1e8d8;
  color: #1b4332;
}

.cy-form-message--error {
  background: #fff4f4;
  border: 1px solid #f3c7c7;
  color: #b42318;
}

.cy-form-message__title {
  font-weight: 700;
  margin-bottom: 6px;
}

.cy-form-message__list {
  margin: 0;
  padding-left: 18px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1200px) {
  .cy-info-row {
    grid-template-columns: 1fr 360px;
  }
  .cy-contacts {
    height: auto;
  }
  .cy-hero {
    grid-template-columns: 1fr 340px;
  }
  .cy-b3__body {
    grid-template-columns: 360px 1fr;
  }
}

@media (max-width: 1024px) {
  .cy-section-heading {
    white-space: normal;
  }
  .cy-hero {
    grid-template-columns: 1fr 280px;
  }
  .cy-info-row {
    grid-template-columns: 1fr;
  }
  .cy-contacts {
    height: auto;
  }
  .cy-b2__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cy-b3__body {
    grid-template-columns: 1fr;
  }
  .cy-events-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .cy-b1__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cy-hero {
    grid-template-columns: 1fr;
  }
  .cy-hero__right {
    height: 260px;
  }
  .cy-hero__title {
    font-size: 28px;
    line-height: 34px;
  }
  .cy-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .cy-events-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .cy-page {
    padding: 40px 0 60px;
  }
  .cy-b2 { margin-top: 48px; }
  .cy-b2--standalone { margin-top: 0; }
  .cy-b3 { margin-top: 48px; }
  .cy-hero__left {
    padding: 32px 24px;
  }
  .cy-hero__title {
    font-size: 24px;
    line-height: 30px;
  }
  .cy-about {
    padding: 24px 20px;
  }
  .cy-products {
    grid-template-columns: 1fr;
  }
  .cy-form-row {
    grid-template-columns: 1fr;
  }
  .cy-form-row .cy-form-field {
    margin-bottom: 12px;
  }
  .cy-form-card {
    padding: 20px;
  }
}

/* End */


/* Start:/local/templates/tomsk/css/pages/agency.css?17821937241752*/
/* ============================================================
   Страница «Об агентстве» — ag-*
   ============================================================ */

.ag-docs-page {
  padding: 40px 0 100px;
}

.ag-docs-hd {
  margin-bottom: 30px;
}

.ag-docs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ag-file-row {
  background: rgba(249, 250, 251, 0.5);
  border: 1px solid #d7d7d4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 17px 17px 24px;
}

.ag-file-row__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

.ag-file-row__icon svg {
  display: block;
  width: 30px;
  height: 30px;
}

.ag-file-row__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ag-file-row__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #080f1e;
  margin: 0;
}

.ag-file-row__meta {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #6b7280;
  margin: 0;
}

.ag-dl-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(80, 193, 40, 0.1);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 16px;
  height: 38px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(17, 24, 39, 0.8);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.ag-dl-btn:hover {
  background: rgba(80, 193, 40, 0.2);
}

.ag-dl-btn svg {
  display: block;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ag-docs-page { padding: 32px 0 60px; }
}

@media (max-width: 600px) {
  .ag-file-row { flex-wrap: wrap; padding: 16px; }
  .ag-dl-btn { width: 100%; justify-content: center; }
}

/* End */


/* Start:/local/templates/tomsk/css/pages/search.css?17836002832763*/


.search-section__title {
  font-size: 40px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 28px;
}

.search-section .search-page {
  max-width: 900px;
  color: #111827;
}

.search-section .search-page form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.search-section .search-page > form > table,
.search-section .search-page > form > table > tbody,
.search-section .search-page > form > table > tbody > tr,
.search-section .search-page > form > table > tbody > tr > td {
  display: contents;
}

.search-section .search-query {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font: inherit;
  padding: 0 14px;
  outline: none;
}

.search-section .search-query:focus {
  border-color: #50c128;
  box-shadow: 0 0 0 3px rgba(80, 193, 40, 0.14);
}

.search-section .search-button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(to left, #50c128 3.3%, #38ad0e);
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 0 22px;
  cursor: pointer;
}

.search-section .search-advanced {
  margin-bottom: 18px;
  color: #4b5563;
  font-size: 14px;
}

.search-section .search-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 12px;
}

.search-section .search-item h4 {
  color: #111827;
  font-weight: 700;
  margin-bottom: 6px;
}

.search-section .search-item h4 a {
  color: inherit;
}

.search-section .search-item h4 a:hover {
  color: #38ad0e;
}

.search-section .search-preview,
.search-section .search-body {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}
.search-page div.search-sorting b {
    background: none;
    color: #50c128;
    padding-top: 0;
    padding-bottom: 0;
}

.search-section th, .search-section td {
    padding: 10px 15px;
    border: 1px solid #ccc;
}
.search-section table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}
.search-result_table{
    max-width: calc(100vw - 48px);
    overflow-x: auto;
}
.search-section .news-page__header{
    margin-bottom: 30px;
}
@media (min-width: 600px) {
    div.search-page input.search-query{
        width: calc(100% - 113px);
    }
    .search-section .search-page form {
        flex-wrap: wrap;
    }
    div.search-advanced-result {
        width: auto;
    }
    .search-advanced{
        margin-top: 0;
    }
}
@media (max-width: 600px) {
  .search-section__title {
    font-size: 32px;
  }

  .search-section .search-page form {
    align-items: stretch;
    flex-direction: column;
  }

  .search-section .search-button {
    width: 100%;
  }
    div.search-page input.search-button {
        margin-top: 10px;
    }
}

/* End */
/* /local/templates/tomsk/css/tokens.css?1782193724753 */
/* /local/templates/tomsk/css/base.css?17853051263685 */
/* /local/templates/tomsk/css/animations.css?1782193724457 */
/* /local/templates/tomsk/css/header.css?17840967889193 */
/* /local/templates/tomsk/css/footer.css?17827242865051 */
/* /local/templates/tomsk/css/sections/hero.css?17830661332802 */
/* /local/templates/tomsk/css/sections/deputy.css?17821937242980 */
/* /local/templates/tomsk/css/sections/tools.css?17821937243476 */
/* /local/templates/tomsk/css/sections/stats.css?17827111291874 */
/* /local/templates/tomsk/css/sections/invest.css?17823633553941 */
/* /local/templates/tomsk/css/sections/advantages.css?17821937242246 */
/* /local/templates/tomsk/css/sections/contact.css?17833422449330 */
/* /local/templates/tomsk/css/sections/partners.css?17821937243289 */
/* /local/templates/tomsk/css/pages/rs.css?17830704796589 */
/* /local/templates/tomsk/css/pages/about.css?178328634922808 */
/* /local/templates/tomsk/css/pages/news.css?17854031627490 */
/* /local/templates/tomsk/css/pages/contacts.css?178351762815118 */
/* /local/templates/tomsk/css/pages/investors.css?17821937247702 */
/* /local/templates/tomsk/css/pages/cooperation.css?178332306411802 */
/* /local/templates/tomsk/css/pages/events.css?17821937246530 */
/* /local/templates/tomsk/css/pages/services.css?178351762819136 */
/* /local/templates/tomsk/css/pages/investment-proposals.css?17830642822195 */
/* /local/templates/tomsk/css/pages/choose-yours.css?178540316219589 */
/* /local/templates/tomsk/css/pages/agency.css?17821937241752 */
/* /local/templates/tomsk/css/pages/search.css?17836002832763 */
