@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/SofiaProRegular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proxima-nova-medium-pu.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
  --font-family: "Proxima Nova Wide", sans-serif;
  --third-family: "Sofia Pro", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
    background: #f0f0f0;
}

.container {
    max-width: 1286px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* ─── HERO ─── */
.hero__wrapper {
    width: 100%;
}

/* ─── HEADER ─── */
.header {
    position: relative;
    z-index: 10;
    padding: 36px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 50px;
}

.navbar__lang {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    position: relative;
}

.navbar__lang--btn {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    text-align: right;
    color: #c0c0c0;
    transition: color 0.2s ease-in;
    position: relative;
}

.navbar__lang--btn::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f9f9f9;
    transition: width 0.2s ease-in;
}

.navbar__lang:hover .navbar__lang--btn {
    color: #fff;
}

.navbar__lang:hover .navbar__lang--btn::after {
    width: 100%;
}

.navbar__lang--list {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 80px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar__lang--list.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.navbar__lang--item {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #333;
    padding: 10px 16px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
    background: none;
    border: none;
}

.navbar__lang--item:hover {
    background: #f0f0f0;
}

.navbar__lang--item.active {
    color: #223360;
    font-weight: 600;
}

/* BURGER BUTTON */
.navbar__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 100;
}

.navbar__burger--line {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Главная — белые ссылки */
.navbar__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar__nav--link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    transition: color 0.2s ease-in;
    position: relative;
}

.navbar__nav--link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f9f9f9;
    transition: width 0.2s ease-in;
}

.navbar__nav--link:hover {
    color: #f9f9f9;
}

.navbar__nav--link:hover::after {
    width: 100%;
}

/* Фиксированные соцсети */
.social-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.social-fixed__link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 100%;
}

.social-fixed__link:hover {
    transform: scale(1.1);
}

.social-fixed__icon {
    width: 54px;
}

.navbar__down--icon {
    filter: brightness(1);
    padding-top: 3px;
}

/* ─── SIDEBAR MENU ─── */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100dvh;
    background: #fff;
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 40px 38px 50px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.sidebar.is-open {
    transform: translateX(0);
}

.sidebar__close {
    align-self: flex-end;
    width: 28px;
    height: 28px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    margin-bottom: 160px;
    flex-shrink: 0;
}

.sidebar__close span {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #151515;
}

.sidebar__close span:first-child {
    transform: rotate(45deg);
}

.sidebar__close span:last-child {
    transform: rotate(-45deg);
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 61px;
    flex: 1;
}

.sidebar__link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 21px;
    text-align: right;
    color: #151515;
    transition: color 0.2s ease-in, transform 0.2s ease-in;
    display: block;
}

.sidebar__link:hover {
    color: #223360;
    transform: translateX(-4px);
}

.sidebar__social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.sidebar__social--label {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 14px;
    color: #151515;
    text-align: right;
    text-transform: uppercase;
}

.sidebar__social--links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar__social--icon {
    transition: transform 0.2s ease-in;
}

.sidebar__social--icon:hover {
    transform: scale(1.1);
}

/* OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-overlay.is-visible {
    opacity: 1;
    pointer-events: all;
}

/* HERO */
.hero__bg {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 850px;
    display: flex;
    flex-direction: column;
}

.hero__bg--img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.60);
    z-index: 1;
}

/* Хлебные крошки */
.breadcrumb {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 30px;
}

.breadcrumb__link {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 13px;
    color: #a0a0a0;
    transition: color 0.2s ease;
}

.breadcrumb__link:hover {
    color: #fff;
}

.breadcrumb__sep {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 13px;
    color: #a0a0a0;
}

.breadcrumb__current {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 13px;
    color: #a0a0a0;
}

/* Hero content */
.hero {
    flex: 1;
    display: flex;
}

.hero__content {
    max-width: 565px;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 120px 0 139px;
}

.hero__title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 63px;
    line-height: 120%;
    color: #fff;
}

.hero__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.85);
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 44px;
    background: #fff;
    color: #223360;
    border-radius: 10px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    transition: background 0.2s ease, color 0.2s ease;
    margin-top: 16px;
    cursor: pointer;
}

