

/* Start:/local/templates/main/assets/css/p-about.css?177917752920018*/
@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/p-partners.css?17791775297085*/
@import '/local/templates/main/assets/css/statistics-inline.css';
@import '/local/templates/main/assets/css/feedback.css';
@import '/local/templates/main/assets/css/contacts.css';

a {
    text-decoration-line: none;
}

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

body {
    margin: 0;
}

/* Partners Hero Section */
.partners-hero {
    padding: 64px var(--section-side-padding);
    background-color: var(--color-solution);
}

.partners-hero__container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Breadcrumb styling for partners page */
.partners-hero__container .breadcrumb-item {
    color: #B0BEC5;
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

.partners-hero__container .breadcrumb-item:last-of-type {
    color: var(--color-text-sec);
    text-decoration: none;
}

/* Hero Content */
.partners-hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partners-hero__title {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: normal;
    color: var(--color-text-sec);
    margin: 0;
}

.partners-hero__description-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.partners-hero__description {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: var(--color-solution-desc);
    margin: 0;
    max-width: 953px;
}

.partners-hero__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #2773E4;
    border: none;
    border-radius: 4px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    transform: scale(1);
}

.partners-hero__button:hover {
    transform: scale(1.05);
    opacity: 0.9;
    box-shadow: 0 8px 25px rgba(39, 115, 228, 0.4);
}

.partners-hero__button span {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
    color: white;
}

.partners-hero__button svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
}

/* Partners Grid Section */
.partners-grid {
    padding: 0 var(--section-side-padding) 64px var(--section-side-padding);
    background-color: var(--color-solution);
}

.partners-grid__container {
    display: grid;
    gap: 24px;
}

@media (min-width: 1025px) {
    .partners-grid__container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Partner Card */
.partner-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(0);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.partner-card:hover {
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.partner-card:visited {
    color: inherit;
}

.partner-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 32px;
    height: 180px;
    flex-shrink: 0;
}

.partner-card__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-card__placeholder {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-blue-gray04);
    text-align: center;
}

.partner-card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 24px 48px 24px;
    border-top: 1px solid var(--color-btn-text);
    text-align: center;
    flex-grow: 1;
}

.partner-card__title {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: normal;
    color: var(--color-text-sec);
    margin: 0;
}

.partner-card__description {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: var(--color-solution-desc);
    margin: 0;
}

.partner-card__link {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    color: var(--color-text);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    transition: color 0.3s ease;
    margin-top: auto;
    cursor: pointer;
}

.partner-card__link:hover {
    color: var(--color-primary);
}

.partner-card:hover .partner-card__link {
    color: var(--color-primary);
}

/* Show More Button */
.partners-grid__show-more {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 43px;
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid var(--color-border);
    border-radius: 4px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
}

.partners-grid__show-more:hover {
    background-color: #F5F5F5;
    border-color: var(--color-blue-gray04);
    transform: scale(1.02);
}

.partners-grid__show-more span {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
    color: var(--color-text);
}

/* ============================================
   ADAPTIVE — partners page
   ============================================ */

/* ============================================
   ADAPTIVE — partners page
   ============================================ */

/* ---------- 1024px — 2 колонки ---------- */
@media (max-width: 1024px) {
    .partners-hero {
        padding: 40px 24px;
    }

    .partners-hero__title {
        font-size: 36px;
    }

    .partners-grid {
        padding: 0 24px 40px;
    }

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

    .partner-card__title {
        font-size: 20px;
    }

    .partner-card__description {
        font-size: 16px;
    }
}

/* ---------- 768px — 1 колонка ---------- */
@media (max-width: 768px) {
    .partners-hero {
        padding: 32px 16px;
    }

    .partners-hero__container {
        gap: 32px;
    }

    .partners-hero__title {
        font-size: 28px;
    }

    .partners-hero__description {
        font-size: 16px;
    }

    /* Описание и кнопка — колонкой */
    .partners-hero__description-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .partners-hero__button {
        width: 100%;
        justify-content: center;
    }

    .partners-grid {
        padding: 0 16px 32px;
    }

    .partners-grid__container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .partner-card__logo {
        height: 120px;
        padding: 24px 16px;
    }

    .partner-card__content {
        padding: 16px 16px 24px;
        gap: 8px;
    }

    .partner-card__title {
        font-size: 16px;
    }

    .partner-card__description {
        font-size: 14px;
    }
}

/* End */


