

/* Start:/local/templates/main/assets/css/p-about.css?178221690320018*/
@import url(/local/templates/main/assets/css/components/breadcrumb.css);
a {
    text-decoration-line: none;
}

html {
    font-family: 'Gilroy';
    color: var(--color-text);
}

body {
    margin: 0;
}

.underline {
    width: 127px;
    height: 6px;
    background: var(--color-secondary01);
}

/* About Hero Section */
.about-hero {
    padding: 64px var(--section-side-padding);
    background: url(/local/templates/main/assets/img/career-hero.png) center center / cover no-repeat;
    background-color: #2773E4;
}

.about-hero__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-hero__title {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    color: #FFFFFF;
    margin: 0;
}

.about-hero__description {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
    margin: 0;
    width: 100%;
    max-width: 708px;
}

.about-hero__cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

.about-hero__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.about-hero__card:last-child {
    flex: 1;
}

.about-hero__card-number {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 48px;
    line-height: 57px;
    color: #15E691;
}

.about-hero__card-label {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

/* About Content: layout */
.about-content {
    padding: 64px var(--section-side-padding);
    background: #fff;
}

.about-content__container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-content__main {
    flex: 1;
    min-width: 0;
}

.about-content__sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* Intro text block */
.about-intro {
    background: #fff;
    border-radius: 16px;
    padding: 32px 40px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

.about-intro__text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: #455A64;
    margin: 0;
}

/* History timeline */
.about-history {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
    overflow: visible;
}

.about-history__item {
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 32px;
    transition: transform 0.25s ease;
    cursor: default;
}

.about-history__item:hover {
    transform: translateX(6px);
}

.about-history__item:hover .about-history__check {
    background: #1a5fc4;
    box-shadow: 0 0 0 6px rgba(39, 115, 228, 0.15);
}

.about-history__item:hover .about-history__year {
    color: #2773E4;
}

.about-history__check {
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.about-history__year {
    transition: color 0.25s ease;
}

.about-history__item:last-child {
    padding-bottom: 0;
}

/* Vertical line between items */
.about-history__item:not(:last-child) .about-history__marker::after {
    content: none;
}

.about-history__item:not(:last-child) {
    position: relative;
}

.about-history__item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: #2773E4;
}

.about-history__marker {
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.about-history__check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #2773E4;
    box-sizing: border-box;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.about-history__item--active .about-history__check {
    background: #2773E4;
}

.about-history__body {
    flex: 1;
    padding-top: 4px;
}

.about-history__year {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
    color: #263238;
    margin: 0 0 8px;
    transition: color 0.25s ease;
}

.about-history__text {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #607D8B;
    margin: 0;
}

.about-history__highlight {
    color: #2773E4;
    font-weight: 500;
}

/* Sidebar strengths title */
.about-content__sidebar .strengths__title h4 {
    font-size: 20px;
    line-height: 24px;
    color: #1A1A2E;
}

/* Achievements */
.about-achievements {
    padding: 64px var(--section-side-padding);
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-achievements__heading {
    margin-bottom: -40px;
}

.about-achievements__heading-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #263238;
    margin: 0 0 12px;
}

.about-achievements__heading-underline {
    width: 64px;
    height: 4px;
    background: #15E691;
    border-radius: 2px;
}

.about-achievements__item {
    display: flex;
    align-items: center;
    gap: 64px;
}

.about-achievements__item--reverse {
    flex-direction: row-reverse;
}

.about-achievements__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-achievements__num {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    color: #2773E4;
    opacity: 0.3;
}

.about-achievements__title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.3;
    color: #2773E4;
    margin: 0;
}

.about-achievements__text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #607D8B;
    margin: 0;
}

.about-achievements__image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    max-width: 420px;
}

.about-achievements__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Events slider */
.about-events {
    padding: 64px var(--section-side-padding);
    background: #F1F5F9;
}

.about-events__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}

.about-events__title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #263238;
    margin: 0 0 12px;
}

.about-events__underline {
    width: 64px;
    height: 4px;
    background: #15E691;
    border-radius: 2px;
}

.about-events__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-events__all {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    gap: 10px;
    background: #ECEFF1;
    border-radius: var(--radius-special);
    font-family: 'Gilroy', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #263238;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.about-events__all:hover {
    background: #CFD8DC;
    color: #263238;
    transform: scale(1.05);
}

.about-events__all:active {
    transform: scale(0.95);
}

.about-events__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-sm);
    gap: 10px;
    background: var(--color-button-text);
    border-radius: var(--radius-special);
    border: none;
    outline: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.about-events__btn:hover {
    background: var(--color-border);
    transform: scale(1.05);
}

.about-events__btn:active {
    transform: scale(0.95);
}

.about-events__wrapper {
    overflow: hidden;
}

.about-events__track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.about-events__card {
    flex-shrink: 0;
    width: calc((100% - 48px) / 3);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.about-events__card:hover {
}

.about-events__card-image {
    width: 100%;
    height: 220px;
    background: #ECEFF1;
    overflow: hidden;
}

.about-events__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-events__card-image--empty {
    background: #CFD8DC;
}

.about-events__card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.about-events__card:hover .about-events__card-body {
    transform: none;
}

.about-events__card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    transition: color 0.3s ease, transform 0.3s ease;
}

.about-events__card:hover .about-events__card-tags {
    transform: translateY(-2px);
}

.about-events__tag {
    font-family: 'Gilroy', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #607D8B;
    background: #ECEFF1;
    border-radius: 20px;
    padding: 4px 12px;
}