.hero__btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Scroll */
.hero__scroll {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.hero__line {
    width: 1px;
    background: #d9d9d9;
    flex-shrink: 0;
}

.hero__scroll--btn {
    animation: bounce 1.7s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.advantages {
    padding: 100px 0;
    position: relative;
    z-index: 11;
}

.advantages__text {
    display: flex;
    justify-content: space-between;
    gap: 217px;
}

.advantages__text--left {
    display: flex;
    align-items: start;
    position: relative;
    z-index: 21;
}

.advantages__text--line {
    width: 2px;
    height: 58px;
    background: #223360;
    transform: rotate(-180deg);
}

.advantages__title {
    max-width: 280px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 60px;
    line-height: 117%;
    letter-spacing: 0.1em;
    color: #333;
    padding-left: 36px;
}

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

.advantages__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 19px;
    line-height: 158%;
    color: #151515;
}

.adv__bottom {
    padding: 150px 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.adv__bottom--text {
    position: relative;
}

.adv__bottom--img {
    position: absolute;
    top: -59px;
    left: 9%;
    z-index: 1;
}

.adv__bottom--icon {
    max-width: none;
    width: 1248px;
    height: 87px;
}

.adv__bottom--title {
    position: relative;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 70px;
    line-height: 114%;
    letter-spacing: 0.1em;
    color: #333;
    text-transform: uppercase;
    z-index: 2;
}

.adv__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.adv__list--item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 45px;
    border: 0.50px solid #b9b9b9;
    padding: 24px;
    transition: border-color 0.2s ease-in, box-shadow 0.2s ease-in;
    cursor: pointer;
}

.adv__list--item:hover {
    border-color: #223360;
    box-shadow: 0 4px 20px rgba(34, 51, 96, 0.08);
}

.adv__list--text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.adv__list--title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 29px;
    line-height: 83%;
    color: #151515;
}

.adv__list--desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 113%;
    color: #555;
}

.adv__list--img {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.adv__list--icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.strategy {
    position: relative;
    padding: 200px 0 250px;
    overflow: hidden;
}

.strategy__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.strategy__bg--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

.strategy__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.65);
}

.strategy__content {
    position: relative;
    z-index: 2;
    max-width: 790px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.strategy__title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 63px;
    line-height: 135%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
}

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

.strategy__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 135%;
    text-align: center;
    color: #fff;
}

.strategy__descs:last-child {
    padding-bottom: 60px;
}

.strategy__ellipse {
    position: absolute;
    bottom: -400px;
    left: 0;
    z-index: 1;
    pointer-events: none;
    max-width: 100%;
    overflow: hidden;
}

.strategy__ellipse--icon {
    max-width: 100%;
    height: auto;
}

.team {
    padding: 100px 0;
    position: relative;
    z-index: 11;
    overflow: visible;
}

.team__line {
    position: absolute;
    left: 0;
    width: 1px;
    background: #d9d9d9;
    pointer-events: none;
    z-index: 1; /* под синей */
}

.team__title--item {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 21;
}

.team__linear {
    position: relative;
    width: 2px;
    height: 58px;
    background: transparent; /* убираем фон */
    overflow: visible;
    z-index: 3;
}

.team__linear::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 58px;
    background: #223360; /* синяя поверх серой */
    z-index: 2;
}

.team__title {
    max-width: 280px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 60px;
    letter-spacing: 0.1em;
    color: #333;
    text-transform: uppercase;
    padding-left: 36px;
}

.team__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 40px;
    margin-left: -10px;
    width: calc(100% + 10px);
}

.team__card {
    border-radius: 20px;
    aspect-ratio: 1/1.47;
    overflow: hidden;
    position: relative;
    z-index: 22;
}

.team__card--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 14% center;
    transform: scaleX(-1);
    transition: transform 0.2s ease-in;
}

.team__card:hover .team__card--img {
    transform: scaleX(-1) scale(1.05);
}

.team__card--info {
    position: absolute;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    z-index: 23;
    transition: background 0.2s ease-in, transform 0.2s ease-in;
}

.team__card--name {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 26px;
    color: #151515;
    transition: color 0.2s ease-in;
}

.team__card--role {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 18px;
    line-height: 122%;
    color: #777;
    transition: color 0.2s ease-in;
}

html[lang="zh-cn"] .team__card--name {
    font-size: 22px;
    line-height: 125%;
}

html[lang="zh-cn"] .team__card--role {
    font-size: 16px;
}

.team__card:hover .team__card--info {
    background: #223360;
    transform: translateY(-4px);
}

.team__card:hover .team__card--name {
    color: #fff;
}

.team__card:hover .team__card--role {
    color: rgba(255, 255, 255, 0.7);
}

.footer {
    background: #223360;
    padding: 30px 0;
}

.footer__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 25px;
}

