@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

:root {
    --c-bg: #F3F7FC;
    --c-text: #1A2545;
    --c-muted: #6b7280;
    --c-line: #e5e7eb;
    --c-primary: #3579F6;
    --c-primary-600: #1f5af0;
    --radius: 10px;
    --shadow: 0 6px 24px rgba(22, 33, 74, .08), 0 2px 8px rgba(22, 33, 74, .06);
    --container: 1392px;
    --font-base: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-title: "Alumni Sans", "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans";
}

/* Base/reset */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: var(--font-base);
}

body {
    min-height:100%;
    margin: 0;
    color: var(--c-text);
    background: var(--c-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

/* ===================== HEADER BLOCK ===================== */

.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;             /* выше оверлея и контента */
  background: #fff;
  box-shadow: 0 6px 12px 0 rgba(25,46,109,.1);
}
.header__spacer{ width:100%; height:var(--header-h, 100px); }
@media (min-width:960px){

}
/* Настройка слоёв мобильной навигации */
@media (max-width:960px){
  .header__overlay { z-index: 990; }  /* затемнение ниже хедера */
  .header__nav     { z-index: 1010; } /* меню выше хедера */
}

/* Отступ для якорей (чтобы #anchor не прятался под хедером) */
:root{ --header-h: 100px; }
[id]{ scroll-margin-top: var(--header-h); }

.header__top {
    border-bottom: 1px solid rgba(26, 37, 69, 0.1);
}

.header__top-inner {
    height: 39px;
    padding: 4px 16px 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__phones {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.header__lang {
    margin-left: auto;
}

.header__lang .dropdown__menu {
    max-width: 120px;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown summary {
    display: flex;
    align-items: center;
    gap: 0px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    outline: none;
    user-select: none;
    transition: all .2s ease;
    background: #F3F7FC;
}

.dropdown summary::-webkit-details-marker {
    display: none;
}

.dropdown[open]>summary .dropdown__chevron {
    transform: rotate(180deg);
}

.dropdown__menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    min-width: 105px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 6px;
    z-index: 20;
}

.dropdown__menu.phone__list {
    min-width: 222px;
}

.dropdown__item a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: #141414;
    transition: all 0.2s;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    opacity: 0.95;
}

.dropdown__item a:hover {
    color: var(--c-primary);
    opacity: 1;
    background: #F3F7FC;
}

.dropdown__label {
    font-weight: 500;
}

/* Phone dropdown */
.phone {
    white-space: nowrap;
}

.phone__row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 5px 0 12px;
}

.phone__flag {
    width: 24px;
    height: 18px;
    background-position: center;
    background-size: cover;
}

.flag--by {
    background-image: url('/assets/img/by_flag.png');
}

.flag--lt {
    background-image: url('/assets/img/l_flag.png');
}

.phone__icon,
.dropdown__chevron,
.lang__icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    flex: 0 0 16px;
}

.phone__number {
    font-weight: 500;
    color: #111827;
}

.phone__note {
    display: none;
    color: var(--c-muted);
    font-size: 12px;
}

.header__bottom-inner {
    height: 100px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.header__logo {
    display: flex;
    width: 180px;
    height: auto;
    position: relative;
}

.header__logo img {
    object-fit: contain;
    width: 100%;
}

/* Main nav */
.nav {
    flex: 1 1 auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 10px 50px;
    flex-wrap: wrap;
}

.menu__item {
    position: relative;
    padding: 10px 0px;
}

.menu__link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #141414;
    transition: all 0.2s;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.8;
}

.menu__link:hover {
    color: var(--c-primary);
    opacity: 1;
}

.menu__item--has-sub .menu__sub {
    position: absolute;
    top: calc(100%);
    left: 0;
    min-width: 280px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 6px;
    display: none;
    z-index: 20;
}

.menu__item--has-sub:hover .menu__sub,
.menu__item--has-sub:focus-within .menu__sub {
    display: block;
}

.menu__sub a {
    display: block;
    padding: 10px 12px;
    color: #141414;
    transition: all 0.2s;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    opacity: 0.8;
}

.menu__sub a:hover {
    color: var(--c-primary);
    opacity: 1;
    background: #F3F7FC;
}

button{
    font-family:var(--font-base);
    cursor:pointer;
}

.button {
    font-family:var(--font-base);
    cursor:pointer;
    border:0px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    outline: 3px solid #498DFF;
    transition: all .2s ease;
    white-space: nowrap;
}

.button--primary {
    background: var(--c-primary);
    color: #fff;
}

.button--primary:hover {
    background: var(--c-primary-600);
    outline: 3px solid var(--c-primary);
}

.button__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

@media (max-width:1300px) {
    .menu {
        gap: 0px 20px;
    }
}



@media (max-width:960px) {
    .header__callback {
        display: none;
    }
    .header__bottom-inner {
        flex-wrap: wrap;
        gap: 16px;
    }

    .menu {
        gap: 18px;
    }
}

@media (max-width:768px) {
    .menu__item--has-sub:hover .menu__sub, .menu__item--has-sub:focus-within .menu__sub{
        display:none;
    }
    .header__logo {
        width: 135px;
    }

    .header__bottom-inner {
        height: 64px;
    }

    .header__top-inner {
        height: auto;
        padding-block: 3px 16px 2px;
    }

    .header__phones {
        display: none;
    }

    .menu {
        font-size: 15px;
    }
}