.about-events__card-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #263238;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.about-events__card:hover .about-events__card-title {
    color: #2196F3;
    transform: translateY(-4px);
}

.about-events__card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #90A4AE;
    transition: color 0.3s ease, transform 0.3s ease;
}

.about-events__card:hover .about-events__card-date {
    transform: translateY(-2px);
}

.about-events__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.about-events__dot {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease;
}

.about-events__dot--active {
    background: #2773E4;
    width: 48px;
}

/* About Banner */
.about-banner {
    position: relative;
    padding: 64px var(--section-side-padding);
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.about-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
    background-color: #1a2a3a;
}

.about-banner__overlay {
    display: none;
}

.about-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.about-banner__title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    flex: 1;
}

.about-banner__accent--green {
    color: #15E691;
}

.about-banner__accent--blue {
    color: #2773E4;
}

.about-banner__btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 43px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--color-background) !important;
    background: var(--color-secondary-01);
    border-radius: var(--radius-special);
    text-decoration: none;
    transition: all var(--transition-normal);
    white-space: nowrap;
    cursor: pointer;
}

.about-banner__btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--color-background) !important;
}

.about-banner__btn:active {
    transform: scale(0.95);
}

/* Gallery */
.about-gallery {
    padding: 64px var(--section-side-padding);
    background: #fff;
}

.about-gallery__header {
    margin-bottom: 32px;
}

.about-gallery__title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #263238;
    margin: 0 0 12px;
}

.about-gallery__underline {
    width: 64px;
    height: 4px;
    background: #15E691;
    border-radius: 2px;
}

.about-gallery__filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.about-gallery__filter {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    background: #fff;
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: #455A64;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-gallery__filter:hover {
    background: #F1F5F9;
}

.about-gallery__filter--active {
    background: #2773E4;
}

.about-gallery__filter--active {
    background: linear-gradient(90deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-gallery__filter--active {
    background: #2773E4;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.about-gallery__filter-count {
    position: absolute;
    top: 16px;
    right: -9px;
    transform: translate(100%, -100%);
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
    color: #90A4AE;
}

.about-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.about-gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #ECEFF1;
    cursor: pointer;
}

.about-gallery__item--hidden {
    display: none;
}

.about-gallery__item--empty {
    background: #CFD8DC;
}

.about-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-gallery__item:hover img {
    transform: scale(1.05);
}

.about-gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(39, 115, 228, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.about-gallery__item:hover .about-gallery__item-overlay {
    opacity: 1;
}

.about-gallery__item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    font-family: 'Gilroy', sans-serif;
    font-size: 13px;
    color: #fff;
}

.about-gallery__more {
    display: block;
    width: 100%;
    padding: 18px;
    border: 1px solid #CFD8DC;
    border-radius: 8px;
    background: #fff;
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #455A64;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.about-gallery__more:hover {
    background: #F5F7FA;
    color: #2773E4;
}

/* Мобильная кнопка скрыта на десктопе */
.about-events__all--mobile {
    display: none;
}

/* ============================================
   ADAPTIVE — about page
   ============================================ */

/* ---------- 1280px ---------- */
@media (max-width: 1280px) {
    .about-hero {
        padding: 48px 40px;
    }

    .about-hero__description {
        width: 100%;
        max-width: 600px;
    }

    .about-hero__cards {
        width: 100%;
        flex-wrap: wrap;
    }

    .about-hero__card {
        width: calc(50% - 12px);
    }

    .about-hero__card:last-child {
        width: calc(50% - 12px);
    }

    .about-content,
    .about-achievements,
    .about-events,
    .about-gallery,
    .about-banner {
        padding: 48px 40px;
    }

    .about-achievements__item {
        gap: 40px;
    }
}

/* ---------- 1024px ---------- */
@media (max-width: 1024px) {
    .about-hero {
        padding: 40px 24px;
    }

    .about-hero__title {
        font-size: 36px;
        line-height: 44px;
    }

    .about-hero__description {
        font-size: 17px;
    }

    .about-hero__cards {
        gap: 16px;
    }

    .about-hero__card-number {
        font-size: 36px;
        line-height: 44px;
    }

    /* Контент + сайдбар в колонку */
    .about-content {
        padding: 40px 24px;
    }

    .about-content__container {
        flex-direction: column;
    }

    .about-content__sidebar {
        width: 100%;
    }

    .about-achievements {
        padding: 40px 24px;
        gap: 48px;
    }

    .about-achievements__item {
        gap: 32px;
    }

    .about-achievements__title {
        font-size: 26px;
    }

    .about-achievements__num {
        font-size: 36px;
    }

    .about-events {
        padding: 40px 24px;
    }

    .about-events__card {
        width: calc((100% - 24px) / 2);
    }

    .about-gallery {
        padding: 40px 24px;
    }

    .about-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-banner {
        padding: 40px 24px;
    }

    .about-banner__title {
        font-size: 24px;
    }

    .about-banner__btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* ---------- 768px ---------- */
@media (max-width: 768px) {
    .about-hero {
        padding: 32px 16px;
    }

    .about-hero__content {
        gap: 32px;
    }

    .about-hero__title {
        font-size: 28px;
        line-height: 36px;
    }

    .about-hero__description {
        font-size: 15px;
        max-width: 100%;
    }

    .about-hero__cards {
        flex-direction: column;
        gap: 16px;
    }

    .about-hero__card,
    .about-hero__card:last-child {
        width: 100%;
    }

    .about-hero__card-number {
        font-size: 32px;
        line-height: 40px;
    }

    /* Контент */
    .about-content {
        padding: 32px 16px;
    }

    .about-intro {
        padding: 20px;
    }

    .about-history {
        padding: 20px;
    }

    .about-history__year {
        font-size: 24px;
    }

    /* Achievements */
    .about-achievements {
        padding: 32px 16px;
        gap: 40px;
    }

    .about-achievements__item,
    .about-achievements__item--reverse {
        flex-direction: column;
        gap: 20px;
    }

    .about-achievements__image {
        max-width: 100%;
        width: 100%;
    }

    .about-achievements__num {
        font-size: 28px;
    }

    .about-achievements__title {
        font-size: 26px;
    }

    /* Events */
    .about-events {
        padding: 32px 16px;
    }

    .about-events__header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .about-events__card {
        width: 100%;
    }

    /* Стрелки скрыть, кнопку "Все" скрыть из header */
    .about-events__btn {
        display: none;
    }

    .about-events__all:not(.about-events__all--mobile) {
        display: none;
    }

    /* Мобильная кнопка внизу */
    .about-events__all--mobile {
        display: flex;
        margin-top: 20px;
        align-self: center;
    }

    /* Gallery */
    .about-gallery {
        padding: 32px 16px;
    }

    .about-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-gallery__title {
        font-size: 24px;
    }

    /* Banner */
    .about-banner {
        padding: 32px 16px;
    }

    .about-banner__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .about-banner__title {
        font-size: 20px;
    }

    .about-banner__btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* End */


/* Start:/local/templates/main/assets/css/pages/index.css?178221690321912*/
/* ============================================
   Index Page Styles
   ============================================ */

/* Hero Section */
.hero {
  display: flex;
  padding-right: var(--section-side-padding);
  padding-left: var(--section-side-padding);
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero h1 {
  margin: 0;
  font-weight: var(--font-weight-regular);
  font-size: 48px;
  line-height: 56px;
  color: var(--color-text-heading);
}

.hero h1 span {
  color: var(--color-primary);
}

.hero__cta-btn {
  align-self: center;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 43px;
  gap: 10px;
  background: var(--color-secondary-01);
  border-radius: var(--radius-special);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--color-background) !important;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.hero__cta-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: var(--color-background) !important;
}

/* Products Section */
.products {
  padding-left: var(--section-side-padding);
  padding-right: var(--section-side-padding);
  padding-bottom: var(--spacing-3xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

/* Services Section */
.services {
  background: url(/local/templates/main/assets/img/services.webp) center/cover no-repeat;
  padding: 120px var(--section-side-padding);
}

.services__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--spacing-lg);
}

.services__header {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  height: 346px;
}

.services__block:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.services__block:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.services__block:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.services__block:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.services__block:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}

.services__header h4 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  font-size: 48px;
  line-height: 57px;
  color: var(--color-background);
}

.services__header a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-self: self-start;
  justify-self: flex-start;
  padding: var(--spacing-sm) var(--spacing-lg);
  gap: 10px;
  background: var(--color-secondary-01);
  border-radius: var(--radius-special);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-decoration: none;
}