/* Start:/local/templates/main/assets/css/p-partner-detail.css?17791775295226*/
/* Partner Detail Page - Products Section */
.partner-products {
    padding: 80px var(--section-side-padding);
    background-color: #F1F5F9;
    min-height: 60vh;
}

.partner-products__container {
    display: grid;
    grid-template-columns: 342px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sidebar */
.partner-products__sidebar {
    position: sticky;
    top: 100px;
    min-width: 342px;
    max-width: 342px;
    flex-shrink: 0;
}

.partner-products__nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.partner-products__nav-section {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.partner-products__nav-title {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: #16161C;
    padding: 20px 32px;
    border-left: 1px solid #CFD8DC;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    transition: color 0.2s, border-left 0.2s;
}

.partner-products__nav-title:hover {
    color: #2773E4;
}

.partner-products__nav-title.active {
    border-left: 2px solid #2773E4;
    color: #2773E4;
}

.partner-products__nav-submenu {
    list-style: none;
    margin: 0;
    padding: 12px 32px 32px 44px;
    border-left: 1px solid #CFD8DC;
    width: 100%;
    box-sizing: border-box;
}

.partner-products__nav-subitem {
    margin-bottom: 20px;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    color: #78909C;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    cursor: pointer;
    list-style: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    transition: color 0.2s;
}

.partner-products__nav-subitem:last-child {
    margin-bottom: 0;
}

.partner-products__nav-subitem:hover {
    color: #2773E4;
}

.partner-products__nav-subitem.active {
    color: #2773E4;
}

/* Products List */
.partner-products__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.partner-products__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Product Card */
.partner-product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.partner-product-card__link {
    display: grid;
    grid-template-columns: 254px 1fr auto;
    align-items: center;
    text-decoration: none;
    color: inherit;
    min-height: 136px;
}

.partner-product-card__image {
    border-right: 1px solid #ECEFF1;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 136px;
}

.partner-product-card__image img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.partner-product-card__image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
    background-color: #F1F5F9;
    border-radius: 8px;
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 14px;
    color: #90A4AE;
    text-align: center;
    padding: 16px;
}

.partner-product-card__info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.partner-product-card__title {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: normal;
    color: #263238;
    margin: 0;
}

.partner-product-card__description {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #607D8B;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.partner-product-card__button {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-product-card__button svg {
    width: 20px;
    height: 20px;
    color: #455A64;
    transition: transform 0.3s ease;
}

.partner-product-card:hover .partner-product-card__button svg {
    transform: translateX(4px);
}

/* Show More Button */
.partner-products__show-more {
    margin-top: 12px;
}

.partner-products__show-more-btn {
    width: 100%;
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid #CFD8DC;
    border-radius: 4px 12px;
    font-family: 'Gilroy';
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #455A64;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-products__show-more-btn:hover {
    background-color: #F5F5F5;
    border-color: #90A4AE;
}

/* Empty State */
.partner-products__empty {
    background-color: white;
    border-radius: 12px;
    padding: 60px 24px;
    text-align: center;
}

.partner-products__empty p {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 18px;
    color: #90A4AE;
    margin: 0;
}

/* End */


/* Start:/local/components/custom/hero.banner/templates/partner_detail/style.css?17791775292900*/
/* Partner Detail Hero Banner */
.partner-detail-hero {
    background-color: #FFFFFF;
    padding: 64px var(--section-side-padding) 80px;
    position: relative;
}

.partner-detail-hero__container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Breadcrumbs */
.partner-detail-hero__breadcrumbs {
    display: flex;
    align-items: center;
}

.partner-detail-hero__breadcrumbs .breadcrumb-item {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    color: #B0BEC5;
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

.partner-detail-hero__breadcrumbs .breadcrumb-item:last-of-type {
    color: #263238;
    text-decoration: none;
}

/* Content Layout */
.partner-detail-hero__content {
    display: grid;
    grid-template-columns: 1fr 342px;
    gap: 60px;
    align-items: start;
}

/* Text Section */
.partner-detail-hero__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partner-detail-hero__title {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: normal;
    color: #263238;
    margin: 0;
}

.partner-detail-hero__description {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #607D8B;
    margin: 0;
}

.partner-detail-hero__website {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: #2773E4;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    transition: opacity 0.3s ease;
}

.partner-detail-hero__website:hover {
    opacity: 0.8;
}

/* Logo Section */
.partner-detail-hero__logo-wrapper {
    position: relative;
}

.partner-detail-hero__logo {
    background-color: #FFFFFF;
    border: 1px solid #ECEFF1;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.12);
}

.partner-detail-hero__logo img {
    width: 100%;
    height: auto;
    max-height: 74px;
    object-fit: contain;
}

/* Responsive */

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

    .partner-detail-hero__title {
        font-size: 36px;
    }

    .partner-detail-hero__content {
        grid-template-columns: 1fr 260px;
        gap: 32px;
    }
}

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

    .partner-detail-hero__title {
        font-size: 28px;
    }

    .partner-detail-hero__description {
        font-size: 16px;
    }

    .partner-detail-hero__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .partner-detail-hero__logo-wrapper {
        max-width: 220px;
    }
}

