

/* Start:/local/templates/main/assets/css/p-services.css?177917752933*/
@import url(/local/templates/main/assets/css/pages/services.css);

/* End */


/* Start:/local/templates/main/assets/css/sideblock.css?17791775298777*/
.sideblock {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    width: 100%;
    max-width: 342px;
}

.sideblock__buttons {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sideblock__price {
    border-top: 1px solid #CFD8DC;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sideblock__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    border: none;
    border-radius: 4px 12px 4px 12px;
    font-family: 'Gilroy';
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.sideblock__btn--call {
    background: #15E691;
    color: #FFFFFF;
}

.sideblock__btn--call:hover {
    background: #12D182;
}

.sideblock__btn--consultation {
    background: #2773E4;
    color: #FFFFFF;
    padding: 12px 24px;
}

.sideblock__btn--consultation:hover {
    background: #1E5FCC;
}

.sideblock__btn--price {
    background: transparent;
    color: #455A64;
    border: 1px solid #CFD8DC;
    padding: 12px 24px;
}

.sideblock__btn--price:hover {
    background: #F5F5F5;
    border-color: #B0BEC5;
}

.sideblock__btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.sideblock__notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-top: 12px;
}

.sideblock__notice svg {
    width: 24px;
    height: 24px;
    stroke: #90A4AE;
    flex-shrink: 0;
    margin-top: 2px;
}

.sideblock__notice p {
    font-family: 'Gilroy';
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #90A4AE;
    margin: 0;
}

/* Service Promo Block */
.service-promo {
    background: #FFFFFF;
    border: 1px solid #CFD8DC;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 342px;
    margin-top: 32px;
}

.service-promo__header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid #CFD8DC;
}

.service-promo__title {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #455A64;
    margin: 0;
}

.service-promo__content {
    padding: 32px;
}

.service-promo__text {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #90A4AE;
    margin: 0;
}