.services__header a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(21, 230, 145, 0.3);
}

.services__header span {
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  line-height: 19px;
  color: var(--color-button-text);
}

.services__header a span {
  color: var(--color-background) !important;
}

.services__header svg {
  stroke: var(--color-background);
}

.services__header a:hover span {
  color: var(--color-background) !important;
}

.services__header a:hover svg {
  transform: translateX(4px);
  stroke: var(--color-background);
}

.services__block {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-3xl);
  gap: var(--spacing-xl);
  background: var(--color-background);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 8px 64px 8px 8px;
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  height: 358px;
  box-sizing: border-box;
}

.services__block:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.services__block-container {
  display: flex;
}

.services__block-content {
  flex-basis: 75%;
}

.services__block-header {
  font-weight: var(--font-weight-semibold);
  font-size: 24px;
  line-height: 29px;
  color: var(--color-text-secondary);
  transition: color var(--transition-normal);
}

.services__block-body {
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  line-height: 19px;
  color: var(--color-text-muted);
  transition: color var(--transition-normal);
  margin-top: var(--spacing-md);
}

.services__block:hover .services__block-header {
  color: #2773E4;
}

.services__block:hover .services__block-body {
  color: var(--color-text);
}

.services__block-button {
  display: flex;
  justify-self: flex-end;
  align-self: flex-end;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-sm);
  gap: 10px;
  align-self: flex-start;
  background: var(--color-button-text);
  border-radius: var(--radius-special);
  transition: all var(--transition-normal);
}

.services__block-button svg {
  stroke: black;
  transition: all var(--transition-normal);
}

.services__block:hover .services__block-button {
  background: #2773E4;
  transform: scale(1.1);
}

.services__block:hover .services__block-button svg {
  stroke: var(--color-background);
  transform: translateX(2px);
}

.services__block-svg {
  position: absolute;
  bottom: 5px;
  right: 15px;
  transition: all var(--transition-normal);
}

.services__block:hover .services__block-svg {
  transform: translateY(-5px) rotate(5deg);
}

/* News Section */
.news {
  padding: var(--spacing-4xl) var(--section-side-padding);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  overflow: hidden;
}

.news__header {
  display: flex;
  justify-content: space-between;
}

.news__header h3 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  font-size: 48px;
  line-height: 57px;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
}

.news__buttons-nav {
  display: flex;
  gap: var(--spacing-sm);
}

.news__btn-l,
.news__btn-r {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-sm);
  gap: 10px;
  stroke: black;
  background: var(--color-button-text);
  border-radius: var(--radius-special);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
}