.footer__contact--items {
    display: flex;
    align-items: start;
    gap: 69px;
}

.footer__contact--text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__contact--label {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 22px;
    color: #a0a7b8;
}

.footer__contact--link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 26px;
    color: #fff;
    transition: transform 0.2s ease-in, color 0.2s ease-in;
}

.footer__contact--link:hover {
    transform: translateY(-2px);
    color: #d9d9d9;
}

.footer__btn {
    border: 1px solid #223360;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    color: #223360;
    padding: 16px 43px;
    transition: all 0.2s ease-in;
}

.footer__btn:hover {
    border: 1px solid #fff;
    background: #223360;
    color: #fff;
}

.footer__divider {
    position: absolute;
    width: 100vw;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    left: calc(-50vw + 643px);  /* выходит влево */
    right: calc(-50vw + 643px); /* выходит вправо */
}

.footer__inner {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-top: 45px;
}

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

.footer__logo {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 21px;
    color: #fff;
}

.footer__desc {
    max-width: 342px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #c7cfe1;
}

.footer__title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 21px;
    color: #fff;
}

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

.footer__link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #c7cfe1;
    transition: color 0.2s ease-in;
}

.footer__link:hover {
    color: #fff;
}

.footer__scroll-top img {
    transition: transform 0.2s ease-in;
}

.footer__scroll-top:hover img {
    transform: scale(1.1);
}

.footer__watermark {
    display: flex;
    justify-content: center;
    padding: 10px 0 15px;
    margin-left: calc(-50vw + 643px);
    margin-right: calc(-50vw + 643px);
}

.footer__watermark--icon {
    max-width: none;
    width: 1343px;
}

.footer__bottom {
    padding-top: 20px;
}

.footer__copy {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 15px;
    line-height: 227%;
    color: #a0a7b8;
}

.footer__copy a {
    font-weight: 500;
    color: #fff;
}

/* OVERLAY */
.modal__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
}

.modal__overlay.active {
    display: block;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2rem);
    max-width: 520px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    z-index: 1000;
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active {
    display: block;
}

.modal__head {
    background: #223360;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal__label {
    color: #8fa8d4;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 4px;
    font-family: var(--font-family);
}

.modal__title {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    font-family: var(--font-family);
}

.modal__close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-family: var(--font-family);
    font-size: 20px;
    color: #fff;
}

.modal__close img {
    width: 16px;
    height: 16px;
    filter: brightness(10);
}

.modal__form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

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

.modal__field--label {
    font-size: 13px;
    color: #666;
    font-family: var(--font-family);
}

.modal__input,
.modal__textarea {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
    transition: border 0.2s;
    font-family: var(--font-family);
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    color: #1a1a1a;
}

.modal__input:focus,
.modal__textarea:focus {
    border-color: #223360;
}

.modal__textarea {
    resize: vertical;
}

.modal__error {
    font-size: 12px;
    color: #e24b4a;
}

.modal__btn {
    background: #223360;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 4px;
    transition: opacity 0.2s;
    font-family: var(--font-family);
}

.modal__btn:hover {
    opacity: 0.9;
}

.modal__note {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin: 0;
    font-family: var(--font-family);
}

/* SUCCESS */
.contact-success {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    width: calc(100% - 2rem);
    max-width: 400px;
    overflow: hidden;
    z-index: 1000;
    box-sizing: border-box;
}

.contact-success.active {
    display: block;
}

.contact-success__head {
    background: #223360;
    padding: 1.25rem 1.5rem;
}

.contact-success__label {
    color: #8fa8d4;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 4px;
    font-family: var(--font-family);
}

.contact-success__heading {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    font-family: var(--font-family);
}

.contact-success__body {
    padding: 2.5rem 2rem;
    text-align: center;
}

.contact-success__icon {
    width: 64px;
    height: 64px;
    background: #eef2f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.contact-success__title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px;
    font-family: var(--font-family);
}

.contact-success__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.75rem;
    font-family: var(--font-family);
}

.contact-success__btn {
    background: #223360;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
    font-family: var(--font-family);
}

.contact-success__btn:hover {
    opacity: 0.9;
}

.modal__input:-webkit-autofill,
.modal__input:-webkit-autofill:hover,
.modal__input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    -webkit-text-fill-color: #1a1a1a;
    border-color: #e0e0e0;
    transition: background-color 5000s ease-in-out 0s;
}

/* Адаптив */
@media (min-width: 1150px) {
    .navbar__burger {
        display: none;
    }
    .navbar__nav {
        display: flex;
        align-items: center;
        gap: 40px;
    }
}