/* Service Details Layout with Sidebar */
.service-details-wrapper {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 80px var(--section-side-padding);
    background: linear-gradient(90deg, #F1F5F9 0%, #F1F5F9 100%);
    position: relative;
}

.service-details-main {
    flex: 1;
    max-width: 1034px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-details-sidebar {
    width: 342px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

/* Product Details Layout with Sidebar - aligned with gallery */
.product-details-wrapper {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 0 var(--section-side-padding);
    padding-bottom: 80px;
    position: relative;
}

/* Inner container for gallery and content */
.product-details-inner {
    flex: 1;
    max-width: 1034px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Gallery Row (overlaps banner) */
.product-gallery-row {
    display: flex;
    width: 100%;
    margin-top: -165px; /* Overlap with hero banner */
    position: relative;
    z-index: 10; /* Above hero banner */
}

/* Inline Gallery Styles */
.product-detail-gallery-inline {
    width: 100%;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.product-detail-gallery__wrapper {
    display: grid;
    grid-template-columns: 98px 1fr;
    grid-template-rows: auto;
    gap: 12px;
    align-items: start;
}

.product-detail-gallery__thumbnails {
    width: 100%;
    min-height: 0;
    height: var(--product-gallery-main-img-height, auto);
    max-height: min(78vh, 880px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
}

.product-detail-gallery__thumbnails-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: none;
}

.product-detail-gallery__thumbnails-inner::-webkit-scrollbar {
    display: none;
}

.product-detail-gallery__thumbnail {
    width: 98px;
    height: 62px;
    border: none;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-sizing: border-box;
}

.product-detail-gallery__thumbnail.active {
    box-shadow: 0 0 0 2px #5B98F2;
    border-radius: 4px;
}

.product-detail-gallery__thumbnail:hover {
    opacity: 0.88;
}

.product-detail-gallery__thumbnail img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-detail-gallery__main {
    min-height: 0;
    width: 100%;
    height: fit-content;
    border: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    box-sizing: border-box;
}

.product-detail-gallery__main-image {
    max-width: 100%;
    max-height: min(78vh, 880px);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Inline Sidebar */
.product-details-sidebar-inline {
    width: 342px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    margin-top: -165px; /* Align with gallery top */
}

/* Full Width Main Content */
.product-details-main-full {
    width: 100%;
}

.product-content {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Ensure content blocks stretch full width in product pages */
.product-content .text-block {
    width: 100%;
    max-width: none;
    margin: 0;
}

.product-content .content-table,
.product-content .faq-accordion,
.product-content .content-docs {
    width: 100%;
    max-width: none;
    margin: 0;
}

/* No gallery: убираем overlap с баннером */
.product-details-wrapper--no-gallery {
    padding-top: 48px;
}
.product-details-wrapper--no-gallery .product-gallery-row {
    display: none;
}
.product-details-wrapper--no-gallery .product-details-sidebar-inline {
    margin-top: 0;
}

.product-details-wrapper .service-details-main {
    flex: 1;
    max-width: 1034px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-details-wrapper .service-details-sidebar {
    width: 342px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

/* ============================================
   Адаптив product detail page
   ============================================ */
@media (max-width: 1024px) {
    .product-details-wrapper {
        flex-direction: column;
        padding: 0 24px 40px;
    }

    .product-gallery-row {
        margin-top: -80px;
    }

    .product-details-sidebar-inline {
        width: 100%;
        max-width: 100%;
        position: static;
        margin-top: 0;
    }

    .sideblock,
    .service-promo {
        max-width: 100%;
    }

    .product-detail-gallery__thumbnails {
        max-height: min(65vh, 560px);
    }

    .product-detail-gallery__main-image {
        max-height: min(65vh, 560px);
    }

    .product-details-wrapper .service-details-sidebar {
        width: 100%;
        position: static;
    }

    .service-details-wrapper {
        flex-direction: column;
        padding: 40px 24px;
    }

    .service-details-sidebar {
        width: 100%;
        position: static;
    }
}

@media (max-width: 768px) {
    .product-details-wrapper {
        padding: 0 16px 32px;
    }

    .product-gallery-row {
        margin-top: -60px;
    }

    .product-detail-gallery__wrapper {
        grid-template-columns: 72px 1fr;
        grid-template-rows: auto;
    }

    .product-detail-gallery__thumbnails {
        max-height: min(55vh, 420px);
    }

    .product-detail-gallery__main-image {
        max-height: min(55vh, 420px);
    }

    .product-detail-gallery__thumbnail {
        width: 72px;
        height: 48px;
    }

    .service-details-wrapper {
        padding: 32px 16px;
    }
}

/* End */


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

.service-detail-hero {
    position: relative;
    padding: 64px var(--section-side-padding);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* Декоративный фон - убран для использования фото из инфоблока */

.service-detail-hero__container {
    position: relative;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    z-index: 1;
    max-width: 1050px;
}

.service-detail-hero__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}

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

.service-detail-hero__breadcrumbs .bx-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-hero__breadcrumbs .bx-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-hero__breadcrumbs .bx-breadcrumb-item a {
    color: #B0BEC5;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    transition: color 0.3s ease;
}

.service-detail-hero__breadcrumbs .bx-breadcrumb-item a:hover {
    color: #ffffff;
}

.service-detail-hero__breadcrumbs .bx-breadcrumb-item span {
    color: #ffffff;
    font-weight: 600;
}

.service-detail-hero__breadcrumbs .bx-breadcrumb-item::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #B0BEC5;
    transform: rotate(-15deg);
    margin: 0 4px;
}

.service-detail-hero__breadcrumbs .bx-breadcrumb-item:last-child::after {
    display: none;
}

/* Title */
.service-detail-hero__title {
    margin: 0;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
}

/* Description */
.service-detail-hero__description {
    margin: 0;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #ffffff;
}

/* Icon/Illustration - убрана */

/* Responsive */

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

    .service-detail-hero__title {
        font-size: 36px;
        line-height: 1.3;
    }

    .service-detail-hero__description {
        font-size: 17px;
    }
}

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

    .service-detail-hero__title {
        font-size: 26px;
        line-height: 1.3;
    }

    .service-detail-hero__description {
        font-size: 15px;
    }

    .service-detail-hero__content {
        gap: 24px;
    }
}

/* End */


/* Start:/local/components/custom/hero.banner/templates/service_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/components/custom/subtitle/templates/.default/style.css?1779177529208*/
.custom-subtitle {
    margin: 0;
    padding: 0;
}

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

.custom-subtitle--center {
    text-align: center;
}

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

/* End */


/* Start:/local/components/custom/text.block/templates/.default/style.css?17791775292406*/
.text-block {
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.text-block--with-bg {
    background: #FFFFFF;
    border: 1px solid #CFD8DC;
    border-radius: 12px;
    padding: 32px;
}

.text-block__content {
    font-size: 18px;
    color: #263238;
    line-height: 1.8;
}

.text-block--with-bg .text-block__content {
    font-size: 14px;
    line-height: 1.6;
    color: #546E7A;
}

.text-block__content p {
    margin: 0 0 15px 0;
}

.text-block__content p:last-child {
    margin-bottom: 0;
}

.text-block__content ul,
.text-block__content ol {
    margin: 0 0 15px 0;
    padding-left: 30px;
}

.text-block__content li {
    margin-bottom: 15px;
}

.text-block--with-bg .text-block__content ul,
.text-block--with-bg .text-block__content ol {
    margin: 0 0 16px 0;
    padding-left: 22px;
    list-style-position: outside;
}

.text-block--with-bg .text-block__content li {
    margin-bottom: 6px;
}

.text-block__content ul {
    list-style: disc;
}

.text-block__content ol {
    list-style: decimal;
}

.text-block--with-bg .text-block__content ul,
.text-block--with-bg .text-block__content ol {
    list-style: revert;
}

.text-block__content strong {
    color: #2773E4;
    font-weight: 600;
}

.text-block--with-bg .text-block__content strong {
    color: inherit;
    font-weight: 600;
}

.text-block__content h4,
.text-block__content h5,
.text-block__content h6 {
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.text-block--with-bg .text-block__content :where(h1, h2, h3, h4, h5, h6) {
    color: #263238;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px 0;
}

.text-block--with-bg .text-block__content :where(h1) { font-size: 20px; }
.text-block--with-bg .text-block__content :where(h2) { font-size: 18px; }
.text-block--with-bg .text-block__content :where(h3) { font-size: 16px; }

.text-block--with-bg .text-block__content :where(h4, h5, h6) {
    font-size: 14px;
    margin-bottom: 10px;
}

.text-block__content a {
    color: #2773E4;
    text-decoration: none;
}

.text-block__content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .text-block__content {
        font-size: 16px;
        line-height: 1.7;
    }

    .text-block--with-bg {
        padding: 20px 16px;
    }

    .text-block--with-bg .text-block__content {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* 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-services.css?177917752933 */
/* /local/templates/main/assets/css/sideblock.css?17791775298777 */
/* /local/components/custom/hero.banner/templates/service_detail/style.css?17791775292952 */
/* /local/components/custom/hero.banner/templates/service_detail/../../style.css?17791775291718 */
/* /local/components/custom/subtitle/templates/.default/style.css?1779177529208 */
/* /local/components/custom/text.block/templates/.default/style.css?17791775292406 */
/* /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 */