.news__btn-l:hover:not(.disabled),
.news__btn-r:hover:not(.disabled) {
  background: var(--color-border);
  transform: scale(1.05);
}

.news__btn-l.disabled,
.news__btn-r.disabled {
  opacity: 0.5;
  cursor: default !important;
}

.news__btn-l.disabled:hover,
.news__btn-r.disabled:hover {
  background: var(--color-button-text) !important;
  transform: none !important;
}

.news__btn-l:active:not(.disabled),
.news__btn-r:active:not(.disabled) {
  transform: scale(0.95);
}

.news__content {
  display: flex;
  gap: var(--spacing-xl);
  transition: transform 0.4s ease;
  will-change: transform;
}

.news__block {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  flex-basis: 33%;
  flex-shrink: 0;
}

.news__block-date {
  font-weight: var(--font-weight-regular);
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--color-blue-gray-04);
}

.news__block-title {
  font-weight: var(--font-weight-medium);
  font-size: 24px;
  line-height: 28px;
  color: var(--color-text-secondary);
}

.news__block-desc {
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  line-height: 19px;
  color: var(--color-blue-gray-04);
}

button.news__btn-l.disabled,
button.news__btn-r.disabled {
  cursor: default !important;
  opacity: 0.5 !important;
}

button.news__btn-l.disabled:hover,
button.news__btn-r.disabled:hover {
  background: var(--color-button-text) !important;
  transform: none !important;
  cursor: default !important;
}

/* Partners Section */
.partners {
  padding: var(--spacing-4xl) var(--section-side-padding);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
}

.partners__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.partners__title {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.partners__title h3 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  font-size: 48px;
  line-height: 57px;
  color: var(--color-text-secondary);
}

.partners__title .underline {
  width: 127px;
  height: 6px;
  background: var(--color-secondary-01);
}

.partners__buttons {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.partners__btn-all {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  gap: 10px;
  background: #ECEFF1;
  border-radius: var(--radius-special);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #263238;
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.partners__btn-all:hover {
  background: #CFD8DC;
  color: #263238 !important;
  transform: scale(1.05);
}

.partners__btn-all:active {
  transform: scale(0.95);
}

.partners__buttons-nav {
  display: flex;
  gap: var(--spacing-sm);
}

.partners__btn-l,
.partners__btn-r {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-sm);
  gap: 10px;
  stroke: black;
  background: var(--color-button-text);
  border-radius: var(--radius-special);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
}

.partners__btn-l:hover,
.partners__btn-r:hover {
  background: var(--color-border);
  transform: scale(1.05);
}

.partners__btn-l:active,
.partners__btn-r:active {
  transform: scale(0.95);
}

.partners__content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--spacing-lg);
  align-items: center;
}

.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  background: var(--color-background);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  min-height: 120px;
  position: relative;
}

.partners__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partners__item img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter var(--transition-normal);
}

.partners__item:hover img {
  filter: grayscale(0%);
}

.partners__item-placeholder {
  font-weight: var(--font-weight-semibold);
  font-size: 14px;
  color: var(--color-blue-gray-04);
  text-align: center;
}

/* Мобильная кнопка "Все партнёры" — скрыта на десктопе */
.partners__btn-all--mobile {
  display: none;
}

/* ============================================
   ADAPTIVE — News Section
   ============================================ */