@media (max-width: 1149px) {
    .navbar__burger {
        display: flex;
    }
    .navbar__nav {
        display: none;
    }
    .social-fixed {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 36px;
    }
    .sidebar {
        width: 100%;
    }
    .team__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .team__card--info {
        width: auto;
        left: 8px;
        right: 8px;
    }
}

@media (max-width: 560px) {
    .modal__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    /* CONTAINER */
    .container {
        padding: 0 16px;
    }

    /* HEADER */
    .header {
        padding: 20px 0;
    }
    .navbar__logo--icon {
        width: 162px;
    }
    .navbar__actions {
        gap: 20px;
    }

    /* SIDEBAR */
    .sidebar {
        width: 300px;
        padding: 30px 24px 40px;
    }
    .sidebar__close {
        margin-bottom: 80px;
    }
    .sidebar__nav {
        gap: 40px;
    }
    .sidebar__link {
        font-size: 18px;
    }

    /* HERO */
    .hero__bg {
        max-height: 600px;
    }

    .hero__bg--img {
        object-position: right center;
        transform: scaleX(-1);
    }

    .hero__content {
        padding: 80px 0 60px;
        gap: 16px;
        align-items: center;
    }

    .hero__title {
        font-size: 28px;
        text-align: center;
    }

    .hero__desc {
        font-size: 14px;
        text-align: center;
    }

    .hero__btn--aos {
        width: 100%;
    }

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

    .hero__scroll {
        display: none;
    }

    /* BREADCRUMB */
    .breadcrumb {
        padding-top: 16px;
        font-size: 13px;
    }

    /* ADVANTAGES */
    .advantages {
        padding: 40px 0;
    }

    .advantages__text {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .advantages__text--left {
        align-items: center;
    }

    .advantages__text--line {
        display: none;
    }

    .advantages__title {
        font-size: 32px;
        padding-left: 0;
        text-align: center;
        max-width: 100%;
    }

    .advantages__text--right {
        max-width: 100%;
    }

    .advantages__desc {
        text-align: center;
        font-size: 14px;
    }

    .adv__bottom {
        padding: 40px 0 0;
        gap: 20px;
    }

    .adv__bottom--title {
        font-size: 32px;
        text-align: center;
    }

    .adv__bottom--img {
        display: none;
    }

    .adv__list {
        gap: 15px;
    }

    .adv__list--item {
        gap: 16px;
        padding: 16px;
    }

    .adv__list--title {
        font-size: 18px;
    }

    .adv__list--desc {
        font-size: 13px;
    }

    /* STRATEGY */
    .strategy {
        padding: 80px 0;
    }

    .strategy__title {
        font-size: 32px;
    }

    .strategy__desc {
        font-size: 15px;
    }

    .strategy__ellipse {
        display: none;
    }

    .strategy__descs:last-child {
        padding-bottom: 0;
    }

    /* TEAM */
    .team {
        padding: 40px 0;
    }

    .team__title {
        font-size: 36px;
        padding-left: 0;
        text-align: center;
    }

    .team__linear {
        display: none;
    }

    .team__title--item {
        justify-content: center;
    }

    .team__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-left: 0;
        width: 100%;
        padding-top: 24px;
    }

    .team__card--info {
        width: auto;
        left: 6px;
        right: 6px;
        padding: 12px 0;
    }

    .team__card--name {
        font-size: 16px;
        text-align: center;
    }

    .team__card--role {
        font-size: 12px;
        text-align: center;
    }

    .team__line {
        display: none;
    }

    /* FOOTER */
    .footer__top {
        flex-direction: column;
        gap: 24px;
    }

    .footer__contact--items {
        gap: 20px;
    }

    .footer__contact--label {
        font-size: 16px;
    }

    .footer__contact--link {
        font-size: 18px;
    }

    .footer__btn {
        border: 1px solid transparent;
        font-size: 16px;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

    .footer__inner {
        display: none;
    }

    .footer__watermark {
        display: none;
    }

    .footer__scroll-top {
        display: none;
    }

    .footer__divider {
        position: relative;
        left: -16px;
        right: -16px;
        width: calc(100% + 32px);
    }

    .footer__copy {
        max-width: 360px;
        font-size: 12px;
        line-height: 140%;
    }

    /* SOCIAL FIXED */
    .social-fixed {
        display: none;
    }
}

@media (min-width: 374px) and (max-width: 376px) {
    .hero__bg {
        max-height: 100dvh;
    }
}