/* End */


/* Start:/local/components/custom/hero.banner/templates/partner_detail/../../style.css?17791775291718*/
/* 
 * Общие стили для всех шаблонов 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/assets/css/statistics-inline.css?17791775294389*/
.statistics {
    padding: 140px var(--section-side-padding);
    gap: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Порядок на десктопе: заголовок → кнопка → список */
.statistics__banner    { order: 1; }
.statistics__more-btn  { order: 2; }
.statistics__list      { order: 3; }

.statistics h3 {
    margin: 0px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 48px;
    line-height: 57px;
    color: var(--color-blue-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.statistics__banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.statistics__more-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 10px;
    margin-top: 24px;
    background: var(--color-secondary-01);
    border-radius: 4px 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

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

.statistics__more-btn span {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.statistics__more-btn svg {
    stroke: white;
}

.statistics__list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    text-align: center;
    gap: 32px;
}

.statistics__fact {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.statistics__title {
    font-weight: 600;
    font-size: 48px;
    line-height: 57px;
    color: #2773E4;
    transition: transform 0.3s ease, color 0.3s ease;
}

.statistics__description {
    margin-top: 12px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #90A4AE;
    transition: transform 0.3s ease, color 0.3s ease;
}

.statistics__fact:hover .statistics__title {
    transform: translateY(-3px);
    color: #1565C0;
}

.statistics__fact:hover .statistics__description {
    transform: translateY(-2px);
    color: #607D8B;
}

/* ============================================
   ADAPTIVE — статистика (inline/services)
   ============================================ */

/* ---------- 1024px ---------- */
@media (max-width: 1024px) {
    .statistics {
        padding: 64px 40px;
    }

    .statistics h3 {
        font-size: 36px;
        line-height: 44px;
    }

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

    .statistics__list {
        gap: 24px;
    }
}

/* ---------- 768px (мобильный) ---------- */
@media (max-width: 768px) {
    .statistics {
        padding: 48px 20px;
        align-items: flex-start;
        gap: 24px;
    }

    .statistics__banner {
        align-items: flex-start;
        width: 100%;
    }

    .statistics h3 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 12px;
        justify-content: flex-start;
    }

    /* На мобиле сбрасываем order — элементы идут в порядке HTML: banner → list → btn */
    .statistics__banner    { order: unset; }
    .statistics__list      { order: unset; }
    .statistics__more-btn  { order: unset; align-self: flex-start; margin-top: 0; }

    .statistics__list {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        text-align: left;
        gap: 20px;
        width: 100%;
    }

    .statistics__fact {
        align-items: flex-start;
        flex: none;
        width: 100%;
    }

    .statistics__title br {
        display: none;
    }

    .statistics__title {
        font-size: 28px;
        line-height: 34px;
    }

    .statistics__description {
        font-size: 14px;
        line-height: 18px;
        margin-top: 6px;
    }
}

/* ---------- 480px ---------- */
@media (max-width: 480px) {
    .statistics {
        padding: 40px 16px;
    }

    .statistics h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .statistics__title {
        font-size: 26px;
        line-height: 32px;
    }

    .statistics__description {
        font-size: 13px;
    }
}

/* End */


/* Start:/local/templates/main/assets/css/feedback.css?177917752913162*/
.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?17791775292557*/
.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?177917752920018 */
/* /local/templates/main/assets/css/p-partners.css?17791775297085 */
/* /local/templates/main/assets/css/p-partner-detail.css?17791775295226 */
/* /local/components/custom/hero.banner/templates/partner_detail/style.css?17791775292900 */
/* /local/components/custom/hero.banner/templates/partner_detail/../../style.css?17791775291718 */
/* /local/templates/main/assets/css/statistics-inline.css?17791775294389 */
/* /local/templates/main/assets/css/feedback.css?177917752913162 */
/* /local/templates/main/assets/css/contacts.css?17791775292557 */