/* ---------- 1024px ---------- */
@media (max-width: 1024px) {
  .news {
    padding: 48px 24px;
    gap: 24px;
  }

  .news__header h3 {
    font-size: 32px;
    line-height: normal;
    margin-bottom: 16px;
  }

  /* Скрываем стрелки навигации */
  .news__buttons-nav {
    display: none;
  }

  /* Снимаем overflow у обёртки — слайдер выключен */
  .news__wrapper {
    overflow: visible;
  }

  /* Вертикальный список вместо горизонтального слайдера */
  .news__content {
    flex-direction: column;
    gap: 0;
    transform: none !important;
    transition: none !important;
  }

  /* Каждая новость на полную ширину с разделителем снизу */
  .news__block {
    flex-basis: 100% !important;
    flex-shrink: 1;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .news__block:first-child {
    padding-top: 0;
  }

  .news__block:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .news__block-date {
    font-size: 16px;
    line-height: normal;
  }

  .news__block-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .news__block-desc {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* ---------- 768px ---------- */
@media (max-width: 768px) {
  .news {
    padding: 36px 16px;
  }

  .news__header h3 {
    font-size: 28px;
  }

  .news__block-title {
    font-size: 16px;
  }

  .news__block-date {
    font-size: 14px;
  }
}

/* ---------- 414px ---------- */
@media (max-width: 414px) {
  .news {
    padding: 32px 16px;
  }

  .news__header h3 {
    font-size: 22px;
  }
}

/* ============================================
   ADAPTIVE — Services Section
   ============================================ */

/* ---------- 1024px (планшет/мобильный) ---------- */
@media (max-width: 1024px) {
  .services {
    padding: 48px 24px;
  }

  /* Превращаем грид в вертикальный flex-столбец */
  .services__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Шапка секции: снимаем фиксированную высоту */
  .services__header {
    height: auto;
    gap: 20px;
  }

  .services__header h4 {
    font-size: 28px;
    line-height: normal;
  }

  /* Карточка: колоночный layout — иконка сверху, текст снизу */
  .services__block {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    min-height: auto;
    padding: var(--spacing-xl);
    gap: var(--spacing-md);
    border-radius: 8px 32px 8px 8px;
  }

  /* Убираем scale на тач-устройствах */
  .services__block:hover {
    transform: none;
  }

  .services__block-svg {
    display: none;
  }

  /* Контент — вертикально, на всю ширину, кнопка внизу */
  .services__block-container {
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-md);
  }

  .services__block-content {
    flex-basis: auto;
    width: 100%;
  }

  /* Стрелка > — в нормальном потоке, внизу */
  .services__block-button {
    position: static;
    align-self: flex-end;
    margin-left: 0;
  }

  .services__block-header {
    font-size: 18px;
    line-height: 1.3;
  }

  .services__block-body {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* ---------- 768px (мобильный) ---------- */
@media (max-width: 768px) {
  .services {
    padding: 36px 16px;
  }

  .services__header h4 {
    font-size: 24px;
  }

  .services__container {
    gap: 12px;
  }

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


  .services__block-header {
    font-size: 16px;
  }
}

/* ---------- 414px (маленький мобильный) ---------- */
@media (max-width: 414px) {
  .services {
    padding: 32px 16px;
  }

  .services__header h4 {
    font-size: 22px;
  }

}

/* ============================================
   ADAPTIVE — Partners Section
   ============================================ */

/* ---------- 1024px ---------- */
@media (max-width: 1024px) {
  .partners {
    padding: 48px 24px;
    gap: 32px;
  }

  .partners__title h3 {
    font-size: 32px;
    line-height: normal;
  }

  /* Скрываем навигационные стрелки */
  .partners__buttons-nav {
    display: none;
  }

  /* Скрываем кнопку "Все партнёры" в шапке — покажем снизу */
  .partners__buttons .partners__btn-all {
    display: none;
  }

  /* Сетка: 3 колонки на планшете */
  .partners__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Показываем мобильную кнопку снизу */
  .partners__btn-all--mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-special);
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    box-sizing: border-box;
  }

  .partners__btn-all--mobile:hover {
    background: #F5F5F5;
    border-color: var(--color-blue-gray-04);
    transform: scale(1.02);
  }

  .partners__btn-all--mobile:active {
    transform: scale(0.98);
  }
}

/* ---------- 768px (мобильный) ---------- */
@media (max-width: 768px) {
  .partners {
    padding: 36px 16px;
    gap: 24px;
  }

  .partners__title h3 {
    font-size: 28px;
  }

  /* Сетка: 2 колонки */
  .partners__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .partners__item {
    min-height: 100px;
    padding: var(--spacing-md);
  }
}

/* ---------- 414px (маленький мобильный) ---------- */
@media (max-width: 414px) {
  .partners {
    padding: 32px 16px;
    gap: 20px;
  }

  .partners__title h3 {
    font-size: 22px;
  }

  .partners__content {
    gap: 10px;
  }

  .partners__item {
    min-height: 90px;
    padding: 12px;
  }

  .partners__item img {
    max-height: 60px;
  }
}

/* ============================================
   ADAPTIVE — Hero + Products
   ============================================ */



/* ---------- 1500px (планшет) ---------- */
@media (max-width: 1500px) {

  /* Hero */
  .hero {
    padding-right: var(--section-side-padding);
    padding-left: var(--section-side-padding);
    gap: 16px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .hero__cta-btn {
    font-size: 18px;
    line-height: 22px;
    padding: 18px 38px;
    margin-left: auto; /* Оставляем кнопку у правого края */
  }

  /* Products: баннер на всю ширину, solutions в 3 колонки под ним */
  .products {
    padding-left: 40px;
    padding-right: 40px;
    grid-template-columns: repeat(3, 1fr);
  }

  .promo {
    grid-column: span 3;
    height: 300px;
  }

  .promo__title {
    font-size: 32px;
    line-height: 40px;
  }

  .promo__content {
    padding: 28px 36px 36px;
  }
}

/* ---------- 1024px (мобильный) ---------- */
@media (max-width: 1024px) {

  /* Hero */
  .hero {
    padding: 40px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero__cta-btn {
    font-size: 14px;
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
  }

  /* Products: 2 col grid, promo на всю ширину */
  .products {
    padding-left: 16px;
    padding-right: 16px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .promo {
    grid-column: span 2;
  }
}

/* ---------- 768px (маленький мобильный) ---------- */
@media (max-width: 768px) {

  /* Hero */
  .hero {
    padding: 28px 16px;
    gap: 16px;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 30px;
  }

  .hero__cta-btn {
    font-size: 13px;
    padding: 12px 20px;
  }

  /* Products: 1 col */
  .products {
    padding-left: 12px;
    padding-right: 12px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .promo {
    grid-column: span 1;
  }
}

/* ---------- 414px ---------- */
@media (max-width: 414px) {

  /* Hero */
  .hero {
    padding: 28px 16px;
    gap: 16px;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 30px;
  }

  .hero__cta-btn {
    font-size: 13px;
    padding: 12px 20px;
  }

  /* Products: 1 col */
  .products {
    padding-left: 12px;
    padding-right: 12px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ============================================
   ADAPTIVE — 2K мониторы (≥1921px)
   Контент растёт от 1440px (1920px) до ~1800px (2560px)
   Формула паддинга: 21.875vw - 180px
   1920px → 240px → контент 1440px
   2560px → 380px → контент 1800px
   ============================================ */
@media (min-width: 1921px) {

  :root {
    --section-side-padding: clamp(240px, calc(21.875vw - 180px), 500px);
  }

  /* --- Hero --- */
  .hero {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .hero h1 {
    font-size: 64px;
    line-height: 76px;
  }

  .hero__cta-btn {
    font-size: 24px;
    padding: 24px 52px;
  }

  /* --- Products grid --- */
  .products {
    gap: 28px;
  }

  /* --- Services --- */
  .services {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .services__header {
    height: auto;
    min-height: 440px;
  }

  .services__header h4 {
    font-size: 56px;
    line-height: 1.2;
  }

  .services__header span {
    font-size: 18px;
    line-height: 1.5;
  }

  .services__block {
    height: 440px;
  }

  .services__block-header {
    font-size: 28px;
    line-height: 1.3;
  }

  .services__block-body {
    font-size: 18px;
    line-height: 1.4;
  }

  /* --- News --- */
  .news {
    padding-top: 100px;
    padding-bottom: 100px;
    gap: 56px;
  }

  .news__header h3 {
    font-size: 56px;
    line-height: 1.2;
  }

  .news__block-date {
    font-size: 28px;
  }

  .news__block-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .news__block-desc {
    font-size: 18px;
  }

  /* --- Partners --- */
  .partners {
    padding-top: 100px;
    padding-bottom: 100px;
    gap: 56px;
  }

  .partners__title h3 {
    font-size: 56px;
    line-height: 1.2;
  }

  .partners__content {
    grid-template-columns: repeat(8, 1fr);
  }

  .partners__item {
    min-height: 140px;
  }

  .partners__item img {
    max-height: 100px;
  }
}

/* End */


/* Start:/local/components/custom/hero.banner/templates/about/style.css?17822169032661*/
/* 
 * Специфичные стили для шаблона about
 * Базовые стили в /style.css
 */

.about-hero {
    padding: 64px var(--section-side-padding);
    background: url(/local/templates/main/assets/img/career-hero.png) center center / cover no-repeat;
    background-color: #2773E4;
}

.about-hero__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-hero__title {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    color: #FFFFFF;
    margin: 0;
}

.about-hero__description {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
    margin: 0;
    width: 100%;
    max-width: 708px;
}

/* Визуальный редактор часто оборачивает текст в <p>/<div> — нормализуем */
.about-hero__description p,
.about-hero__description div {
    margin: 0;
    font: inherit;
    color: inherit;
}

.about-hero__cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.about-hero__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.about-hero__card:last-child {
    flex: 1;
}

.about-hero__card-number {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 48px;
    line-height: 57px;
    color: #15E691;
}

.about-hero__card-label {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

/* Responsive */

@media (max-width: 1024px) {
    .about-hero {
        padding: 48px 24px;
    }

    .about-hero__title {
        font-size: 36px;
        line-height: 44px;
    }

    .about-hero__description {
        font-size: 17px;
    }

    /* 2 карточки в ряд */
    .about-hero__card,
    .about-hero__card:last-child {
        flex: 0 0 calc(50% - 12px) !important;
        width: calc(50% - 12px) !important;
    }

    .about-hero__card-number {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 32px 16px;
    }

    .about-hero__content {
        gap: 24px;
    }

    .about-hero__title {
        font-size: 28px;
        line-height: 36px;
    }

    .about-hero__description {
        font-size: 15px;
    }

    /* 1 карточка на всю ширину */
    .about-hero__card,
    .about-hero__card:last-child {
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    .about-hero__card-number {
        font-size: 24px;
        line-height: 32px;
    }
}

/* End */


/* Start:/local/components/custom/hero.banner/templates/about/../../style.css?17822169031718*/
/* 
 * Общие стили для всех шаблонов Hero Banner
 * Базовый класс: .page-hero
 */

/* Базовые стили */
.page-hero {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    box-sizing: border-box;
}

.page-hero__header {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page-hero__breadcrumb {
    /* Стили для хлебных крошек */
}

.page-hero__title {
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}

.page-hero__subtitle {
    font-weight: 400;
    color: #ECEFF1;
    opacity: 0.9;
}

/* Breadcrumb styles */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.breadcrumb-segment {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.breadcrumb-item {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    display: inline-flex;
    align-items: center;
    text-decoration-line: none;
    color: #B0BEC5;
}

.breadcrumb-item:last-of-type {
    color: #FFFFFF;
}

.breadcrumb-line {
    width: 40px;
    height: 1px;
    background: #B0BEC5;
    flex: 0 0 auto;
}

/* Responsive - базовые изменения */

@media (max-width: 1024px) {
    .page-hero__header {
        gap: 32px;
    }

    .page-hero__title {
        font-size: 36px;
        line-height: 44px;
    }
}

@media (max-width: 768px) {
    .page-hero__header {
        gap: 24px;
    }

    .page-hero__title {
        font-size: 28px;
        line-height: 36px;
    }

    .breadcrumb {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .breadcrumb-line {
        width: 24px;
    }
}

/* End */


/* Start:/local/templates/main/components/bitrix/news.list/strengths_sidebar/style.css?17822169032401*/
.strengths-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.strengths-sidebar__title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #455A64;
    margin: 0 0 8px;
}

.strengths-sidebar__card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.strengths-sidebar__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(39, 115, 228, 0.15);
}

.strengths-sidebar__icon svg {
    display: block;
}

.strengths-sidebar__svg {
    width: 80px !important;
    height: 80px !important;
    display: block;
    overflow: hidden;
}

.strengths-sidebar__name {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #263238;
}

.strengths-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strengths-sidebar__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.strengths-sidebar__check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strengths-sidebar__item span:last-child {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #607D8B;
}

/* ============================================
   ADAPTIVE — на мобиле как strengths на главной
   ============================================ */

/* ---------- 1024px и меньше: карточки в колонку ---------- */
@media (max-width: 1024px) {
    .strengths-sidebar {
        flex-direction: column;
        gap: 16px;
    }

    .strengths-sidebar__title {
        display: none;
    }

    .strengths-sidebar__card {
        flex: none;
        padding: 20px;
        gap: 12px;
        min-height: 180px;
        border-radius: 8px 32px 8px 8px;
    }

    .strengths-sidebar__icon {
        display: none;
    }

    .strengths-sidebar__name {
        font-size: 18px;
    }

    .strengths-sidebar__item span:last-child {
        font-size: 14px;
    }
}

/* End */


/* Start:/local/templates/main/assets/css/feedback.css?178221690313162*/
.feedback {
    padding: 80px var(--section-side-padding);
    display: flex;
    gap: 24px;
    background: url(/local/templates/main/assets/img/feedback.jpg);
}

.feedback__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.feedback__title {
    font-weight: 600;
    font-size: 48px;
    line-height: 57px;
    color: #fff;
}

.feedback__desc {
    font-weight: 300;
    font-size: 20px;
    line-height: 23px;
    color: #fff;
}

.feedback__header,
.feedback__form {
    flex: 1;
}

.feedback__contact__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.feedback__contact__form-row {
    display: flex;
    gap: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.feedback__contact__form-row:nth-child(1) {
    animation-delay: 0.2s;
}

.feedback__contact__form-row:nth-child(2) {
    animation-delay: 0.4s;
}

.feedback__contact__form-row:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback__contact__form-row--two-cols .feedback__contact__form-group {
    flex: 1;
}

.feedback__contact__form-row--full .feedback__contact__form-group {
    flex: 1;
}

.feedback__contact__form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    animation: slideInUp 0.6s ease-out;
}

.feedback__contact__form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.feedback__contact__form-group:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback__contact__label {
    margin-bottom: 8px;
    color: #fff;

    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
}

.feedback__contact__input,
.feedback__contact__textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 16px 12px;
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    transition: all 0.3s ease;
    position: relative;
}

.feedback__contact__input::placeholder,
.feedback__contact__textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    transition: all 0.3s ease;
}

.feedback__contact__textarea {
    resize: vertical;
    min-height: 80px;
    transition: min-height 0.3s ease;
    padding: 16px 12px;
}

.feedback__contact__textarea:focus {
    min-height: 120px;
}

.feedback__contact__submit-btn {
    display: flex;
    flex-direction: row;
    padding: 12px 24px;
    gap: 10px;

    background: #15E691;
    border-radius: 4px 12px;

    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
}

.feedback__contact__submit-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
    box-shadow: 0 8px 25px rgba(21, 230, 145, 0.4);
}

.feedback__contact__form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.feedback__contact__checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid white;
    background: transparent;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    margin-right: 0;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feedback__contact__checkbox:hover {
    border-color: white;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.feedback__contact__checkbox:checked {
    background: transparent;
    border-color: white;
    transform: scale(1);
}

.feedback__contact__checkbox:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    animation: checkmark 0.3s ease-in-out;
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

.feedback__contact__checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ECEFF1;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.feedback__contact__checkbox-label:hover {
    color: #fff;
}

.feedback__contact__checkbox-copy {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35em;
}

.feedback__contact__checkbox-label a {
    color: inherit;
    text-decoration: underline;
}

.feedback__contact__checkbox-label a:hover {
    color: #fff;
}

.feedback__contact__input,
.feedback__contact__textarea {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px 12px;
    font-size: 16px;
    outline: none;
    /* убирает стандартный outline */
}

.feedback__contact__input:-webkit-autofill,
.feedback__contact__input:-webkit-autofill:hover,
.feedback__contact__input:-webkit-autofill:focus,
.feedback__contact__input:-webkit-autofill:active {
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    caret-color: white !important;
}

.feedback__contact__textarea:-webkit-autofill,
.feedback__contact__textarea:-webkit-autofill:hover,
.feedback__contact__textarea:-webkit-autofill:focus,
.feedback__contact__textarea:-webkit-autofill:active {
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    caret-color: white !important;
}

.feedback__contact__input:-webkit-autofill::first-line {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 16px;
    color: white;
}

.feedback__contact__input:focus,
.feedback__contact__textarea:focus {
    background: transparent !important;
    border-bottom-color: #15E691;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(21, 230, 145, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 2px 8px rgba(21, 230, 145, 0.3);
    }
    50% {
        box-shadow: 0 2px 12px rgba(21, 230, 145, 0.5);
    }
    100% {
        box-shadow: 0 2px 8px rgba(21, 230, 145, 0.3);
    }
}

.feedback__contact__input:hover,
.feedback__contact__textarea:hover {
    border-bottom-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.feedback__contact__input:focus::placeholder,
.feedback__contact__textarea:focus::placeholder {
    color: rgba(21, 230, 145, 0.8);
    transform: translateY(-2px);
}

.feedback__contact__input:hover::placeholder,
.feedback__contact__textarea:hover::placeholder {
    color: rgba(255, 255, 255, 0.9);
}

.feedback__contact__input::placeholder,
.feedback__contact__textarea::placeholder {
    opacity: 1;
}

.feedback__contact__submit-btn:focus,
.feedback__contact__submit-btn:active,
.feedback__contact__submit-btn:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Анимация загрузки для кнопки */
.feedback__contact__submit-btn.loading {
    pointer-events: none;
    position: relative;
    color: transparent;
}

.feedback__contact__submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Анимация успешной отправки */
.feedback__contact__submit-btn.success {
    background: #4CAF50;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Дополнительные анимации для улучшения UX */
.feedback__contact__input:invalid:not(:placeholder-shown),
.feedback__contact__textarea:invalid:not(:placeholder-shown) {
    border-bottom-color: #ff4444;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

/* Анимация для подсветки обязательных полей */
.feedback__contact__form-group.required .feedback__contact__input:focus,
.feedback__contact__form-group.required .feedback__contact__textarea:focus {
    border-bottom-color: #15E691;
    box-shadow: 0 2px 8px rgba(21, 230, 145, 0.3);
}
/* Стили для заполненных полей */
.feedback__contact__form-group.filled .feedback__contact__input,
.feedback__contact__form-group.filled .feedback__contact__textarea {
    border-bottom-color: rgba(21, 230, 145, 0.6);
    transform: translateY(-1px);
}

.feedback__contact__form-group.focused .feedback__contact__input,
.feedback__contact__form-group.focused .feedback__contact__textarea {
    border-bottom-width: 2px;
}

/* Дополнительные стили для подавления автозаполнения */
.feedback__contact__input:-internal-autofill-selected {
    background-color: transparent !important;
    background-image: none !important;
    color: white !important;
}

/* Для Firefox */
.feedback__contact__input:-moz-autofill {
    background: transparent !important;
    color: white !important;
}

/* Альтернативный метод для Webkit */
@-webkit-keyframes autofill {
    0%,100% {
        color: white;
        background: transparent;
    }
}

.feedback__contact__input:-webkit-autofill {
    -webkit-animation-delay: 1s;
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

/* Еще более агрессивные стили */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Специально для наших полей */
.feedback__contact__input {
    background-image: none !important;
    background-color: transparent !important;
    background: transparent !important;
}
/* ============================================
   ADAPTIVE — Feedback Section
   ============================================ */

/* ---------- 1024px ---------- */
@media (max-width: 1024px) {
    .feedback {
        flex-direction: column;
        padding: 48px 24px;
        gap: 32px;
    }

    .feedback__title {
        font-size: 32px;
        line-height: normal;
    }

    .feedback__desc {
        font-size: 16px;
        line-height: 1.4;
    }

    /* Двухколоночные строки → одна колонка */
    .feedback__contact__form-row--two-cols {
        flex-direction: column;
    }

    /* Кнопка и чекбокс — вертикально */
    .feedback__contact__form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .feedback__contact__submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- 768px ---------- */
@media (max-width: 768px) {
    .feedback {
        padding: 36px 16px;
        gap: 24px;
    }

    .feedback__title {
        font-size: 28px;
    }

    .feedback__desc {
        font-size: 14px;
    }
}

/* ---------- 414px ---------- */
@media (max-width: 414px) {
    .feedback {
        padding: 32px 16px;
    }

    .feedback__title {
        font-size: 24px;
    }
}

/* End */


/* Start:/local/templates/main/assets/css/contacts.css?17822169032557*/
.contacts {
    position: relative;
    overflow: hidden;
    height: 218px;
    padding: 64px var(--section-side-padding);
    padding-right: 540px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: #37474F;
    gap: 24px;
}

.contacts__block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contacts__block-header {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #90A4AE;
}

.contacts__block:first-child .contacts__block-body {
    font-size: 24px;
}

.contacts__block-body {
    font-weight: 700;
    font-size: 32px;
    line-height: 29px;
    color: #ECEFF1;
}

.contacts__block-body a {
    color: #ECEFF1;
    text-decoration: none;
}

.contacts__content {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.contacts__svg {
    position: absolute;
    left: 1457px;
    top: 0px;
    transform: rotate(-15deg);
}

/* ============================================
   ADAPTIVE — Contacts Section
   ============================================ */

/* ---------- 1300px ---------- */
@media (max-width: 1300px) {
    .contacts {
        padding-right: 280px; /* сжимаем десктопный 540px */
    }

    .contacts__block-body {
        font-size: 26px;
    }

    .contacts__block:first-child .contacts__block-body {
        font-size: 20px;
    }

    .contacts__block-header {
        font-size: 18px;
    }
}

/* ---------- 1024px ---------- */
@media (max-width: 1024px) {
    .contacts {
        height: auto;
        padding: 36px 24px;
        padding-right: 24px; /* сбрасываем десктопный 540px */
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .contacts__block-body {
        font-size: 22px;
        line-height: 1.3;
    }

    .contacts__block:first-child .contacts__block-body {
        font-size: 18px;
    }

    .contacts__svg {
        display: none;
    }
}

/* ---------- 768px ---------- */
@media (max-width: 768px) {
    .contacts {
        padding: 28px 16px;
        gap: 20px;
    }

    .contacts__block-body {
        font-size: 20px;
    }

    .contacts__block:first-child .contacts__block-body {
        font-size: 16px;
    }

    .contacts__block-header {
        font-size: 16px;
    }
}

/* ---------- 414px ---------- */
@media (max-width: 414px) {
    .contacts {
        padding: 24px 16px;
        gap: 16px;
    }

    .contacts__block-body {
        font-size: 18px;
    }
}

/* End */
/* /local/templates/main/assets/css/p-about.css?178221690320018 */
/* /local/templates/main/assets/css/pages/index.css?178221690321912 */
/* /local/components/custom/hero.banner/templates/about/style.css?17822169032661 */
/* /local/components/custom/hero.banner/templates/about/../../style.css?17822169031718 */
/* /local/templates/main/components/bitrix/news.list/strengths_sidebar/style.css?17822169032401 */
/* /local/templates/main/assets/css/feedback.css?178221690313162 */
/* /local/templates/main/assets/css/contacts.css?17822169032557 */