/* ===== Burger ===== */
.header__burger {
    background-color: transparent;
    display: none;
    width: 20px;
    height: 15px;
    margin-left: auto;
    background-image: url('/assets/img/open.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.header.is-menu-open .header__burger {
    background-image: url('/assets/img/close.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


/* ===== Off-canvas меню (мобилка) ===== */
@media (max-width:960px) {
    .header__burger {
        display: inline-flex;
    }

    .header__callback {
        display: none;
    }

    .header__callback--mobile {
        display: inline-flex;
        margin-top: auto;
    }

    .header__nav {
        position: fixed;
        right: 0;
        top: 0;
        width: min(86vw, 360px);
        height: 100vh;
        background: #fff;
        z-index: 30;
        box-shadow: -12px 0 28px rgba(0, 0, 0, .18);
        padding: 18px 16px 24px;
        transform: translateX(100%);
        transition: transform .25s ease;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .header.is-menu-open .header__nav {
        transform: translateX(0);
    }

    .header__overlay {
        position: fixed;
        inset: 0;
        z-index: 25;
        background: rgba(0, 12, 32, .45);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }

    .header.is-menu-open .header__overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .menu__item {
        padding: 6px 0;
    }

    .menu__link {
        font-size: 18px;
        line-height: 1.2;
        opacity: 1;
    }

    .menu__item--has-sub .menu__sub {
        position: static;
        display: none;
        border: 0;
        background: transparent;
        padding-left: 14px;
        margin-top: 6px;
    }

    .menu__item--has-sub.is-open .menu__sub {
        display: block;
    }

    .menu__link .dropdown__chevron {
        margin-left: 6px;
        transition: transform .2s ease;
    }

    .menu__item--has-sub.is-open .menu__link .dropdown__chevron {
        transform: rotate(180deg);
    }
}

@media (min-width:961px) {
    .header__overlay {
        display: none;
    }
}

.dropdown.header__lang summary {
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    padding: 6.5px 8px;
    color: #1A2545;
}

.nav.header__nav .header__phones,
.nav.header__nav .header__callback {
    display: none;
}

@media(max-width:960px) {
    .nav.header__nav .header__phones {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav.header__nav .header__callback {
        display: flex;
        width: fit-content;
    }
}

/* ===== SERVICES ===== */
.services {
    padding: 60px 0 120px;
}

.services__inner {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.services__column {
    flex: 1 1 100%;
    min-width: 0;
}

@media (min-width: 992px) {
    .services__column {
        flex: 1 1 calc(50% - 8px);
    }

    .services__inner {
        gap: 16px;
    }
}

.services__title {
    font-family: var(--font-title);
    margin: 0 0 16px;
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1;
}

@media (max-width: 768px) {
    .services__title {
        margin: 0 0 12px;
        font-size: 40px;
    }
}

.services__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.services__item {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .services__item {
        flex: 1 1 calc(50% - 8px);
    }
}

.service-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 16px;
    min-height: 64px;
    background: #fff;
    border-radius: 14px;
    text-decoration: none;
    color: var(--c-text);
    transition: all .2s ease;
    box-shadow: 0 4px 20px 0 rgba(26, 37, 69, 0.1);
    border-radius: 16px;
}

.services__item.active .service-card {
    background: transparent;
    border: 1px solid #1A25451A;
    box-shadow: none;
    position: relative;
}

.services__item.active .service-card::after {
    content: var(--text);
    display: block;
    position: absolute;
    bottom: 21px;
    left: 16px;
    color: rgba(26, 37, 69, .6);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.services__item.active .service-card__bottom {
    display: none;
}

@media (min-width: 768px) {

    .service-card {
        align-items: flex-start;
        gap: 6px;
        flex-direction: column;
        padding: 12px 16px 16px;
    }
}

.service-card__img {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background: var(--img) center/contain no-repeat;
}

@media (min-width: 768px) {
    .service-card__img {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
    }
}

.service-card__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

@media (max-width: 768px) {
    .page-usluga .services__inner {
        gap: 4px;
    }

    .services__item.active .service-card::after {
        content: '';
        display: none;
    }

    .service-card__content {
        flex-direction: row;
        flex: 1 1 auto;
    }
}

.service-card__title {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #1A2545;
}

@media (min-width: 768px) {
    .service-card__title {
        font-size: 20px;
    }
}

.service-card__more {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(255, 255, 255, 1);
    opacity: 0;
    transform: translateX(40px);
    transition: all .2s ease;
    pointer-events: none;
}

.service-card__cta {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #E8EDFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    color: inherit;
}

.service-card__cta svg {
    width: 20px;
    height: 20px;
}

/* Было: .service-card:hover ... */
body:not(.services-page) .services__item:not(.active) .service-card:hover,
body:not(.services-page) .services__item:not(.active) .service-card.is-cta-hover {
  background: var(--c-primary, #2F6BFF);
  border-color: var(--c-primary, #2F6BFF);
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(26, 37, 69, 0.3);
  cursor: pointer;
}

body:not(.services-page) .services__item:not(.active) .service-card:hover .service-card__title,
body:not(.services-page) .services__item:not(.active) .service-card.is-cta-hover .service-card__title { color:#fff; }

body:not(.services-page) .services__item:not(.active) .service-card:hover .service-card__img,
body:not(.services-page) .services__item:not(.active) .service-card.is-cta-hover .service-card__img { filter:brightness(0) invert(1); }

body:not(.services-page) .services__item:not(.active) .service-card:hover .service-card__more,
body:not(.services-page) .services__item:not(.active) .service-card.is-cta-hover .service-card__more {
  opacity: 1;
  transform: translateX(0);
  color: rgba(255,255,255,.6);
}

body:not(.services-page) .services__item:not(.active) .service-card:hover .service-card__cta,
body:not(.services-page) .services__item:not(.active) .service-card.is-cta-hover .service-card__cta {
  background: rgba(255,255,255,.4);
  border-color: transparent;
  color: #fff;
  fill: #fff;
}

body:not(.services-page) .services__item:not(.active) .service-card:hover .service-card__cta path,
body:not(.services-page) .services__item:not(.active) .service-card.is-cta-hover .service-card__cta path { fill:#fff; }



.services {
    --services-title-max: auto;
}

.services__title {
    min-height: var(--services-title-max);
}

.service-card__bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

@media (max-width: 768px) {
    .services {
        padding: 24px 0 48px;
    }

    .services__list {
        gap: 4px;
    }

    .service-card__cta {
        flex: 0 0 auto;
        width: 32px;
        height: 32px;
        border-radius: 999px;
        background: rgba(232, 237, 255, 1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all .2s ease;
        color: inherit;
    }

    .service-card__cta svg {
        width: 18px;
        height: 18px;
    }

    .services__title {
        min-height: unset;
    }

    .service-card__content {
        align-items: center;
    }

    .service-card__title {
        min-width: 80%;
        width: 100%;
    }

    .service-card__bottom {
        gap: 0px;
        width: 100%;
        margin-left: auto;
        margin-top: 0px;
    }

    .service-card__more {
        display: none;
    }
}

/* ===== ADVANTAGES ===== */
.advantages {
    padding: 48px 0 78px;
    background: #1A2545;
    color: #FFFFFF;
}

.advantages__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantages__title {
    margin: 0 auto 32px;
    font-family: var(--font-title);
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: -0.03em;
}

.advantages__title:after {
    content: "";
    display: block;
    margin: 8px auto 0;
    width: 114px;
    height: 18px;
    background-image: url('/assets/img/underTitle.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.advantages__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    align-items: stretch;
}

.advantages__item {
    flex: 1 1 100%;
    display: flex;
}

@media (min-width: 768px) {
    .advantages__item {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (min-width: 992px) {
    .advantages__item {
        flex: 1 1 calc(33.333% - 11px);
    }
}

.adv-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.adv-card__head {
    display: flex;
    align-items: flex-start;
    padding: 24px 20px 0;
    gap: 12px;
    margin-bottom: 28px;
}

.adv-card__tick {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
}

.adv-card__title {
    margin: 0;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.03rem;
    color: #fff;
}

.adv-card__img {
    margin-inline: auto;
    max-width: 473px;
    margin-top: auto;
    width: 100%;
    height: auto;
}

.advantages__toggle {
    font-family: var(--font-base);
    display: none;
    width: 100%;
    margin-top: 8px;
    border: 3px solid rgba(235, 207, 46, 1);
    border-radius: 0px;
    padding: 11px 16px 13px;
    background: rgba(255, 227, 66, 1);
    color: #1A2545;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.advantages__toggle-ico {
    transition: all .2s ease;
}

.advantages__toggle-text {
    display: none;
}

.advantages__toggle-text--more {
    display: inline;
}

@media (max-width: 768px) {
    .advantages {
        padding: 24px 0 0px;
    }

    .advantages__title {
        margin: 0 auto 12px;
        font-size: 40px;
    }

    .advantages__title:after {
        content: "";
        display: block;
        margin: 7px auto 0;
        width: 80px;
        height: 12px;
    }

    .adv-card__tick,
    .adv-card__tick svg {
        width: 26px;
        height: 26px;
    }

    .adv-card__head {
        display: flex;
        align-items: flex-start;
        padding: 16px 12px 0;
        gap: 8px;
        margin-bottom: 16px;
    }

    .advantages__list {
        gap: 8px;
    }

    .adv-card__img {
        max-width: 252px;
    }

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

    .advantages__toggle {
        display: inline-flex;
    }

    .advantages--collapsed .advantages__item:nth-child(n+4) {
        display: none;
    }
}

.advantages--expanded .advantages__toggle {
    background: #347AF6;
    border-color: #498DFF;
    color: #fff;
}

.advantages__toggle-ico {
    transform: rotate(90deg);
    width: 18px;
    height: 18px;
}

.advantages--expanded .advantages__toggle-ico {
    transform: rotate(-90deg);
}

.advantages--expanded .advantages__toggle-text {
    display: none;
}

.advantages--expanded .advantages__toggle-text--less {
    display: inline;
}

@media (min-width: 768px) {
    .advantages {}

    .advantages__toggle {
        display: none;
    }
}

/* ===== INDUSTRIES ===== */
.industries {
    padding: 92px 0 160px;
}

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

.industries__title {
    font-family: var(--font-title);
    margin: 0 0 32px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 80px;
    letter-spacing: -0.03rem;
    line-height: 1;
    text-align: left;
    position: relative;
}

.industries__title::after {
    content: "";
    display: block;
    width: 114px;
    height: 18px;
    margin: 8px 0 0;
    background: url('/assets/img/underTitle.svg') center/contain no-repeat;
}

.industries__list {
    --gap: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px var(--gap);
    align-items: stretch;
    margin: 0;
    padding: 0;
    list-style: none;
}

.industries__item {
    display: flex;
    flex: 1 1 100%;
    flex-basis: 100%;
}

@media (min-width: 768px) {
    .industries__item {
        flex-basis: calc((100% - var(--gap)) / 2);
    }
}

@media (min-width: 960px) {
    .industries__item {
        flex-basis: calc((100% - var(--gap)*2) / 3);
    }
}

@media (min-width: 1280px) {
    .industries__item {
        flex-basis: calc((100% - var(--gap)*3) / 4);
    }
}

.ind-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    height: 100%;
}

.ind-card__media {
    flex: 0 0 166px;
    width: 166px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background: #F3F7FC;
}

.ind-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.ind-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ind-card__title {
    margin: 0px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.03rem;
    color: #1A2545;
}

.ind-card__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.03rem;
    color: rgba(26, 37, 69, 0.6);
}

.ind-card__media {
  position: relative;
  isolation: isolate; /* чтобы блик не выходил наружу */
}

/* мягкий зум/осветление картинки на ховере */
.ind-card__img {
  transition: transform .6s ease, filter .6s ease;
  will-change: transform;
}

.ind-card:hover .ind-card__img {
  transform: scale(1.03);
  filter: brightness(1.03) contrast(1.02);
}

/* сам блик — диагональная полоса */
.ind-card__media::after {
  content: "";
  position: absolute;
  inset: -120% -40%; /* шире, чтобы блик красиво «въезжал/выезжал» */
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.65) 50%,
    rgba(255,255,255,0) 65%,
    transparent 100%
  );
  transform: translateX(-100%) rotate(12deg);
  opacity: .9;
  pointer-events: none;
}

/* запуск анимации блика при наведении на карточку */
.ind-card:hover .ind-card__media::after {
  animation: indCardShine .9s ease forwards;
  will-change: transform;
}

@keyframes indCardShine {
  to { transform: translateX(100%) rotate(12deg); }
}

/* уважение prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .ind-card__img { transition: none; }
  .ind-card:hover .ind-card__media::after { animation: none; }
}
@media (min-width: 768px) {

    .ind-card {
        flex-direction: column;
    }

    .ind-card__media {
        flex: 1 1 220px;
        max-height: 220px;
        width: 100%;
        height: 220px;
    }
}

@media (max-width: 768px) {

    .ind-card__title {
        font-size: 18px;
        line-height: 1.1;
    }

    .ind-card__text {
        font-size: 14px;
        line-height: 1.2;
    }

    .industries__title {
        margin: 0 0 16px;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 40px;
    }

    .industries__title::after {
        content: "";
        display: block;
        width: 80px;
        height: 12px;
        margin: 4px 0 0;
        background: url('/assets/img/underTitle.svg') center / contain no-repeat;
    }

    .industries {
        padding: 48px 0 80px;
    }

    .industries__list {
        gap: 8px;
    }
}

@media (max-width: 420px) {
    .ind-card__media {
        flex: 0 0 110px;
        width: 110px;
        height: 110px;
        border-radius: 12px;
        overflow: hidden;
        background: #F3F7FC;
    }
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 114px;
    --footer-text: #E8F1FF;
    --footer-accent: #2F6BFF;
    --footer-top: url('/assets/img/footer_decor.png');
    --footer-top-height: 120px;
    --footer-top-offset: 36px;
    position: relative;
    color: #fff;
    background: #1A2545;
    overflow: visible;
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: calc(-1 * var(--footer-top-height) + 8px);
    height: var(--footer-top-height);
    background: var(--footer-top) repeat-x;
    pointer-events: none;
}

@media(max-width:768px) {
    .desktop {
        display: none;
    }

    .footer::before {
        background-position-x: 15%;
    }
}

.footer__inner {
    padding: 24px 16px 24px;
}

.footer__cols {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 16px;
}

.footer__col {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
}

@media (max-width: 1310px) {
    .footer__cols {
        justify-content: center;
    }

    .footer__col {
        order: 1;
        max-width: 420px;
    }

    .footer__col--nav {
        order: 2;
    }

    .footer__col--contacts {
        order: 3;
    }
}

@media (min-width: 1310px) {


    .footer__col {
        flex: 0 0 328px;
    }

    .footer__col--nav {
        flex: 0 0 213px;
    }

    .footer__col--contacts {
        flex: 0 0 357px;
        margin-left: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
}

.footer__title {
    margin: 0 0 20px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.03rem;
    color: rgba(255, 255, 255, .1);
}

.footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__link {
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
    text-decoration: none;
    transition: all .2s;
}

.footer__link:hover {
    opacity: .7;
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__list-link {
    position: relative;
    display: inline-flex;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    transition: all .2s;
}

.footer__list-link::before {
    content: "";
    min-width: 15px;
    min-height: 26px;
    width: 15px;
    height: 26px;
    background-color: #fff;
    -webkit-mask: url('/assets/img/footer-arrow.svg') center/contain no-repeat;
    mask: url('/assets/img/footer-arrow.svg') center/contain no-repeat;
    transition: all .2s;
}

.footer__list-link:hover::before {
    background-color: #347AF6;
}

.footer__list-link:hover {
    transform: translateX(2px);
}

.footer__phones-caption {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, .4);
    margin: 0 0 10px;
}

.footer__phones {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.footer__phone {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s;
}

.footer__phone:hover {
    color: rgba(52, 122, 246, 1);
}

.footer__phone-ico svg {
    width: 20px;
    height: 20px;
    opacity: .4;
}

.footer__phone-num {
    font-weight: 500;
    font-size: 32px;
    line-height: 1.4;
}

.footer__flag {
    width: 24px;
    height: 18px;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__soc {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .2s;
}

.footer__soc:hover {}

.footer__soc-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(1);
    opacity: .4;
    transition: all .2s;
}

.footer__soc:hover .footer__soc-img,
.footer__soc:focus-visible .footer__soc-img {
    filter: none;
    opacity: 1;
}

.footer__legal {
    
    display: flex;
    flex-direction:column;
    justify-content: flex-end;
    text-align: right;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 54px;
}

.footer__legal-link {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3;
    color: rgba(255, 255, 255, .3);
    text-decoration: underline;
    transition: all 0.2s;
}

.footer__legal-link:hover {
    color: rgba(255, 255, 255, .6);
}

.footer__bottom-inner {
    background-color: rgba(22, 33, 65, 1);
}

.footer__bottom {
    padding: 16px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__bottom a {
    margin-left: auto;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all .2s;
}

.footer__bottom a:hover {
    color: rgba(255, 255, 255, .5);
}

.footer__bottom a:after {
    content: '';
    background-image: url('/assets/img/logo-d.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    margin-left: 8px;
    -webkit-filter: grayscale(100%) brightness(0) invert(1);
    -moz-filter: grayscale(100%) brightness(0) invert(1);
    -ms-filter: grayscale(100%) brightness(0) invert(1);
    -o-filter: grayscale(100%) brightness(0) invert(1);
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 1;
    transition: all 0.2s;
}

.footer__bottom a:hover:after {
    
    opacity: 1;
}

.footer__dev {
    font-size: 13px;
}

.footer__devlogo img {
    height: 20px;
    display: block;
    opacity: 1;
}

.footer__col--nav .footer__title .footer__socials {
    display: none;
}

@media(max-width:768px) {
    .footer__col--nav .footer__title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .footer__socials {
        display: none;
    }

    .footer__col--nav .footer__title .footer__socials {
        display: flex;
    }

    .footer__inner {
        padding: 16px 16px 16px;
    }

    .footer__legal {
        padding-top: 56px;
        justify-content: flex-start;
        text-align: left;
        gap: 16px;
    }

    .footer__socials {
        gap: 14px;
    }

    .footer__cols {
        gap: 32px;
    }

    .footer__soc {
        width: 36px;
        height: 36px;
    }

    .footer__menu {
        gap: 20px;
    }

    .footer__link {
        font-size: 16px;
    }

    .footer__col {
        display: none;
        max-width: 100%;
    }

    .footer__col--nav {
        display: block;
    }

    .footer__col--contacts {
        display: block;
    }

    .footer__phones {
        margin-bottom: 0px;
        gap: 6px;
    }

    .footer__phone-num {
        font-size: 24px;
    }

    .footer__phone {
        gap: 12px;
    }
}

@media(max-width:440px) {
    .footer__phones-caption {
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 4px;
    }

    .footer__phone-ico svg {
        width: 16px;
        height: 16px;
    }
}

.hero {
    height: 550px;
}

.hero__slider {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero__slide {
    height: 550px;
    background: var(--bg) center/cover no-repeat #eef2f7;
    position: relative;
}

.hero__content {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero__text {
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.hero__title {
    font-family: var(--font-title);
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    line-height: .8;
    letter-spacing: -0.03rem;
    font-size: clamp(110px, 14vw, 200px);
    color: rgba(26, 37, 69, 1);
}

.hero__title::after {
    content: '';
    display: block;
    width: 114px;
    height: 18px;
    background: url('/assets/img/underTitle.svg') center/contain no-repeat;
}

.hero__subtitle {
    display: none;
    margin: 0;
    font-size: clamp(16px, 2.2vw, 20px);
    color: rgba(23, 36, 63, .8);
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 80px;
    padding: 0 51px;
    border-radius: 10px;
    background: rgba(255, 227, 66, 1);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(26, 37, 69, 1);
    border: 5px solid rgba(235, 207, 46, 1);
    transition: all 0.2s;
}

.hero__btn:hover {
    border: 5px solid rgba(235, 207, 46, 0.5);
    background: rgba(235, 207, 46, 1);
}

.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(0, 0, 0, .08);
    color: #2F3B57;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}

.hero__nav:hover {
    background: #fff;
    transform: translateY(calc(-50% - 1px));
}

.hero__nav svg {
    width: 22px;
    height: 22px;
}

.hero__nav--prev {
    left: 12px;
}

.hero__nav--next {
    right: 12px;
}

.hero__pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 7px !important;
    background: rgba(218, 218, 218, 1);
    opacity: 1;
}

.hero__pagination .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: #347AF6;
}

.hero__slide--light .hero__text {
    color: #fff;
}

.hero__slide--light .hero__subtitle {
    color: rgba(255, 255, 255, .85);
}
@media (max-width:960px) {
  .menu__link { position: relative; }
  .menu__link .dropdown__chevron {
      object-fit:contain;
    pointer-events: auto;   /* стрелка кликается отдельно */
    width: 24px; height: auto; /* побольше хитовое поле */
    margin-left: 6px;
  }
}
@media(max-width:768px) {
    .hero__title::after {
        content: '';
        display: block;
        width: 80px;
        height: 12px;
        background: url('/assets/img/underTitle.svg') center/contain no-repeat;
    }

    .hero {
        height: 400px;
    }

    .hero__slide {
 
        height: 400px;
        background: var(--bg) left / cover no-repeat #eef2f7;
    }

    .hero__pagination {
        bottom: 12px;
    }

    .hero__text {
        max-width: 100%;
        gap: 51px;
    }

    .hero__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        height: 65px;
        padding: 0 37px;
        border-radius: 6px;
        background: rgba(255, 227, 66, 1);
        font-size: 15px;
        text-align: center;
    }

    .hero__content {
        align-items: flex-start;
        padding-top: 56px;
    }
}

.iconcards {
    padding: 80px 0 80px;
}

.iconcards--dark {
    padding: 60px 0 72px;
    background: rgba(26, 37, 69, 1);
}

.iconcards__title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-title);
    margin: 0 0 23px;
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1;
}

.iconcards__title img {
    width: 44px;
    height: 44px;
}

@media (max-width: 768px) {
    .iconcards__title {
        gap: 12px;
        margin: 0 0 16px;
        font-size: 40px;
    }

    .iconcards__title img {
        width: 28px;
        height: 28px;
    }
}

.iconcards__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.iconcards__item {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .iconcards__item {
        flex: 1 1 calc(25% - 16px);
    }
}

.iconcard-card__title {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #1A2545;
}

@media (min-width: 768px) {
    .iconcard-card__title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .iconcards {
        padding: 40px 0 40px;
    }

    .iconcards--dark {
        padding: 24px 0 30px;
    }

    .iconcards__list {
        gap: 4px;
    }

    .iconcard-card__content {
        align-items: center;
    }

    .iconcard-card__title {
        min-width: 80%;
        width: 100%;
    }
}

.iconcard-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    min-height: 64px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    color: var(--c-text);
    transition: all .2s ease;
    box-shadow: 0 4px 20px 0 rgba(26, 37, 69, 0.1);
    border-radius: 16px;
    height:100%;
}

.iconcards--dark .iconcard-card {
    background: rgba(255, 255, 255, 0.1);
    color: #Fff;
}

.iconcards--dark .iconcards__title,
.iconcards--dark .iconcard-card__title {
    color: #fff;
}

@media (min-width: 768px) {
    .iconcard-card {
        align-items: flex-start;
        gap: 16px;
        flex-direction: column;
        padding: 16px 16px 24px;
    }
}

.iconcard-card__img {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background: var(--img) center/contain no-repeat;
}

@media (min-width: 768px) {
    .iconcard-card__img {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
    }
}

.iconcard-card__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

@media (max-width: 768px) {
    .iconcard-card__content {
        flex-direction: row;
        flex: 1 1 auto;
    }
}

.contact {
    font-family: var(--font-base);
    margin-top: 120px;
    padding-bottom: 120px;
}

.contact .container {
    max-width: 1472px;
}

@media (max-width: 768px) {
    .contact {
        margin-top: 48px;
        padding-bottom: 80px;
    }

    .contact.contact--dark {
        margin-top: 56px;
        padding-bottom: 80px;
    }
}

.contact__box {
    display: flex;
    align-items: stretch;
    background: #E8EDFF;
    border-radius: 24px;
    overflow: hidden;
}

.contact--dark .contact__box {
    background: #1A2545;
}

.contact__left {
    flex: 1 1 664px;
    padding: 24px clamp(16px, 3.2vw, 60px) 29px;
    display: flex;
    flex-direction: column;
}

.contact__title {
    font-family: var(--font-title);
    margin: 0 0 8px;
    font-size: clamp(40px, 4.2vw, 64px);
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: #1A2545;
}

.contact--dark .contact__title {
    color: #fff;
}

.contact__desc {
    margin: 0 0 15px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    color: #1A2545;
    max-width: 537px;
    letter-spacing: -0.03rem;
    opacity: 60%;
}

.contact--dark .contact__desc {
    color: #fff;
}

.contact__form {
    max-width: 544px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media(max-width:768px) {
    .contact .container {
        padding: 0px;
    }

    .contact__desc {
        margin: 0 0 12px;
        font-size: 14px;
        max-width: 100%;
    }

    .contact__form {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.contact__input,
.contact__textarea {
    font-family: var(--font-base);
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(26, 37, 69, 0.1);
    background: rgba(26, 37, 69, 0.06);
    padding: 12px 23px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(26, 37, 69, 0.8);
    outline: none;
    transition: all 0.2s;
}

.contact--dark .contact__input,
.contact--dark .contact__textarea {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
}

.contact__input {
    height: 58PX;
}

.contact__textarea {
    min-height: 110px;
    height: 110PX;
    resize: vertical;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    font-family: var(--font-base);
    color: rgba(26, 37, 69, 0.4);
}

.contact--dark .contact__input::placeholder,
.contact--dark .contact__textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

@media(max-width:768px) {

    .contact__input,
    .contact__textarea {
        padding: 11px 15px 12px;
        font-size: 14px;
    }

    .contact__input {
        height: 50PX;
    }

    .contact__textarea {
        min-height: 120px;
        height: 120PX;
        resize: vertical;
    }
}

.contact__input:focus,
.contact__textarea:focus {
    border-color: var(--c-primary);
    background: #F3F7FC;
}

.contact--dark .contact__input:focus,
.contact--dark .contact__textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.contact__consent {
    margin-top: 5px;
    font-family: var(--font-base);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #1A2545;
}

.contact--dark .contact__consent {
    color: rgba(255, 255, 255, 0.6);
}

.contact__checkbox {
    cursor: pointer;
    margin: 0px !important;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    accent-color: var(--c-primary);
}

@media(max-width:768px) {

    .contact__consent {
        gap: 6px;
        font-size: 14px;
    }

    .contact__checkbox {
        width: 14px;
        height: 14px;
    }
}

.contact__consent-text a {
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: all 0.2s;
}

.contact__consent-text a:hover {
    color: var(--c-primary);
}

.contact__submit {
    font-family: var(--font-base);
    margin-top: 11px;
    height: 75px;
    border-radius: 10px;
    padding: 0 22px;
    line-height: 1.2;
    font-weight: 500;
    font-size: 17px;
    background: #3579F6;
    color: #fff;
    border: 5px solid #498DFF;
    cursor: pointer;
    transition: all 0.2s;
}

@media(max-width:768px) {

    .contact__submit {
        font-family: var(--font-base);
        margin-top: 11px;
        height: 65px;
        border-radius: 6px;
        font-size: 15px;
    }
}

.contact__submit:hover {
    background: var(--c-primary-600);
    border: 5px solid var(--c-primary);
}

.contact__submit:active {
    transform: none;
}

.contact__right {
    display: none;
    flex: 1 1 776px;
    background: #fff;
}

.contact__media {
    width: 100%;
    height: 100%;
    background: var(--img) center/cover no-repeat;
}

.contact--dark .contact__media {
    background: var(--img) left/cover no-repeat;
}

@media (min-width: 768px) {
    .contact__right {
        display: block;
    }

    .contact__left {
        padding: 36px clamp(16px, 3.8vw, 60px) 40px;
    }
}




/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    position: relative;
}

.breadcrumbs__inner {
    padding: 16px 16px 0;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: normal;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: wrap;
    row-gap: 4px;
}

.breadcrumbs__list::-webkit-scrollbar {
    display: none;
}

.breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    color: rgba(26, 37, 69, 0.4);
    font-size: clamp(12px, 1.6vw, 13px);
    line-height: 1;
    font-family: var(--font-base);
}

.breadcrumbs__item-svg {
    content: url('/assets/img/breadcrumb.svg');
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 8px;
}

.breadcrumbs__link {
    color: rgba(26, 37, 69, 0.4);
    text-decoration: none;
    transition: color .15s ease, opacity .15s ease;
}

.breadcrumbs__link:hover {
    color: var(--c-primary);
}

.breadcrumbs__current {
    color: rgba(26, 37, 69, 0.4);
    pointer-events: none;
}

/* ===== ABOUT  ===== */
.about {
    padding: 60px 0 0px;
}

.about__box {
    display: flex;
    align-items: stretch;
    gap: clamp(20px, 4vw, 55px);
}

.about__content {
    flex: 1 1 557px;
}

.about__title,
.contacts__title {
    margin: 0;
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.03em;
    font-size: clamp(48px, 6vw, 80px);
    color: rgba(26, 37, 69, 1);
}

.about__decor,
.contacts__decor {
    margin-bottom: 24px;
    width: 114px;
    height: 18px;
    background: url('/assets/img/underTitle.svg') center/contain no-repeat;
    display: block;
}

.contacts__decor {
    margin-bottom: 32px;
}

.about__lead p {
    margin: 0 0 32px;
    color: rgba(26, 37, 69, .6);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.about__subtitle {
    margin: 0 0 8px;
    color: rgba(26, 37, 69, .8);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
}

.about__list {
    margin: 0;
    padding: 0;
    list-style: disc;
    list-style-position: inside;
}

.about__item {
    color: rgba(26, 37, 69, .6);
    line-height: 1.6;
    font-size: 18px;
    letter-spacing: -0.03em;
    font-weight: 400;
}

.about__item::marker {
    content: "•\202F";
    color: rgba(26, 37, 69, .6);
}

@media(max-width:768px) {

    .about__title,
    .contacts__title {
        margin-bottom: 4px;
    }

    .about__decor,
    .contacts__decor {
        margin-bottom: 12px;
        width: 80px;
        height: 12px;
    }

    .contacts__decor {
        margin-bottom: 20px;
    }

    .about__lead p {
        margin: 0 0 16px;
        font-size: 14px;
    }

    .about__subtitle {
        font-size: 18px;
    }

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

.about__media {
    margin: 0px 0px 12px;
    border-radius: 12px;
    background: var(--img) center/cover no-repeat;
    min-height: clamp(236px, 36vw, 360px);
}

.about__media--desktop {
    flex: 1 1 748px;
    display: none;
}

.about__media--mobile {
    display: block;
}

@media(max-width:768px) {
    .about {
        padding: 12px 0 0px;
    }
}

@media (min-width: 768px) {
    .about__media {
        margin: 0px;
        border-radius: 16px;
        background: var(--img) center/cover no-repeat;
        min-height: clamp(236px, 36vw, 360px);
    }

    .about__media--desktop {
        display: block;
    }

    .about__media--mobile {
        display: none;
    }

    .about__content {
        gap: 12px;
    }
}

.page-usluga .breadcrumbs__inner {
    padding: 16px 0 0;
}

.hero-usluga {
    background: #fff;
    position: relative;
    min-height: 500px;
}

.hero-usluga.hero-usluga--left {
    display: flex;
    min-height: 600px;
}

.hero-usluga__img {
    position: absolute;
    right: 0;
    top: 0;
    width: 47.39%;
    min-height: 100%;
    background: var(--imgservhero) center/cover no-repeat;
}

.hero-usluga--left .hero-usluga__img {
    right: auto;
    left: 0;
    top: 0;
    width: 47.5%;
    background: var(--imgserv1) center/cover no-repeat;
}
.hero-usluga--right .hero-usluga__img {
    right: 0;
    left: auto;
    top: 0;
    width: 47.5%;
    background: var(--imgserv1) center/cover no-repeat;
}

.page-usluga-3section .hero-usluga--left .hero-usluga__img {
    right: auto;
    left: 0;
    top: 0;
    width: 50%;
    background: var(--imgserv1) center/cover no-repeat;
}
.page-usluga-3section .hero-usluga--right .hero-usluga__img {
    right: 0;
    left: auto;
    top: 0;
    width: 50%;
    background: var(--imgserv1) center/cover no-repeat;
}


.hero-usluga__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.hero-usluga__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.hero-usluga__list li::before {
    content: '';
    background: url('/assets/img/uslugi/pin.png') center/cover no-repeat;
    min-width: 40px;
    min-height: 40px;
    display: block;
}



.hero-usluga__content {
    width: 50.7%;
}
.page-usluga-3section .hero-usluga__content {
    width: 50% !important;
}
.hero-usluga--left .container {
    flex: 1;
    display: flex;
    min-height: 100%;
}

.hero-usluga--left .hero-usluga__content {
    display: flex;
    align-items: center;
    width: 52.5%;
    margin-left: auto;
    height: 100%;
}
.hero-usluga--right .hero-usluga__content {
    display: flex;
    align-items: center;
    width: 52.5%;
    margin-right: auto;
    height: 100%;
}

.hero-usluga__list-wrapper {
    padding-top:40px;
    padding-bottom:40px;
    padding-left: 48px;
    max-width: 623px;
}
.hero-usluga--right .hero-usluga__list-wrapper {
        padding-right: 48px;
    max-width: 623px;
}

.hero-usluga__title {
    margin: 64px 0 48px;
    color: #1A2545;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-family: var(--font-title);
}

.hero-usluga--left .hero-usluga__title,
.hero-usluga--right .hero-usluga__title {
    margin: 0 0 20px;
}

.hero-usluga__content .hero__btn {
    margin-bottom: 80px;
}

.uslugi-block {
    margin: 80px 0 120px;
}

.uslugi-block .hero-usluga__title {
    margin: 0 0 20px;
}

.uslugi-block .hero-usluga__list li::before {
    background: url('/assets/img/uslugi/pin-blue.png') center/cover no-repeat;
}

.uslugi-block-wrapper {
    display: flex;
    align-items: center;
    gap: clamp(16px, 4vw, 60px);
}

.uslugi-block-imgwrapper {
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    flex: 1 1 724px;
}

.uslugi-block-content {
    flex: 1 1 575px;
}

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

.map-block {
    margin: 120px 0;
}

.map-block-wrapper {
    display: flex;
    gap: clamp(20px, 4vw, 60px);
    align-items: center;
}

.map-block .hero-usluga__title {
    margin: 0 0 8px;
}

.map-block-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: rgba(26, 37, 69, 0.8);
    margin: 0 0 24px;
}

.map-block__list {
    display: flex;
    flex-wrap: wrap;
    gap: 17px 26px;
    margin-bottom: 40px;
}

.map-block__list li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: rgba(26, 37, 69, 0.8);
    padding: 1px 0;
}

.map-block__list li::before {
    display: block;
    content: '';
    background: url('/assets/img/uslugi/check.png') center/cover no-repeat;
    min-width: 26px;
    min-height: 26px;
    width: 26px;
    height: 26px;
}

.map-block-content {
    flex: 1 1 630px;
}

.map-block-mapwrapper {
    border-radius: 16px;
    overflow: hidden;
    height: 450px;
    flex: 1 1 672px;
}

.map-block-mapwrapper iframe {
    height: 100%;
    width: 100%;
}

@media(max-width:768px) {
    .hero-usluga.hero-usluga--left{
        min-height:400px;
    }
    .hero-usluga--right .hero-usluga__list-wrapper{
        padding-right:0px;
        max-width:100%;
    }
    .hero-usluga__list-wrapper{
        padding-top:0px;
          padding-bottom:0px;
    }
    .page-usluga-3section .hero-usluga--left .hero-usluga__img,
    .page-usluga-3section .hero-usluga--right .hero-usluga__img{
      
        width: 100%;
      
    }
  
    .map-block .hero__btn {
        display: none;
    }

    .map-block__list {
        flex-direction: column;
        gap: 4px;
        margin-bottom: 0px;
    }

    .map-block-content p {
        font-size: 14px;
        margin: 0 0 8px;
    }

    .map-block__list li::before {
        min-width: 24px;
        min-height: 24px;
        width: 24px;
        height: 24px;
    }

    .map-block__list li {
        padding: 2px 0;
        gap: 8px;
        font-size: 14px;
    }

    .map-block {
        margin: 56px 0;
    }

    .map-block .container {
        padding: 0px;
    }

    .map-block-wrapper {
        flex-direction: column;
    }

    .map-block-content {
        padding: 0 16px;
        flex: 0 0 100%;
    }

    .map-block-mapwrapper {
        border-radius: 12px;
        height: 260px;
        flex: 0 0 auto;
        width: 100%;
    }

    .uslugi-block {
        margin: 56px 0 56px;
    }

    .hero-usluga {
        min-height: auto;
    }

    .hero-usluga__content {
        width: 100%;
    }

    .hero-usluga__img {
        margin-top: 24px;
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        min-height: clamp(178px, calc(178px + (300 - 178) * ((100vw - 320px) / (768 - 320))), 300px);
    }

    .hero-usluga__title {
        margin: 24px 0 24px;
        font-size: 40px;
    }

    .hero-usluga__content .hero__btn {
        margin-bottom: 0px;
    }

    .hero-usluga.hero-usluga--left,
    .hero-usluga.hero-usluga--right{
        display: block;
        padding-bottom: 54px;
    }

    .hero-usluga--left .hero-usluga__img,
    .hero-usluga--right .hero-usluga__img{
        width: 100%;
        margin-top: 0px;
        margin-bottom: 16px;
        min-height: clamp(235px, calc(235px + (300 - 235) * ((100vw - 320px) / (768 - 320))), 300px);
    }

    .hero-usluga__list-wrapper {
        padding-left: 0px;
    }

    .hero-usluga--left .hero-usluga__content,
     .hero-usluga--right .hero-usluga__content{
        width: 100%;
    }
    .page-usluga-3section .hero-usluga__content {
    width: 100% !important;
}

    .hero-usluga__list {
        display: flex;
        flex-direction: column;
        gap: 0px;
        align-items: flex-start;
    }

    .hero-usluga__list li {
        align-items: flex-start;
        gap: 8px;
        font-size: 14px;
    }

    .hero-usluga__list li::before {
        min-width: 26px;
        min-height: 26px;
    }

    .hero-usluga--left .hero-usluga__title,
     .hero-usluga--right .hero-usluga__title{
        margin: 0 0 8px;
    }

    .uslugi-block .container {
        padding: 0px;
    }

    .uslugi-block-wrapper {
        flex-direction: column;
    }

    .uslugi-block-imgwrapper {
        border-radius: 12px;
        overflow: hidden;
        min-height: clamp(200px, calc(200px + (300 - 200) * ((100vw - 320px) / (768 - 320))), 300px);
        flex: 0 0 0;
        width: 100%;
    }

    .uslugi-block-content {
        padding: 0 16px;
        flex: 0 0 100%;
    }

    .uslugi-block .hero-usluga__title {
        margin-bottom: 8px;
    }

    .page-usluga .services {
        padding: 16px 0 56px;
    }
}

.services-page .services {
    padding: 60px 0 160px;
}

.services-page .services__inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.services-page .services__title {
    margin: 0 0 24px;
}

@media (max-width: 768px) {
    .services-page .services__title {
        margin: 0 0 12px;
    }
}

.services-page .service-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 16px;
    min-height: 64px;
    background: #fff;
    text-decoration: none;
    color: var(--c-text);
    transition: all .2s ease;
    box-shadow: 0 4px 20px 0 rgba(26, 37, 69, 0.1);
    border-radius: 16px;
}

.service-card__top {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.service-card__list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: rgba(26, 37, 69, .8);
}

.service-card__list li::before {
    content: '';
    background: url('/assets/img/uslugi/check-yellow.png') center/cover no-repeat;
    display: block;
    min-width: 26px;
    width: 26px;
    height: 26px;
    min-height: 26px;
    margin-top: 2px;
}

.service-card__dots {
    padding-left: 36px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: rgba(26, 37, 69, .8);
    margin-bottom: 24px;
    margin-top: 0px;
}

.service-card__button {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(26, 37, 69, 0.6);
    border: 1px solid rgba(26, 37, 69, 0.1);
    border-radius: 60px;
    width: 100%;
    padding: 11.5px 15px 12.5px 23px;
    transition: 0.2s all;
}

.service-card__button:hover {
    background-color: var(--c-primary);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 60px;
    width: 100%;
    padding: 11.5px 15px 12.5px 23px;
}

.service-card__button::after {
    content: '';
    width: 16px;
    height: 16px;
    background: url('/assets/img/uslugi/arrow.svg') center/cover no-repeat;
    display: block;
}

.service-card__button:hover::after {
    filter: brightness(0) invert(1);
}

@media (max-width:768px) {
    .service-card__bottom {
        width: fit-content;
    }

    .service-card__list,
    .service-card__dots,
    .service-card__button {
        display: none;
    }

    .service-card__top {
        width:100%;
        gap: 18px;
        margin-bottom: 0px;
    }
}

@media (min-width: 768px) {

    .services-page .service-card {
        align-items: flex-start;
        gap: 0px;
        flex-direction: column;
        padding: 26px 28px 30px;
    }

    .services-page .service-card__img {
        width: 54px;
        height: 54px;
        display: block;
        flex: 0 0 54px;
    }
}

@media (max-width: 768px) {
    .services-page .services {
        padding: 24px 0 80px;
    }

    .services-page .services__inner {
        gap: 32px;
    }
}

.services-page .service-card__title {
    font-size: 14px;
}

@media (min-width: 768px) {
    .services-page .service-card__title {
        font-size: 22px;
    }
}

.services-page .service-card__cta {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #E8EDFF;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    color: inherit;
}

.services-page .service-card__bottom {
    display: none;
    margin-top: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

@media (max-width: 768px) {
    .services-page .service-card__bottom {
        display: flex;
    }

    .services-page .service-card__title {
        min-width: 0;
    }

    .services-page .service-card__cta {
        flex: 0 0 auto;
        width: 32px;
        height: 32px;
        border-radius: 999px;
        background: rgba(232, 237, 255, 1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all .2s ease;
        color: inherit;
    }
}

.contacts {
    padding: 60px 0 104px;
}

.contacts__tabs {
    display: flex;
    gap: 16px;
    margin: 0 0 32px;
    flex-wrap: wrap;
    align-items: center;
}

.contacts__tab {
    border: 0px;
    appearance: none;
    outline: 4px solid #EBEBEB;
    background: #FFFFFF;
    color: #9CA9B6;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 4px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: .2s;
}

.contacts__tab:hover {
    filter: brightness(.98);
}

.contacts__tab.is-active {
    background: #347AF6;
    outline: 4px solid #498DFF;
    color: #fff;
}

.contacts__box {
    display: flex;
    gap: clamp(32px, 4vw, 35px);
}

.contacts__left {
    flex: 1 1 43%;
    min-width: 46%;
}

.contacts__right {
    flex: 1 1 57%;
}

.contacts__caption {
    margin: 0px 0 8px;
    color: rgba(26, 37, 69, .3);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
}

.contacts__group {
    margin-bottom: 24px;
}

.contacts__group:last-of-type {
    margin-bottom: 0px;
}

.contacts__row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(26, 37, 69, 1);
    font-size: 18px;
    line-height: 1.389;
    font-weight: 400;
}

.contacts__row--address {
    align-items: flex-start;
}

.contacts__row svg {
    width: 20px;
    height: 20px;
    color: rgba(53, 121, 246, 1);
    flex: 0 0 20px;
}

.contacts__email {
    color: rgba(26, 37, 69, 1);
    text-decoration: none;
}

.contacts__email:hover {
    color: rgba(53, 121, 246, 1);
}

.contacts__phones {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts__phones li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contacts__phones .contacts__ico {
    margin-top: 0;
}

.contacts__phone {
    color: rgba(26, 37, 69, 1);
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
}

.contacts__phone:hover {
    color: rgba(53, 121, 246, 1);
}

@media(max-width:768px) {
    .contacts__row{
        align-items:flex-start;
    }
    .contacts {
        padding: 12px 0 80px;
    }

    .contacts__tabs {
        gap: 11px;
        margin: 0 0 18px;
    }

    .contacts__tab {
        outline: 3px solid #EBEBEB;
        font-size: 17px;
        padding: 2px 8px;
        border-radius: 3px;
    }

    .contacts__tab.is-active {
        outline: 3px solid #498DFF;
    }

    .contacts__caption {
        font-size: 18px;
    }

    .contacts__group {
        margin-bottom: 12px;
    }

    .contacts__caption {
        font-size: 18px;
    }

    .contacts__phones {
        gap: 8px;
    }

    .contacts__phones li {
        align-items: flex-start;
    }

    .contacts__phone {
        font-size: 20px;
        line-height: 1.4;
    }

    .contacts__row svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        margin-top:2px;
    }
}

.contacts__map {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .04) inset;
}

.contacts__map-img,
.contacts__map-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: none;
}

.contacts__map-link {
    position: absolute;
    inset: 0;
    display: block;
}


@media (max-width: 960px) {
    .contacts__box {
        flex-direction: column;
    }

    .contacts__right {
        order: 2;
    }

    .contacts__left {
        order: 1;
    }

    .contacts__map {
        min-height: 280px;
    }
}

.af-message, .af-message-success,.jGrowl-closer.default, .af-message-error { 
    display:none !important; visibility:hidden !important; height:0 !important;
    margin:0 !important; padding:0 !important;
  }

  #feedback-modal[aria-hidden="true"] { display:none; }
  #feedback-modal[aria-hidden="false"] { display:block; }


  #feedback-modal .modal__overlay{
    position:fixed; inset:0; background:rgba(0,0,0,.45);
    display:flex; align-items:center; justify-content:center;
    z-index:100000;
  }
  #feedback-modal .modal__container{
    position:relative; width:100%; max-width:500px;
    margin:0 16px;
    max-height:calc(100vh - 40px); overflow-y:auto;
    background:#fff; border-radius:14px; padding:28px;
    box-shadow:0 10px 40px rgba(0,0,0,.15);
     font-family:var(--font-base) !important;
  }


  #feedback-modal .modal__title{ font-weight:800; font-size:28px; margin:0 40px 14px 0; }
  #feedback-modal .modal__close{
    position:absolute; top:18px; right:18px; width:32px; height:32px;
    background:transparent; border:0; cursor:pointer;
  }
  #feedback-modal .modal__close::before{ content:"✕"; font-size:22px; opacity:.6; }


  .feedback-form{ display:grid; gap:16px; }
  .form__row{ display:grid; gap:8px; }
  .form__label{ font-size:14px; color:#495057; }
  .form__input{ font-family:var(--font-base) !important;
    width:100%; height:48px; border:1px solid #E3E6EA; border-radius:8px; padding:0 14px;
    font-size:16px; background:#f9fafb; outline:none; transition:border-color .2s, background .2s;
  }
  .form__input:focus{ border-color:#498DFF; background:#fff; }
  .form__input::placeholder{
      font-family:var(--font-base) !important;
  }
  .form__submit{
   
    min-width:100px;
    height:48px; border-radius:10px; border:0; padding:0 22px; cursor:pointer;
    background:#347AF6; color:#fff; font-weight:600; font-size:16px;
  }
  .form__submit:disabled{ opacity:.55; cursor:not-allowed; }

  .form__check{ display:flex; gap:10px; align-items:flex-start; font-size:14px; color:#6c757d; }
  .form__check-input{ margin-top:3px; }
  .form__error{ display:none; font-size:13px; color:#d33; }
    .form__check a{
        text-decoration:underline;
        transition:0.2s all;
    }
     .form__check a:hover{
        color:#347AF6;
    }

  .form__input.is-invalid{ border-color:#d33; background:#fff; }



  .form__message{ display:none !important; }


  .feedback-state.is-hidden{ display:none; }
  .feedback-success{ text-align:center; padding:24px 8px; }
  .success__icon{ width:56px; height:56px; border-radius:50%; border:2px solid #347AF6; color:#347AF6; display:inline-flex; align-items:center; justify-content:center; font-size:28px; margin:10px 0 14px; }
  .success__title{ font-size:22px; font-weight:700; margin-bottom:6px; }
  .success__text{ color:#6c757d; margin-bottom:16px; }
   .contact__input.is-invalid,
  .contact__textarea.is-invalid{
    border-color:#d33 !important; 
  }

  /* скрыть системные сообщения AjaxForm на странице */
  .contact__form .form__message { display:none !important; }
  .contact__submit:disabled { opacity: .95; cursor: not-allowed; }
  #feedback-modal .contact__submit{
      margin-top:0px;
  }
  
  @media(max-width:768px){
      #feedback-modal .form__check span{
          font-size:12px;
      }
  }
  
  .cookie-consent-container {
      font-family: var(--font-base) !important;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%; /* Растягиваем контейнер на всю ширину */
    max-width: 850px; /* Максимальная ширина для центрирования */
    background: #1A2545;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
    border-radius: 10px; /* Увеличен радиус для более мягких углов */
    color: #fff;
    padding: 30px; /* Добавлено больше отступов */
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
    display:none;
}

.cookie-consent-title {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    font-size: 28px; /* Увеличен размер заголовка */
    text-align: center;
    margin-bottom: 20px; /* Увеличен отступ */
     color: #fff;
    font-weight: bold; /* Сделан жирным для акцента */
}
.cookie-consent-title img{
    display:block;
    width:30px;
    height:30px;
}

.cookie-consent-description {
    font-size: 16px; /* Немного увеличен размер текста */
    width: 100%; /* Растянуто на ширину контейнера */
    text-align: center; /* Текст по центру */
    margin-bottom: 20px; /* Увеличен отступ */
    line-height: 1.8; /* Увеличена высота строки для удобства чтения */
     color: rgba(255, 255, 255, 0.9);

}

.cookie-consent-description a {
    
    text-decoration: underline;
    font-weight: bold; /* Ссылка выделена жирным */
}

.cookie-consent-buttons {
    display: flex;
    gap: 20px; /* Увеличено расстояние между кнопками */
    justify-content: center;
    width: 100%;
}

.cookie-consent-button {
    flex: 1; /* Кнопки растянуты на равное расстояние */
    max-width: 300px; /* Увеличена ширина кнопок */
    padding: 20px 0; /* Увеличены отступы внутри кнопок */
    border: none;
    border-radius: 5px;
    font-size: 16px; /* Увеличен размер текста кнопок */
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    box-sizing: border-box;
}
.highlight-link{
    transition:0.2s all;
    color:#ffffff !important;
}
.highlight-link:hover{
    color:#498DFF !important;
}
.cookie-consent-button.accept-all {
    background: #347AF6;
}

.cookie-consent-button.accept-all:hover {
    background: var(--c-primary-600);
}

.cookie-consent-button.accept-essential {
    background: #63666D;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent-button.accept-essential:hover {
    background: #4d4f54 !important;
}
  