/* ============================================
   ОБЩИЕ СТИЛИ
   ============================================ */

/* Подключение шрифта Museo Sans Cyrl */
@font-face {
    font-family: 'Museo Sans Cyrl';
    src: url('../fonts/MuseoSansCyrl-300.woff2') format('woff2'),
         url('../fonts/MuseoSansCyrl-300.woff') format('woff'),
         url('../fonts/MuseoSansCyrl-300.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Museo Sans Cyrl';
    src: url('../fonts/MuseoSansCyrl-500.woff2') format('woff2'),
         url('../fonts/MuseoSansCyrl-500.woff') format('woff'),
         url('../fonts/MuseoSansCyrl-500.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Museo Sans Cyrl';
    src: url('../fonts/MuseoSansCyrl-700.woff2') format('woff2'),
         url('../fonts/MuseoSansCyrl-700.woff') format('woff'),
         url('../fonts/MuseoSansCyrl-700.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Museo Sans Cyrl';
    src: url('../fonts/MuseoSansCyrl-900.woff2') format('woff2'),
         url('../fonts/MuseoSansCyrl-900.woff') format('woff'),
         url('../fonts/MuseoSansCyrl-900.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
}

/* CSS переменные */
:root {
    --color-primary: #024B7E;
    --color-secondary: #D19D5F;
    --color-gold: #D4AF37;
    --color-gold-dark: #C19B2E;
    --color-text: #000000;
    --color-text-light: #434548;
    --color-text-gray: #8E8E8E;
    --color-bg: #FFFFFF;
    --color-bg-light: #F5F5F5;
    --color-text-white: #FFFFFF;
    --color-border: #D9D9D9;
    --color-border-light: #E0E0E0;
}

/* Глобальные стили */
ul {
    padding: 0;
}

/* Базовые стили */
* {
    box-sizing: border-box;
    text-decoration: none;
}
body {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Museo Sans Cyrl', Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-bg);
}

.main {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Шапка */
.header {
    position: relative;
    display: block;
    width: 100%;
    height: 156px;
    background: var(--color-primary);
    z-index: 5;
}

.header__container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.header__logo {
    position: relative;
    display: block;
    width: 213px;
    height: 76px;
}

.header__logo-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__nav {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}

.header__nav-group {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}

.header__nav-link {
    position: relative;
    display: block;
    font-size: 22px;
    
    font-weight: 400;
    color: var(--color-text-white);
    background: transparent;
}

.header__menu-button {
    position: relative;
    display: none;
    width: 38px;
    height: 28px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.header__menu-icon {
    position: relative;
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-text-white);
    transition: all 0.3s ease;
}

.header__menu-icon::before,
.header__menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-text-white);
    transition: all 0.3s ease;
}

.header__menu-icon::before {
    top: -10px;
}

.header__menu-icon::after {
    bottom: -10px;
}

.header__menu-button.active .header__menu-icon {
    background: transparent;
}

.header__menu-button.active .header__menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.header__menu-button.active .header__menu-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Мобильное меню */
.header__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.header__mobile-menu.active {
    transform: translateX(0);
}

.header__mobile-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 20px 20px 30px;
    min-height: 53px;
}

.header__mobile-logo {
    width: 213px;
    height: 76px;
    object-fit: contain;
    margin-top: 18px;
}

.header__mobile-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 20px;
    padding-top: 40px;
}

.header__mobile-nav-link {
    position: relative;
    display: block;
    width: 100%;
    max-width: 320px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-white);
    text-decoration: none;
    text-align: center;
}

.header__mobile-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    height: 60px;
    padding: 15px 30px;
    background: var(--color-secondary);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text-white);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.header__mobile-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #E8B366;
}

.header__mobile-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header__mobile-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.3);
}

/* Хлебные крошки */
.breadcrumbs {
    position: relative;
    display: block;
    width: 100%;
    margin: 60px 0 30px 0;
}

.breadcrumbs__list {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.breadcrumbs__item {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-gray);
    background: transparent;
}

.breadcrumbs__item--current {
    color: var(--color-text-light);
}

.breadcrumbs__separator {
    position: relative;
    display: block;
    width: auto;
    height: auto;
    flex-shrink: 0;
}

/* Футер */
.footer {
    position: relative;
    display: block;
    width: 100%;
    height: 260px;
    background: var(--color-primary);
}

.footer__container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 80px;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 40px 40px;
}

.footer__logo {
    position: relative;
    display: block;
    width: 213px;
    height: 76px;
    flex-shrink: 0;
}

.footer__logo-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__left {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 80px;
    flex: 1;
}

.footer__logo-block {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
    flex: 0 0 50%;
}

.footer__socials {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.footer__social-link {
    position: relative;
    display: block;
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer__social-link:hover {
    transform: translateY(-2px);
}

.footer__social-link:active {
    transform: translateY(0);
}

.footer__social-icon {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer__right {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.footer__content {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 80px;
    flex: 1;
}

.footer__contacts {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__contacts-title {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: var(--color-text-white);
    background: transparent;
}

.footer__contacts-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.footer__contact-link {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    color: var(--color-text-white);
    background: transparent;
}

.footer__actions {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: auto;
}

.footer__actions-title {
    position: relative;
    display: block;
    width: auto;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: var(--color-text-white);
    background: transparent;
}

.footer__actions-buttons {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: auto;
}

.footer__button {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 50px;
    width: auto;
    height: 60px;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    min-width: fit-content;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__button--primary {
    background: var(--color-secondary);
    color: var(--color-text-white);
}

.footer__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #E8B366;
}

.footer__button--primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer__button--primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.3);
}

.footer__button--secondary {
    background: var(--color-bg);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

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

.footer__button--secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer__button--secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(1, 58, 95, 0.3);
}

/* ============================================
   СТРАНИЦА: ГЛАВНАЯ (index.html)
   ============================================ */

/* Hero секция */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 650px;
    background: var(--color-primary);
    overflow: visible;
    z-index: 10;
}

.hero__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 3;
    flex: 1;
}

.hero__typing {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 1000px;
    max-width: 100%;
    width: 100%;
    margin-top: -8%;
    height: auto;
    min-height: 320px;
}

.hero__typing-line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
}


.hero__typing-text {
    font-size: 66px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text-white);
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    min-width: 0;
}

.hero__typing-cursor {
    display: inline-block;
    width: 4px;
    height: 66px;
    background: var(--color-secondary);
    margin-left: 4px;
    opacity: 0;
    visibility: hidden;
    border: none;
    box-shadow: none;
    vertical-align: top;
    flex-shrink: 0;
}

.hero__typing-line.active .hero__typing-cursor {
    opacity: 1;
    visibility: visible;
    animation: blinkCursor 1s infinite;
}

@keyframes blinkCursor {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.hero__paths {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    z-index: 20;
    pointer-events: none;
}

.hero__path {
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: top;
    z-index: 2;
    pointer-events: none;
}

.hero__path--left {
    left: 0;
    max-width: 50%;
}

.hero__path--right {
    position: absolute;
    left: 50%;
    right: auto;
    top: 0;
    transform: translateX(calc(-50% + 680px));
    max-width: 35%;
    height: calc(650px + 156px);
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    z-index: 25;
    pointer-events: none;
}

.hero__path--mobile {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    top: auto;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: bottom center;
    z-index: 25;
    pointer-events: none;
    display: none;
}

.hero__icons {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 30;
    pointer-events: none;
}

.hero__icon {
    position: absolute;
    z-index: 3;
}

.hero__icon--airplane {
    left: 3.5%;
    top: 20%;
}

.hero__icon--airplane .hero__icon-box {
    transform: rotate(335deg);
    animation: bounceYAirplane 3.2s linear infinite;
    animation-delay: 0s;
}

.hero__icon--bonnet {
    left: 8%;
    bottom: 16%;
}

.hero__icon--bonnet .hero__icon-box {
    transform: rotate(350deg);
    animation: bounceYBonnet 4.2s linear infinite;
    animation-delay: 0.5s;
}

.hero__icon--eye {
    position: absolute;
    left: 50%;
    right: 50%;
    top: calc(156px + 487.5px);
    transform: translateX(calc(-50% + 680px)) translateY(-50%);
    z-index: 50;
}

.hero__icon--eye .hero__icon-box {
    transform: rotate(15deg);
    animation: bounceYEye 3.8s linear infinite;
    animation-delay: 1s;
}

.hero__icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

/* Анимация покачивания по оси Y с эффектом резинки для самолета */
@keyframes bounceYAirplane {
    0% {
        transform: rotate(335deg) translateY(0);
    }
    30% {
        transform: rotate(335deg) translateY(-26px);
    }
    42% {
        transform: rotate(335deg) translateY(-2.5px);
    }
    44% {
        transform: rotate(335deg) translateY(-0.6px);
    }
    46% {
        transform: rotate(335deg) translateY(0.6px);
    }
    48% {
        transform: rotate(335deg) translateY(2.5px);
    }
    60% {
        transform: rotate(335deg) translateY(18px);
    }
    75% {
        transform: rotate(335deg) translateY(1.5px);
    }
    85% {
        transform: rotate(335deg) translateY(-0.4px);
    }
    92% {
        transform: rotate(335deg) translateY(0.15px);
    }
    100% {
        transform: rotate(335deg) translateY(0);
    }
}

/* Анимация покачивания по оси Y с эффектом резинки для шапки */
@keyframes bounceYBonnet {
    0% {
        transform: rotate(350deg) translateY(0);
    }
    30% {
        transform: rotate(350deg) translateY(-18px);
    }
    42% {
        transform: rotate(350deg) translateY(-2px);
    }
    44% {
        transform: rotate(350deg) translateY(-0.5px);
    }
    46% {
        transform: rotate(350deg) translateY(0.5px);
    }
    48% {
        transform: rotate(350deg) translateY(2px);
    }
    60% {
        transform: rotate(350deg) translateY(12px);
    }
    75% {
        transform: rotate(350deg) translateY(1px);
    }
    85% {
        transform: rotate(350deg) translateY(-0.3px);
    }
    92% {
        transform: rotate(350deg) translateY(0.1px);
    }
    100% {
        transform: rotate(350deg) translateY(0);
    }
}

/* Анимация покачивания по оси Y с эффектом резинки для глаза */
@keyframes bounceYEye {
    0% {
        transform: rotate(15deg) translateY(0);
    }
    30% {
        transform: rotate(15deg) translateY(-21px);
    }
    42% {
        transform: rotate(15deg) translateY(-2.2px);
    }
    44% {
        transform: rotate(15deg) translateY(-0.55px);
    }
    46% {
        transform: rotate(15deg) translateY(0.55px);
    }
    48% {
        transform: rotate(15deg) translateY(2.2px);
    }
    60% {
        transform: rotate(15deg) translateY(14px);
    }
    75% {
        transform: rotate(15deg) translateY(1.2px);
    }
    85% {
        transform: rotate(15deg) translateY(-0.35px);
    }
    92% {
        transform: rotate(15deg) translateY(0.12px);
    }
    100% {
        transform: rotate(15deg) translateY(0);
    }
}

.hero__icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Секция Услуги на главной */
.services-home {
    position: relative;
    display: block;
    width: 100%;
    padding: 60px 0;
    background: var(--color-bg);
}

h2.services-home__title,
h2.news__title {
    margin: 0 0 30px 0;
}

.services-home__filters {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.services-home__filter {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 28px 52px;
    border: 1px solid var(--color-text);
    border-radius: 100px;
    background: var(--color-bg);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
}

.services-home__filter:first-child {
    background: var(--color-secondary);
    color: var(--color-text-white);
    border-color: var(--color-secondary);
}

/* При наведении на другие кнопки, первая становится обычной */
.services-home__filters:hover .services-home__filter:first-child:not(:hover) {
    background: var(--color-bg);
    color: var(--color-text);
    border-color: var(--color-text);
}

/* При наведении на другие кнопки (не первую), они становятся оранжевыми */
.services-home__filter:hover:not(:first-child) {
    background: var(--color-secondary);
    color: var(--color-text-white);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hover для первой кнопки, когда на неё наводят */
.services-home__filter:first-child:hover {
    background: #E8B366;
    border-color: #E8B366;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.services-home__filter:active {
    transform: translateY(0);
}

.services-home__filter:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 75, 126, 0.2);
}

.services-home__filter:first-child:focus {
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.3);
}

.services-home__content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 60px;
    width: 100%;
}

.services-home__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 60%;
    flex: 0 0 60%;
}

.services-home__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.services-home__number {
    position: relative;
    display: block;
    width: 100%;
    font-size: 72px;
    font-weight: 700;
    background: transparent;
}

.services-home__number--gold {
    color: var(--color-secondary);
}

.services-home__number--blue {
    color: var(--color-primary);
}

.services-home__description {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-light);
    background: transparent;
}

.services-home__graphic {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    width: 40%;
    flex: 0 0 40%;
    height: 400px;
}

.services-home__graphic-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.services-home__graphic-wrapper img {
    position: relative;
    left: 0;
    bottom: 0;
    transform: none;
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: left bottom;
}

.services-home__graphic-wrapper svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Секция Новости и события на главной */
.news {
    position: relative;
    display: block;
    width: 100%;
    background: var(--color-bg);
}

.news__cards {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    width: max-content;
    margin-bottom: 25px;
    will-change: transform;
}

.news__carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 25px auto;
}

.news__cards {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    width: max-content;
    will-change: transform;
    flex-wrap: nowrap;
}

.news__card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 750px;
    max-width: 800px;
    min-width: 750px;
    flex: 0 0 auto;
    min-height: 270px;
    flex-shrink: 0;
}

.news__image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    flex: 0 0 270px;
    height: 270px;
    background: var(--color-bg-light);
}

.news__image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.news__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0px 30px;
    flex: 1;
    min-height: 0;
    justify-content: space-between;
}

.news__headline {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    background: transparent;
    line-height: 1.3;
    overflow: hidden;
}

.news__description {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-light);
    background: transparent;
    line-height: 1.4;
    overflow: visible;
    flex: 1;
    text-overflow: clip;
    white-space: normal;
    word-wrap: break-word;
    display: block;
}

.news__button {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 12px 40px;
    border: none;
    border-radius: 100px;
    background: var(--color-secondary);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-white);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.news__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #E8B366;
}

.news__button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.news__button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.3);
}

.news__navigation {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.news__track {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    height: 2px;
    background: var(--color-border);
}

.news__indicator {
    position: absolute;
    left: 0;
    top: 50%;
    width: 60px;
    height: 2px;
    background: var(--color-text-gray);
    transform: translateY(-50%);
    transition: left 0.4s ease;
}

.news__arrows {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.news__arrow {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
}

.news__arrow svg {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
}

/* Секция Статистика на главной */
.stats {
    position: relative;
    display: block;
    width: 100%;
    padding: 40px 0;
    background: var(--color-primary);
}

h2.stats__title {
    margin: 0 auto 40px auto;
    max-width: 1120px;
    color: var(--color-text-white);
    text-align: left;
}

.stats__title-underline {
    position: relative;
    display: inline-block;
}

.stats__title-underline-image {
    position: absolute;
    left: 60px;
    bottom: -19px;
    width: 75%;
    height: auto;
    object-fit: contain;
}

.stats__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.stats__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.stats__number {
    position: relative;
    display: block;
    width: 100%;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-white);
    background: transparent;
}

.stats__description {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-white);
    background: transparent;
}

/* Секция Партнеры на главной */
.partners {
    position: relative;
    display: block;
    width: 100%;
    padding: 40px 0;
    background: var(--color-bg);
}

h2.partners__title {
    text-align: center;
    margin: 0;
}

.partners__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

.partners__item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 25px 0px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.partners__item.animate {
    opacity: 1;
    transform: translateY(0);
}

.partners__item:not(:nth-child(4n))::after {
    content: '';
    position: absolute;
    right: 0;
    top: 45px;
    bottom: 45px;
    width: 2px;
    background: var(--color-text);
}

.partners__logo-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
}

.partners__logo {
    position: relative;
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Секция Книга на главной */
.book {
    position: relative;
    display: block;
    width: 100%;
    padding: 40px 0;
    background: var(--color-bg);
}

.book__content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.book__text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    flex: 0 0 50%;
}

.book__title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 82%;
}

.book__title-line {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-primary);
    background: transparent;
}

.book__title-line:nth-child(-n+2) {
    padding-left: 55px;
}

.book__title-lines {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
    gap: 8px;
}

.book__title-line-1 {
    display: block;
    width: 30px;
    height: 16px;
    object-fit: contain;
    margin-left: 16px;
}

.book__title-line-2,
.book__title-line-3 {
    display: block;
    width: 30px;
    height: 20px;
    object-fit: contain;
}



.book__title-lines--right {
    margin-left: 10px;
}

.book__title-line-4,
.book__title-line-5,
.book__title-line-6 {
    display: block;
    width: 30px;
    height: 20px;
    object-fit: contain;
}

.book__title-line-6 {
    width: 20px;
    margin-top: 8px;
}

.book__description {
    position: relative;
    display: block;
    width: 67%;
    margin: 0 0 50px 0;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-light);
    background: transparent;
}

.book__button {
    position: relative;
    display: flex;
    flex-direction: row;
    align-self: flex-start;
    margin-left: 105px;
    padding: 23px 53px;
    border: none;
    border-radius: 100px;
    background: var(--color-secondary);
    color: var(--color-text-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.book__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #E8B366;
}

.book__button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.book__button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.3);
}

.book__visual {
    position: relative;
    display: block;
    width: 50%;
    flex: 0 0 50%;
    height: 100%;
    text-align: left;
}

.book__image {
    position: relative;
    display: block;
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    margin: 0;
}

/* Секция Команда на главной */
.team-home {
    position: relative;
    display: block;
    width: 100%;
    background: var(--color-bg);
}

h2.team-home__title {
    margin: 0;
}

.team-home__carousel {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    overflow: visible;
}

.team-home__carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding-top: 60px;
    padding-right: 80px;
}

.team-home__cards {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 100px;
    width: max-content;
    will-change: transform;
    flex-wrap: nowrap;
}

.team-home__card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    width: 750px;
    max-width: 780px;
    min-width: 750px;
    flex: 0 0 auto;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: visible;
    background: transparent;
}

.team-home__card:nth-child(odd)::before {
    content: '';
    position: absolute;
    bottom: -27px;
    right: -29px;
    width: 200px;
    height: 200px;
    background-image: url('../images/team-vector-1.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.team-home__card:nth-child(even)::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 75%;
    transform: translateX(-50%);
    width: 300px;
    height: 360px;
    background-image: url('../images/team-vector-2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.team-home__image-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 305px;
    height: 305px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--color-bg);
}

.team-home__image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 305px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.team-home__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1 1 auto;
    padding: 40px;
    background: var(--color-primary);
    border-radius: 20px;
    border: 1px solid var(--color-border-light);
    overflow: visible;
}

.team-home__badge {
    position: absolute;
    right: -73px;
    top: -39px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px 52px;
    background: var(--color-secondary);
    border-radius: 100px;
    font-size: 28px;
    font-weight: 400;
    color: var(--color-text-white);
    transform: rotate(16deg);
    z-index: 1;
}

.team-home__name {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    font-size: 28px;
    font-weight: 400;
    color: var(--color-text-white);
    background: transparent;
}

.team-home__details {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 74%;
    margin: 0;
}

.team-home__details li {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--color-text-white);
    background: transparent;
}

.team-home__navigation {
    position: relative;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.team-home__track {
    position: relative;
    display: block;
    width: 100%;
    max-width: 600px;
    height: 2px;
    background: var(--color-border);
}

.team-home__indicator {
    transition: left 0.3s ease;
    position: absolute;
    left: 0;
    top: 50%;
    width: 200px;
    height: 2px;
    background: var(--color-text-gray);
    transform: translateY(-50%);
}

.team-home__arrows {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.team-home__arrow {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
}

.team-home__arrow svg {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
}

/* Секция Что вас ждёт на главной */
.awaiting {
    position: relative;
    display: block;
    width: 100%;
    padding: 40px 0;
    background: var(--color-primary);
    overflow: hidden;
}

.awaiting__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--color-primary);
}

.awaiting__shapes {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.awaiting__vector {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scaleY(1.1);
    z-index: 1;
    pointer-events: none;
    width: auto;
    height: 100%;
    object-fit: cover;
}

.awaiting .container {
    position: relative;
    z-index: 2;
}

h2.awaiting__title {
    margin: 0 0 20px 0;
    text-align: center;
    color: var(--color-text-white);
}

.awaiting__content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.awaiting__image-left,
.awaiting__image-right {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.awaiting__image-left {
    left: 14px;
    top: 26%;
    transform: translateY(-50%);
}

.awaiting__image-right {
    right: 0;
    top: 58%;
    transform: translateY(-50%);
}

.awaiting__image {
    position: relative;
    display: block;
    object-fit: contain;
    object-position: center;
}

.awaiting__image-left .awaiting__image {
    width: 300px;
    height: 210px;
}

.awaiting__image-right .awaiting__image {
    width: 300px;
    height: 300px;
}

.awaiting__blocks {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    z-index: 2;
}

.awaiting__block {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 6px;
    background: var(--color-secondary);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.awaiting__block.animate {
    opacity: 1;
    transform: translateY(0);
}

.awaiting__block-number {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 400;
    color: var(--color-text-white);
}

.awaiting__block-text {
    position: relative;
    display: block;
    width: 75%;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--color-text-white);
    background: transparent;
}

/* Секция Отзывы на главной */
.reviews {
    position: relative;
    display: block;
    width: 100%;
    background: var(--color-bg);
}

.reviews__carousel {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 25px 0;
    overflow: visible;
}

.reviews__carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding-right: 80px;
}

.reviews__cards {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    width: max-content;
    will-change: transform;
    flex-wrap: nowrap;
}

.reviews__card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    width: 536px;
    max-width: 590px;
    min-width: 536px;
    flex: 0 0 auto;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: visible;
    background: transparent;
}

.reviews__video-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 215px;
    height: 300px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
}

.reviews__video-wrapper > img:not(.reviews__play-icon) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews__play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
    pointer-events: auto;
    padding: 0;
    margin: 0;
}

.reviews__play-icon {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.reviews__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    flex: 1 1 auto;
    background: var(--color-bg);
    overflow: visible;
}

.reviews__header {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.reviews__info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    flex: 1;
}

.reviews__name {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color: var(--color-text-light);
    background: transparent;
}

.reviews__details {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
}

.reviews__detail {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-light);
    background: transparent;
}

.reviews__country-badge {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--color-secondary);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    transform: translate(-56px, 18px) rotate(345deg);
}

.reviews__text {
    position: relative;
    display: block;
    width: 92%;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-light);
    background: transparent;
}

.reviews__navigation {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.reviews__track {
    position: relative;
    display: block;
    width: 100%;
    max-width: 600px;
    height: 2px;
    background: var(--color-border);
}

.reviews__indicator {
    position: absolute;
    left: 0;
    top: 50%;
    width: 200px;
    height: 2px;
    background: var(--color-text-gray);
    transform: translateY(-50%);
    transition: left 0.3s ease;
}

.reviews__arrows {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.reviews__arrow {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
}

.reviews__arrow svg {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
}

/* Секция Отзывы из соцсетей на главной */
.reviews-social {
    position: relative;
    display: block;
    width: 100%;
    background: var(--color-bg);
    padding: 40px 0;
}

.reviews-social__carousel {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 25px 0;
    overflow: visible;
}

.reviews-social__carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding-right: 80px;
}

.reviews-social__cards {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    width: max-content;
    will-change: transform;
    flex-wrap: nowrap;
}

.reviews-social__card {
    position: relative;
    display: block;
    width: 325px;
    height: 703px;
    flex: 0 0 auto;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-bg-light);
}

.reviews-social__image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-social__navigation {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.reviews-social__track {
    position: relative;
    display: block;
    width: 100%;
    max-width: 600px;
    height: 2px;
    background: var(--color-border);
}

.reviews-social__indicator {
    position: absolute;
    left: 0;
    top: 50%;
    width: 200px;
    height: 2px;
    background: var(--color-text-gray);
    transform: translateY(-50%);
    transition: left 0.3s ease;
}

.reviews-social__arrows {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.reviews-social__arrow {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
}

.reviews-social__arrow svg {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
}

/* Секция Стоимость услуг на главной */
.pricing {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 0 40px 0;
    background: var(--color-bg);
}

.pricing__content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pricing__form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 600px;
    flex: 1;
}

h2.pricing__title {
    margin: 0;
    line-height: 1.2;
}

.pricing__form-fields {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
}

.pricing__selects {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    flex-wrap: nowrap;
}

.pricing__field {
    position: relative;
    display: block;
    width: auto;
}

.pricing__select-wrapper {
    position: relative;
    display: inline-block;
}

.pricing__select {
    position: relative;
    display: block;
    width: auto;
    min-width: 200px;
    padding: 15px 40px;
    padding-right: 50px;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    border-color: var(--color-text);
    color: var(--color-text-light);
    cursor: pointer;
    appearance: none;
    background: var(--color-bg);
    font-size: 16px;
    font-weight: 300;
    font-family: 'Museo Sans Cyrl', Arial, sans-serif;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.pricing__select:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-light);
}

.pricing__select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.3s ease;
}

.pricing__select-wrapper {
    position: relative;
}

.pricing__select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.pricing__select:focus + .pricing__select-arrow,
.pricing__select-wrapper:has(.pricing__select:focus) .pricing__select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.pricing__select option {
    padding: 12px 20px;
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 16px;
    font-weight: 300;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.pricing__select option:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
}

.pricing__select option:checked {
    background: var(--color-primary);
    color: var(--color-text-white);
}

.pricing__select option[disabled] {
    color: var(--color-text-light);
    font-style: italic;
}

.pricing__button {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px 50px;
    border: none;
    border-radius: 100px;
    background: var(--color-secondary);
    font-size: 18px;
    font-weight: 400;
    font-family: 'Museo Sans Cyrl', Arial, sans-serif;
    color: var(--color-text-white);
    cursor: pointer;
    white-space: nowrap;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.pricing__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #E8B366;
}

.pricing__button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pricing__button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.3);
}

.pricing__result {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 400px;
    padding: 40px;
}

.pricing__result-label {
    position: relative;
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-light);
    background: transparent;
}

.pricing__result-value {
    position: relative;
    display: block;
    width: 100%;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    background: transparent;
}

/* Секция Наши подкасты на главной */
.podcasts {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 0 40px 0;
    background: var(--color-primary);
    overflow: hidden;
}

.podcasts__vector {
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%) scaleX(1.1);
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.podcasts__title {
    position: relative;
    display: block;
    width: 100%;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    color: var(--color-text-white);
    background: transparent;
    margin-bottom: 40px;
    z-index: 2;
}

.podcasts__carousel {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 20px;
    padding: 0 125px;
    z-index: 2;
    box-sizing: border-box;
}

.podcasts__arrow {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
    flex-shrink: 0;
}

.podcasts__arrow--prev {
    left: 0;
    top: 72%;
    transform: translateY(-50%);
}

.podcasts__arrow--next {
    right: 0;
    top: 39%;
    transform: translateY(-50%);
}

.podcasts__arrow-curve {
    position: relative;
    display: block;
    width: 200px;
    height: 100px;
}

.podcasts__arrow-curve svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.podcasts__arrow-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.podcasts__arrow-button svg {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
}

.podcasts__cards-container {
    position: relative;
    display: block;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.podcasts__card {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 19.6 / 9;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.podcasts__card-image {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.podcasts__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcasts__video-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    background: #000;
    border-radius: 60px;
    overflow: hidden;
}

.podcasts__video-container iframe,
.podcasts__video-container video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 60px;
}

.podcasts__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcasts__card-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(195deg, rgba(26, 26, 26, 0.3) 0%, rgba(45, 45, 45, 0.3) 100%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    pointer-events: none;
}

.podcasts__card-overlay .podcasts__play-button {
    pointer-events: auto;
}

.podcasts__card-title {
    position: relative;
    display: block;
    width: 100%;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--color-text-white);
    background: transparent;
    line-height: 1.2;
}

.podcasts__card-footer {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.podcasts__speaker {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-white);
    background: transparent;
}

.podcasts__play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 3;
    transition: opacity 0.3s;
}

.podcasts__play-button:hover {
    opacity: 0.8;
}

.podcasts__play-icon {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Модальное окно для видео */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal__content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    z-index: 10001;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: opacity 0.3s;
}

.video-modal__close:hover {
    opacity: 0.7;
}

.video-modal__player {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-modal__player iframe,
.video-modal__player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.podcasts__dots {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 20px;
    height: 20px;
}

.podcasts__dot {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.podcasts__dot--active {
    width: 16px;
    height: 16px;
    background: var(--color-bg);
    margin: -2px;
}

/* ============================================
   СТРАНИЦА: НАШИ ПОДХОДЫ (approaches.html)
   ============================================ */

/* Секция подходов */
.approaches {
    position: relative;
    display: block;
    width: 100%;
    padding: 60px 0;
}

.approaches__title {
    position: relative;
    display: block;
    margin: 0 0 40px 0;
    width: 100%;
    max-width: 665px;
    font-size: 48px;
    font-weight: 400;
    color: var(--color-primary);
    background: transparent;
}

.approaches__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

/* Карточка подхода */
.approach-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    min-height: 264px;
    background: var(--color-bg-light);
    border-radius: 24px;
}

.approach-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.approach-card__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.approach-card__icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.approach-card__title {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-light);
}

.approach-card__description {
    flex: 1;
    min-height: 144px;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-light);
}

/* ============================================
   СТРАНИЦА: ВАКАНСИИ (vacancies.html)
   ============================================ */

/* Секция вакансий */
.vacancies {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 108px;
}

.vacancies__content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.vacancies__text-block {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 880px;
    flex-shrink: 0;
}

.news__title,
.partners__title,
.stats__title,
.vacancies__title,
.team__title,
.team-home__title,
.structure__title,
.strategy__title,
.services__title,
.services-home__title,
.awaiting__title,
.reviews__title,
.pricing__title {
    position: relative;
    display: block;
    width: 100%;
    font-size: 48px;
    font-weight: 400;
    text-align: left;
    color: var(--color-primary);
    background: transparent;
}

h1.vacancies__title {
    margin: 20px 0 20px 0;
}

.vacancies__description {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    color: var(--color-text-light);
    background: transparent;
}

.vacancies__button {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    gap: 10px;
    padding: 40px 70px;
    width: auto;
    height: 80px;
    border: none;
    background: var(--color-secondary);
    border-radius: 100px;
    font-size: 18px;
    
    font-weight: 400;
    color: var(--color-text-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vacancies__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #E8B366;
}

.vacancies__button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vacancies__button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.3);
}

.vacancies__image-wrapper {
    position: relative;
    display: block;
    width: 420px;
    height: 420px;
    flex-shrink: 0;
    border-radius: 32px;
    overflow: hidden;
}

.vacancies__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================================
   СТРАНИЦА: ЛИЧНЫЙ КАБИНЕТ (account.html)
   ============================================ */

/* Приветствие */
.greeting {
    position: relative;
    display: block;
    width: 100%;
}

.greeting__content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.greeting__avatar {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.greeting__avatar-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.greeting__title {
    position: relative;
    display: block;
    font-size: 32px;
    font-weight: 400;
    color: var(--color-primary);
    background: transparent;
}

/* Форма входа */
.login {
    position: relative;
    display: block;
    width: 100%;
    padding: 50px 0;
    margin-bottom: 70px;
}

.login__wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.login__form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 500px;
    padding: 50px;
    background: var(--color-bg-light);
    border-radius: 32px;
}

.login__title {
    position: relative;
    display: block;
    margin: 0;
    font-size: 32px;
    font-weight: 400;
    color: var(--color-primary);
    background: transparent;
    text-align: center;
}

.login__fields {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.login__input {
    position: relative;
    display: block;
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--color-border-light);
    border-radius: 100px;
    background: var(--color-bg);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    outline: none;
}

.login__input::placeholder {
    color: var(--color-text);
}

.login__input:focus {
    border-color: var(--color-secondary);
}

.login__button {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 30px;
    border: none;
    background: var(--color-secondary);
    border-radius: 100px;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.login__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #E8B366;
}

.login__button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.login__button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.3);
}

/* Секция поступления */
.admission {
    position: relative;
    display: block;
    width: 100%;
    padding: 60px 0;
}

.admission__title,
.webinars__title,
.settings__title {
    position: relative;
    display: block;
    margin: 0 0 30px 0;
    font-size: 32px;
    font-weight: 400;
    color: var(--color-text-light);
    background: transparent;
}

.admission__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.timeline__item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.timeline__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.timeline__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.timeline__icon-small {
    width: 24px;
    height: 24px;
    margin-left: 60px;
}

.timeline__label {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 50px;
    font-weight: 400;
    color: var(--color-text-light);
    background: transparent;
}

.timeline__label--small {
    font-size: 16px;
    line-height: 24px;
}

.timeline__line {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    border-top: 1px solid var(--color-border);
}

/* Секция вебинаров */
.webinars {
    position: relative;
    display: block;
    width: 100%;
}

.webinars__list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.webinar-card {
    position: relative;
    display: block;
    width: 420px;
    max-width: 420px;
}

.webinar-card__image-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 247px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.webinar-card__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.webinar-card__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.webinar-card__play-button {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 3;
}

.webinar-card__play-icon {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.webinar-card__title {
    position: relative;
    display: block;
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color: var(--color-text-light);
    background: transparent;
}

/* Разделительная линия */
.divider {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1400px;
    height: 0;
    border-top: 1px solid var(--color-border);
    margin: 60px auto;
}

/* Секция настроек */
.settings {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 0 40px 0;
}

.settings__content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.settings__avatar-section {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.settings__avatar {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.settings__avatar-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.settings__avatar-button {
    position: relative;
    display: block;
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    font-size: 16px;
    
    font-weight: 400;
    color: var(--color-primary);
    cursor: pointer;
    text-decoration: underline;
}

.settings__save-button {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    width: auto;
    height: auto;
    border: none;
    background: var(--color-secondary);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings__save-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #E8B366;
}

.settings__save-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.settings__save-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.3);
    cursor: pointer;
}

/* Кнопка чата */
.chat-button {
    position: fixed;
    right: 60px;
    bottom: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.chat-button:hover {
    transform: translateY(-2px) scale(1.05);
}

.chat-button:active {
    transform: translateY(0) scale(1);
}

.chat-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.3);
}

.chat-button__icon {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

/* Модальное окно чата */
.chat-modal {
    position: fixed;
    right: 60px;
    bottom: 62px;
    width: 450px;
    height: 581px;
    display: none;
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    z-index: 1001;
    overflow: visible;
}


.chat-modal.active {
    display: flex;
}

.chat-modal__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    border-radius: 0;
    overflow: visible;
}

/* Заголовок чата */
.chat-modal__header {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 20px 20px 24px;
    background: var(--color-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.chat-modal__header-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-modal__title {
    margin: 0 0 4px 0;
    font-size: 24px;
    font-weight: 400;
    color: var(--color-text-white);
}

.chat-modal__subtitle {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-white);
}

.chat-modal__close {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--color-text-white);
    padding: 0;
    margin-top: 4px;
    transition: opacity 0.2s ease;
    z-index: 10;
    flex-shrink: 0;
    align-self: flex-start;
}

.chat-modal__close:hover {
    opacity: 0.7;
}

.chat-modal__close svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

/* Область сообщений */
.chat-modal__messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    background: var(--color-bg);
    overflow-y: auto;
    overflow-x: hidden;
    border-left: 1px solid var(--color-border-light);
    border-right: 1px solid var(--color-border-light);
}

/* Сообщение */
.chat-message {
    display: flex;
    gap: 12px;
    width: 100%;
}

.chat-message--incoming {
    justify-content: flex-end;
    align-items: flex-end;
}

.chat-message--outgoing {
    justify-content: flex-start;
    align-items: flex-start;
}

.chat-message__avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 4px;
}

.chat-message__avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-message__content {
    display: flex;
    flex-direction: column;
    max-width: 70%;
}

.chat-message--incoming .chat-message__content {
    align-items: flex-end;
}

.chat-message--outgoing .chat-message__content {
    align-items: flex-start;
}

.chat-message__bubble {
    padding: 12px 16px;
    border-radius: 16px;
    background: var(--color-bg-light);
}

.chat-message__bubble--incoming {
    border-bottom-right-radius: 4px;
}

.chat-message__bubble--outgoing {
    border-bottom-left-radius: 4px;
}

.chat-message__text {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-text);
}

.chat-message__time {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-text-gray);
}

/* Область ввода */
.chat-modal__input-area {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: var(--color-bg-light);

 
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.chat-modal__attach-button {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
}

.chat-modal__attach-button:hover {
    opacity: 0.7;
}

.chat-modal__attach-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.chat-modal__input {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: var(--color-bg);
    border-radius: 20px;
    font-family: 'Museo Sans Cyrl', Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-text);
    outline: none;
}

.chat-modal__input::placeholder {
    color: var(--color-text-gray);
}

.chat-modal__send-button {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #D19D5F;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}

.chat-modal__send-button:hover {
    background: #C18D4F;
}

.chat-modal__send-icon {
    width: 50px;
    height: 50px;
    display: block;
}

/* ============================================
   СТРАНИЦА: СТРАТЕГИЯ КОМПАНИИ (strategy.html)
   ============================================ */

/* Секция стратегии */
.strategy {
    position: relative;
    display: block;
    width: 100%;
}


.strategy__description {
    position: relative;
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    color: var(--color-text-light);
}

.strategy__description-brand {
    font-weight: 400;
}

/* Секция преимуществ */
.strategy-benefits {
    position: relative;
    display: block;
    width: 100%;
    padding: 40px 0;
}

/* Общие стили для h2 заголовков на странице strategy */
.strategy-benefits__title,
.strategy-difference__title,
.strategy-features__title,
.strategy-values__title {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 32px;
    font-weight: 400;
    text-align: left;
    color: var(--color-primary);
}

.strategy-benefits__title {
    margin: 0 0 30px 0;
}

.strategy-difference__title {
    color: var(--color-text-white);
}

.strategy-benefits__list {
    position: relative;
    display: block;
    width: 100%;
}

.strategy-benefits__item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.strategy-benefits__icon {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.strategy-benefits__icon-image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.strategy-benefits__text,
.strategy-difference__text,
.strategy-values__text {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
}

.strategy-benefits__text,
.strategy-values__text {
    color: var(--color-text-light);
}

.strategy-difference__text {
    font-weight: 400;
    color: var(--color-text-white);
    margin: 0 0 20px 0;
}

.strategy-difference__text:last-child {
    margin-bottom: 0;
}

.strategy-values__text {
    margin: 0;
}

.strategy-benefits__conclusion {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    color: var(--color-text-light);
}

/* Секция отличий */
.strategy-difference {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    background: var(--color-primary);
    overflow: hidden;
}

.strategy-difference::before {
    content: '';
    position: absolute;
    right: -105px;
    top: 150px;
    width: 100%;
    height: 100%;
    background-image: url('../images/strategy-difference-vector.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.strategy-difference .container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    min-height: 600px;
    z-index: 1;
}

.strategy-difference__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    z-index: 1;
}

.strategy-difference__image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    min-width: 500px;
    flex-shrink: 0;
    z-index: 1;
}

.strategy-difference__image-wrapper .students-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 34px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Секция ключевых отличий */
.strategy-features {
    position: relative;
    display: block;
    width: 100%;
    padding: 40px 0;
}


.strategy-features__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    width: 100%;
    gap: 20px;
    align-items: stretch;
}

.strategy-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 25px;
    width: 100%;
    height: 100%;
    background: var(--color-bg-light);
    border-radius: 24px;
}

.strategy-feature-card__header {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    gap: 15px;
}

.strategy-feature-card__icon {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.strategy-feature-card__icon img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.strategy-feature-card__title {
    position: relative;
    display: block;
    width: 325px;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-light);
    background: transparent;
}

.strategy-feature-card__description {
    position: relative;
    display: block;
    width: 100%;
    flex: 1;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-light);
    background: transparent;
}

/* Секция ценностей */
.strategy-values {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 90px;
    background: var(--color-bg);
}

.strategy-values .container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.strategy-values__image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    min-width: 400px;
    flex-shrink: 0;
}

.strategy-values__image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.strategy-values__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.strategy-values__top {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    margin: 0 0 30px 0;
}

.strategy-values__divider {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background: #E0E0E0;
    margin: 0 0 30px 0;
}

.strategy-values__block {
    position: relative;
    display: block;
}

.strategy-values__block--full {
    flex: 1 1 100%;
    width: 100%;
}



.strategy-values__list {
    position: relative;
    display: block;
    width: 100%;
}

.strategy-values__item {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 0;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    color: var(--color-text-light);
}

.strategy-values__item::before {
    content: "—";
    margin-right: 8px;
}

.strategy-values__item:last-child {
    margin-bottom: 0;
}

.strategy-values__item strong {
    font-weight: 500;
    font-size: 16px;
    color: var(--color-text-light);
}

/* ============================================
   АДАПТИВНОСТЬ - MOBILE FIRST
   ============================================ */

/* Адаптивность для Hero секции */


/* ============================================
   СТРАНИЦА: НАША КОМАНДА (team.html)
   ============================================ */

/* Секция команды */
.team {
    position: relative;
    display: block;
    width: 100%;
}


/* Секция статистики команды */
.team-stats {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 90px;
}

.team-stats .container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

.team-stats__background {
    position: relative;
    display: block;
    width: 100%;
}

.team-stats__background-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 32px;
}

.team-stats__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.stat-card {
    position: relative;
    display: block;
    width: 100%;
}

.stat-card__number {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 5px 0;
    font-size: 48px;
    font-weight: 400;
    text-align: left;
    color: var(--color-primary);
}

.stat-card__text {
    position: relative;
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 300;
    text-align: left;
    color: var(--color-text-light);
}

/* ============================================
   СТРАНИЦА: СТРУКТУРА КОМПАНИИ (structure.html)
   ============================================ */

/* Секция структуры */
.structure {
    position: relative;
    display: block;
    width: 100%;
}


/* Секция организационной диаграммы */
.structure-org {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 0 80px 0;
}

.structure-org__diagram {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* CEO блок */
.structure-org__ceo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--color-primary);
    border-radius: 24px;
    max-width: 387px;
    height: 100px;
    z-index: 1;
}

.structure-org__ceo-avatar {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.structure-org__ceo-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.structure-org__ceo-info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.structure-org__ceo-name {
    position: relative;
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-white);
}

.structure-org__ceo-title {
    position: relative;
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-white);
}

/* Соединительные линии */
.structure-org__connectors {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}

.structure-org__connector-vertical {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background: var(--color-border);
}

.structure-org__connector-horizontal {
    position: absolute;
    left: calc((100% - 4 * 20px) / 5 / 2);
    right: calc((100% - 4 * 20px) / 5 / 2);
    top: 30px;
    height: 2px;
    background: var(--color-border);
}

/* Департаменты */
.structure-org__departments {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}

.structure-org__lines {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    display: none;
}

.structure-org__departments-list {
    position: relative;
    display: contents;
}

.structure-org__departments-list::before,
.structure-org__departments-list::after {
    display: none;
}

.structure-org__department {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: var(--color-bg-light);
    border-radius: 20px;
    text-align: center;
}

.structure-org__department::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: var(--color-border);
}

.structure-org__department-icon {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.structure-org__department-icon img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.structure-org__department-title {
    position: relative;
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-primary);
    text-align: left;
}

.structure-org__department-description {
    position: relative;
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-light);
    text-align: left;
}

/* Секция профиля Бурхана Адиханова */
.structure-profile {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 0 90px 0;
}

.structure-profile__wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.structure-profile__content {
    position: relative;
    display: block;
    overflow: hidden;
}

.structure-profile__title {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 400;
    text-align: left;
    color: var(--color-primary);
}

.structure-profile__subtitle {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 25px 0;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: var(--color-text-light);
}

.structure-profile__text {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 42px;
}

.structure-profile__text--full {
    position: relative;
    display: block;
    width: 100%;
    margin-left: 0;
    padding: 0;
    clear: both;
}

.structure-profile__text p {
    position: relative;
    display: block;
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    color: var(--color-text-light);
}

.structure-profile__text p:last-child {
    margin-bottom: 0;
}

.structure-profile__image-wrapper {
    position: relative;
    float: right;
    display: block;
    width: 400px;
    margin-left: 60px;
}

.structure-profile__image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}


/* ============================================
   СТРАНИЦА: УСЛУГИ (services.html)
   ============================================ */

/* Секция услуг */
.services {
    position: relative;
    display: block;
    width: 100%;
}

/* Секция "Сопровождение «Магистратура»" */
.services-masters {
    position: relative;
    display: block;
    width: 100%;
}

/* Общие стили для h2 заголовков на странице services */
.services-masters__title,
.services-benefits__title,
.services-phd__title,
.services-help__title {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 32px;
    font-weight: 400;
    text-align: left;
    color: var(--color-primary);
}

.services-masters__blocks {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    gap: 20px;
}

.services-masters__block {
    position: relative;
    display: block;
    flex: 1 1 50%;
    padding: 30px;
    background: var(--color-primary);
    border-radius: 16px;
}

.services-masters__block-title {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    color: var(--color-text-white);
}

.services-masters__list {
    position: relative;
    display: block;
    width: 100%;
}

.services-masters__item {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 0 15px 0;
    padding: 0 0 0 30px;
}

.services-masters__item:last-child {
    margin-bottom: 0;
}

.services-masters__checkmark {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/icon-check-blue.svg") no-repeat center;
    background-size: contain;
}

.services-masters__text,
.benefit-card__text,
.services-features__text,
.services-phd__text,
.services-help__text,
.services-options__text,
.step-item__text {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
}

.services-masters__text,
.services-phd__text {
    color: var(--color-text-white);
}

.benefit-card__text,
.services-help__text,
.services-options__text,
.step-item__text,
.services-features__text {
    color: var(--color-text-light);
}

/* Секция "Что вы получите:" */
.services-benefits {
    position: relative;
    display: block;
    width: 100%;
    padding: 60px 0;
}

.services-benefits__cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    align-items: stretch;
}

.benefit-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 30px;
    background: var(--color-bg-light);
    border-radius: 24px;
    height: 100%;
}

.benefit-card__header {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin: 0 0 20px 0;
}

.number-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    color: var(--color-text-white);
    background: var(--color-secondary);
}

.services-options__item .number-badge {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.services-options__item:first-child .number-badge {
    background: var(--color-secondary);
}

.services-options__item:last-child .number-badge {
    background: var(--color-primary);
}

.benefit-card__title {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: var(--color-text);
}

.benefit-card__list {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
}

.benefit-card__item {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 0 12px 0;
    padding: 0 0 0 30px;
}

.benefit-card__item:last-child {
    margin-bottom: 0;
}

.benefit-card__checkmark {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}


.benefit-card__result {
    position: relative;
    display: block;
    width: 100%;
    height: 146px;
    padding: 20px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    color: var(--color-text-white);
    background: var(--color-secondary);
    margin-top: auto;
}

.benefit-card__result strong {
    display: block;
    font-weight: 400;
    margin-bottom: 8px;
}

/* Секция с дополнительными возможностями */
.services-features--masters,
.services-features--phd {
    position: relative;
    display: block;
    width: 100%;
}

.services-features--phd {
    margin: 60px 0 90px 0;
}

.services-features__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.services-features__grid:last-child {
    margin-bottom: 0;
}

.services-features__column {
    position: relative;
    display: block;
    width: 100%;
}

.services-features__title {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 400;
    text-align: left;
    color: var(--color-primary);
}

.services-features__list {
    position: relative;
    display: block;
    width: 100%;
}

.services-features__item {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 0 12px 0;
    padding: 0 0 0 30px;
}

.services-features__item:last-child {
    margin-bottom: 0;
}

.services-features__checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}


/* Секция "Докторантура PhD" */
.services-phd {
    position: relative;
    display: block;
    width: 100%;
    padding: 90px 0 60px 0;
}

.services-phd__blocks {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    gap: 20px;
}

.services-phd__block {
    position: relative;
    display: block;
    flex: 1 1 50%;
    padding: 30px;
    background: var(--color-primary);
    border-radius: 32px;
}

.services-phd__block-title {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 400;
    text-align: left;
    color: var(--color-text-white);
}

.services-phd__list {
    position: relative;
    display: block;
    width: 100%;
}

.services-phd__item {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 0 15px 0;
    padding: 0 0 0 30px;
}

.services-phd__item:last-child {
    margin-bottom: 0;
}

.services-phd__checkmark {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}


/* Секция "Adikhanov Education помогает легко поступить" */
.services-help {
    position: relative;
    display: block;
    width: 100%;
}

.services-help .container {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 40px;
    background: var(--color-bg-light);
    border-radius: 24px;
}

.services-help__list {
    position: relative;
    display: block;
    width: 100%;
}

.services-help__item {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 0 15px 0;
    padding: 0 0 0 30px;
}

.services-help__item:last-child {
    margin-bottom: 0;
}

.services-help__checkmark {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}


/* Секция "Варианты услуг:" */
.services-options {
    position: relative;
    display: block;
    width: 100%;
    padding: 40px 0;
}

.services-options__title {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 25px 0;
    font-size: 24px;
    font-weight: 400;
    text-align: left;
    color: var(--color-primary);
}

.services-options__list {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
}

.services-options__item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1 1 50%;
    padding: 0 0 0 70px;
    gap: 15 px;
}



/* Секция "Этапы сопровождения:" */
.services-steps {
    position: relative;
    display: block;
    width: 100%;
}

.services-steps .container {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 40px;
    background: var(--color-bg-light);
    border-radius: 24px;
}

.services-steps__title {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 30px 0;
    font-size: 24px;
    font-weight: 400;
    text-align: left;
    color: var(--color-primary);
}

.services-steps__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.step-item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 0 0 0 70px;
    gap: 15px;
}

.step-item .number-badge {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.step-item:nth-child(odd) .number-badge {
    background: var(--color-secondary);
}

.step-item:nth-child(even) .number-badge {
    background: var(--color-primary);
}

/* Адаптивные стили для hero__typing */
@media (max-width: 1200px) {
    .hero__typing-text {
        font-size: 56px;
    }
    
    .hero__typing-cursor {
        height: 56px;
    }
}

@media (max-width: 768px) {
    .hero__typing {
        max-width: 90%;
        width: 90%;
        min-width: auto;
    }

    .hero__typing-line {
        min-height: 50px;
        display: block;
        text-align: center;
    }

    .hero__typing-line:nth-child(2) {
        margin-bottom: 20px;
    }
    
    .hero__typing-text {
        font-size: 36px;
        white-space: normal;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        display: inline;
    }
    
    .hero__typing-cursor {
        height: 36px;
        display: inline-block;
        vertical-align: middle;
        margin-left: 2px;
        margin-top: -1em;
    }
}

@media (max-width: 650px) {
    .hero__typing {
        max-width: 85%;
        width: 85%;
    }

    .hero__typing-line {
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        text-align: center;
    }

    .hero__typing-text {
        white-space: normal;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        text-align: center;
        display: inline;
        line-height: 1.3;
        max-width: calc(100% - 10px);
    }

    .hero__typing-cursor {
        display: inline-block;
        vertical-align: middle;
        margin-left: 2px;
        flex-shrink: 0;
    }
}

/* ============================================
   АДАПТИВ: СТРАНИЦА ВАКАНСИЙ (vacancies.html)
   ============================================ */

/* 1440px - Большие десктопы */
@media (max-width: 1440px) {
    .header__container {
        padding: 0 30px;
    }
    
    .header__nav {
        gap: 50px;
    }
    
    .header__nav-group {
        gap: 50px;
    }
    
    .header__nav-link {
        font-size: 20px;
    }
    
    .footer__container {
        gap: 40px;
    }
    
    .footer__left {
        gap: 58px;
    }
    
    .vacancies__text-block {
        width: 800px;
    }
    
    .vacancies__image-wrapper {
        width: 380px;
        height: 380px;
    }
}

/* 1280px - Стандартные десктопы */
@media (max-width: 1280px) {
    .vacancies__content {
        gap: 40px;
    }
    
    .vacancies__text-block {
        width: 100%;
        max-width: 600px;
    }
    
    .vacancies__image-wrapper {
        width: 340px;
        height: 340px;
    }
    
    .footer__container {
        padding: 40px 30px;
        gap: 30px;
    }
}

/* 1080px - Планшеты в ландшафте */
@media (max-width: 1080px) {
    .header__container {
        padding: 0 30px;
        justify-content: space-between;
    }

    .header__nav {
        display: none;
    }
    
    .header__menu-button {
        display: block;
    }
}

/* 1024px - Планшеты в ландшафте */
@media (max-width: 1024px) {
    
    .container {
        padding: 0 30px;
    }
    
    .vacancies {
        margin-bottom: 50px;
    }

    h1.vacancies__title {
        margin: 0;
    }
    
    .vacancies__content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .vacancies__text-block {
        display: contents;
    }
    
    .vacancies__title {
        order: 1;
    }
    
    .vacancies__image-wrapper {
        order: 2;
        width: 420px;
        height: 420px;
    }
    
    .vacancies__description {
        order: 3;
    }
    
    .vacancies__button {
        order: 4;
        align-self: center;
    }
    
    .footer__container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        height: auto;
        padding: 40px 30px;
    }
    
    .footer {
        height: auto;
    }
    
    .footer__left {
        width: 100%;
        gap: 40px;
        justify-content: center;
    }
    
    .footer__logo-block {
        width: auto;
        flex: 0 0 30%;
        align-items: center;
    }
    
    .footer__contacts {
        align-items: center;
        text-align: center;
    }
    
    .footer__contacts-title,
    .footer__contact-link {
        margin: 0;
        text-align: center;
    }
    
    .footer__right {
        width: 100%;
        align-items: center;
    }
    
    .footer__actions {
        align-items: center;
    }
    
    .footer__actions-title {
        margin: 0;
        text-align: center;
    }
    
    .footer__actions-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .chat-modal{
        right: 30px;
        bottom: 30px;
    }
    
    .chat-button {
        right: 30px;
        bottom: 30px;
    }
}

/* 768px - Планшеты в портрете */
@media (max-width: 768px) {
    .header {
        height: 120px;
    }
    
    .header__container {
        padding: 0 20px;
    }
    
    .header__logo {
        width: 160px;
        height: 57px;
    }
    
    .header__nav {
        display: none;
    }
    
    .header__menu-button {
        display: block;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .vacancies {
        margin-bottom: 60px;
    }
    
    .vacancies__text-block {
        gap: 20px;
    }
    
    .vacancies__title {
        font-size: 32px;
    }
    
    .vacancies__description {
        font-size: 16px;
    }
    
    .vacancies__button {
        padding: 30px 50px;
        height: 70px;
        font-size: 16px;
    }
    
    .vacancies__image-wrapper {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
    
    .footer__container {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .footer__left {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer__logo-block {
        width: 100%;
        flex: 1;
    }
    
    .footer__logo {
        width: 160px;
        height: 57px;
    }
    
    .footer__contacts {
        width: 100%;
    }
    
    .footer__actions-title {
        text-align: center;
    }
    
    .footer__actions-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .footer__button {
        width: 100%;
    }
    
}

/* 480px - Мобильные устройства */
@media (max-width: 480px) {
    .header {
        height: 100px;
    }
    
    .header__container {
        padding: 0 15px;
    }
    
    .header__logo {
        width: 140px;
        height: 50px;
    }
    
    .header__menu-button {
        width: 32px;
        height: 24px;
    }
    
    .breadcrumbs__list {
        gap: 8px;
    }
    
    .breadcrumbs__separator {
        width: 8px;
    }
    
    .vacancies {
        margin-bottom: 40px;
    }
    
    .vacancies__text-block {
        gap: 15px;
    }
    
    .vacancies__button {
        padding: 25px 40px;
        height: 60px;
    }
    
    .vacancies__image-wrapper {
        width: 100%;
        height: 300px;
        border-radius: 20px;
    }
    
    .footer__container {
        padding: 25px 15px;
        gap: 25px;
    }
    
    .footer__logo {
        width: 140px;
        height: 50px;
    }
    
    .footer__socials {
        gap: 12px;
    }
    
    .footer__social-link {
        width: 28px;
        height: 28px;
    }
    
    .footer__actions-buttons {
        gap: 10px;
    }
    
    .footer__button {
        padding: 12px 30px;
        height: 50px;
        font-size: 14px;
    }
    
    .chat-modal{
        right: 20px;
        bottom: 20px;
        width: 360px;
        height: 565px;
    }
    
    .chat-button {
        right: 20px;
        bottom: 20px;
    }

    .chat-modal__title {
        font-size: 20px;
    }

    .chat-modal__subtitle {
        font-size: 14px;
    }

    .chat-modal__send-icon {
        width: 30px;
        height: 30px;
    }
}

/* ============================================
   АДАПТИВ: СТРАНИЦА ЛИЧНОГО КАБИНЕТА (account-dashboard.html)
   ============================================ */

/* 1440px - Большие десктопы */
@media (max-width: 1440px) {
    .webinars__list {
        gap: 15px;
    }
}

/* 1280px - Стандартные десктопы */
@media (max-width: 1280px) {
    .webinars__list {
        grid-template-columns: repeat(2, auto);
    }
}

/* 1024px - Планшеты в ландшафте */
@media (max-width: 1024px) {

    h1.greeting__title {
        margin: 0;
    }
    
    .admission {
        padding: 30px 0 40px 0;
    }
    
    .admission__timeline {
        gap: 15px;
    }
    
    .timeline__icon-small {
        margin-left: 40px;
    }
    
    .webinars__list {
        grid-template-columns: 1fr;
        justify-content: center;
    }
    
    .webinar-card {
        width: 420px;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .divider {
        margin: 40px auto;
    }
}

/* 768px - Планшеты в портрете */
@media (max-width: 768px) {
    
    .greeting__avatar {
        width: 60px;
        height: 60px;
    }

    .greeting__title {
        font-size: 20px;
    }

    .admission__title {
        font-size: 20px;
    }
    
    .timeline__icon {
        width: 40px;
        height: 40px;
    }
    
    .timeline__icon-small {
        width: 20px;
        height: 20px;
        margin-left: 30px;
    }
    
    .timeline__label {
        font-size: 16px;
    }

    .timeline__label--small {
        font-size: 12px;
    }

    .webinars__title {
        font-size: 20px;
    }
    
    .webinars__list {
        gap: 20px;
    }

    .webinar-card__title {
        font-size: 20px;
    }
    
    .settings {
        padding: 0 0 30px 0;
    }

    .settings__title {
        margin: 0 0 20px 0;
        font-size: 20px;
    }
    
    .settings__avatar {
        width: 60px;
        height: 60px;
    }
    
    .divider {
        margin: 30px auto;
    }
}

/* 480px - Мобильные устройства */
@media (max-width: 480px) {
    
    .greeting__avatar {
        width: 70px;
        height: 70px;
    }
    
    .admission {
        padding: 25px 0;
    }
    
    .admission__timeline {
        gap: 10px;
    }
    
    .timeline__item {
        gap: 10px;
    }
    
    .timeline__icon {
        width: 35px;
        height: 35px;
    }
    
    .timeline__icon-small {
        width: 18px;
        height: 18px;
        margin-left: 20px;
    }
    
    .timeline__label {
        line-height: 35px;
    }
    
    .webinars__list {
        grid-template-columns: 1fr;
        justify-content: center;
    }
    
    .webinar-card {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .webinar-card__image-wrapper {
        width: 100%;
        height: 180px;
        border-radius: 16px;
    }
    
    .webinar-card__play-button {
        width: 60px;
        height: 60px;
    }
    
    .settings__content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .settings__avatar-section {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .settings__avatar {
        width: 70px;
        height: 70px;
    }
    
    .divider {
        margin: 25px auto;
    }
}

/* ============================================
   АДАПТИВ: СТРАНИЦА ЛИЧНОГО КАБИНЕТА (account.html)
   ============================================ */

/* 1440px - Большие десктопы */
@media (max-width: 1440px) {
    .login {
        padding: 40px 0;
        margin-bottom: 60px;
    }
    
    .login__form {
        padding: 40px;
    }
}

/* 1280px - Стандартные десктопы */
@media (max-width: 1280px) {
    .login {
        padding: 40px 0;
        margin-bottom: 60px;
    }
}

/* 1024px - Планшеты в ландшафте */
@media (max-width: 1024px) {
    .breadcrumbs {
        margin: 20px 0 20px 0;
    }
    
    .login {
        padding: 40px 0;
        margin-bottom: 50px;
    }
    
    .login__form {
        max-width: 450px;
    }
}

/* 768px - Планшеты в портрете */
@media (max-width: 768px) {
    .breadcrumbs {
        margin: 20px 0 20px 0;
    }
    
    .login {
        padding: 30px 0;
        margin-bottom: 50px;
    }

    .login__title {
        font-size: 20px;
    }
    
    .login__form {
        padding: 25px;
        gap: 20px;
    }
    
    .login__fields {
        gap: 10px;
    }

    .login__button {
        font-size: 16px;
    }
}

/* 480px - Мобильные устройства */
@media (max-width: 480px) {
    .breadcrumbs {
        margin: 15px 0 15px 0;
    }
    
    .login {
        padding: 25px 0;
        margin-bottom: 40px;
    }
    
}

/* ============================================
   АДАПТИВ: СТРАНИЦА КОМАНДЫ (team.html)
   ============================================ */

/* 1440px - Большие десктопы */
@media (max-width: 1440px) {
    .team-stats .container {
        gap: 30px;
    }

}

/* 1280px - Стандартные десктопы */
@media (max-width: 1280px) {
    .team-stats {
        margin-bottom: 70px;
    }
    
    .team-stats .container {
        gap: 30px;
    }

    .team-stats__grid {
        gap: 15px;
    }

    .stat-card__text {
        margin: 0;
        font-size: 16px;
    }

}

/* 1024px - Планшеты в ландшафте */
@media (max-width: 1024px) {
    .team-stats {
        margin-bottom: 60px;
    }
    
    .team-stats .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .team-stats__background {
        width: 100%;
    }

    .team__title {
        margin-top: 0;
    }
}

/* 768px - Планшеты в портрете */
@media (max-width: 768px) {
    .team-stats {
        margin-bottom: 50px;
    }
    
    .team-stats .container {
        gap: 20px;
    }

    .team__title {
        font-size: 32px;
    }
    
    .team-stats__background-image {
        border-radius: 24px;
    }
    
    .team-stats__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 480px - Мобильные устройства */
@media (max-width: 480px) {
    .team-stats {
        margin-bottom: 40px;
    }
    
    .team-stats .container {
        gap: 20px;
    }
    
    .team-stats__background-image {
        border-radius: 20px;
    }
    
    .team-stats__grid {
        gap: 15px;
    }
}

/* ============================================
   АДАПТИВ: СТРАНИЦА СТРУКТУРЫ КОМПАНИИ (structure.html)
   ============================================ */

/* 1440px - Большие десктопы */
@media (max-width: 1440px) {
    .structure-org {
        padding: 0 0 70px 0;
    }
    
    .structure-org__departments {
        gap: 15px;
    }
    
    .structure-profile {
        padding: 20px 0 80px 0;
    }
    
    .structure-profile__image-wrapper {
        width: 350px;
        margin-left: 50px;
    }
}

/* 1280px - Стандартные десктопы */
@media (max-width: 1280px) {
    .structure-org {
        padding: 0 0 60px 0;
    }
    
    .structure-org__ceo::after {
        display: none;
    }
    
    .structure-org__departments {
        gap: 15px;
    }
    
    .structure-profile {
        padding: 20px 0 70px 0;
    }
    
    .structure-profile__image-wrapper {
        width: 320px;
        margin-left: 40px;
    }
}

@media (max-width: 1180px) {
    .structure-org__connectors {
        display: none;
    }
    
    .structure-org__departments {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        position: relative;
        margin-top: 60px;
    }
    
    .structure-org__departments::before {
        content: '';
        position: absolute;
        left: 50%;
        top: -60px;
        transform: translateX(-50%);
        width: 2px;
        height: 60px;
        background: var(--color-border);
        z-index: 1;
    }
    
    .structure-org__departments::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 2px;
        height: 86.5%;
        background: var(--color-border);
        z-index: 1;
    }
    
    .structure-org__department {
        position: relative;
        max-width: 300px;
        width: 100%;
    }
    
    .structure-org__department:nth-child(odd) {
        justify-self: end;
        margin-right: 20px;
    }
    
    .structure-org__department:nth-child(even) {
        justify-self: start;
        margin-left: 20px;
    }
    
    .structure-org__department::before {
        display: none;
    }
    
    .structure-org__department:nth-child(odd)::after {
        content: '';
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 2px;
        background: var(--color-border);
        z-index: 1;
    }
    
    .structure-org__department:nth-child(even)::after {
        content: '';
        position: absolute;
        right: 100%;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 2px;
        background: var(--color-border);
        z-index: 1;
    }
    
    .structure-org__lines {
        display: none;
    }
    
    .structure-org__departments-list {
        display: contents;
    }
}

/* 1024px - Планшеты в ландшафте */
@media (max-width: 1024px) {
    .structure-org {
        padding: 0 0 50px 0;
    }

    h1.structure__title {
        margin-top: 0;
        font-size: 32px;
    }
    
    .structure-org__connectors {
        display: none;
    }
    
    .structure-org__department::before {
        display: none;
    }
    
    .structure-profile {
        padding: 0;
    }
    
    .structure-profile__wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .structure-profile__image-wrapper {
        float: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .structure-profile__content {
        width: 100%;
    }
}

/* 768px - Планшеты в портрете */
@media (max-width: 768px) {
    .structure-org {
        padding: 0 0 40px 0;
    }
    
    .structure-org__ceo {
        max-width: 100%;
        padding: 20px;
    }
    
    .structure-org__departments {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .structure-org__departments::after {
        height: 84%;
    }
    
    .structure-org__department {
        width: 92%;
        height: 240px;
        padding: 20px;
        border-radius: 16px;
    }

    .structure-org__department:nth-child(odd)::after {
        width: 27px;
    }
    
    .structure-profile__wrapper {
        gap: 25px;
    }
    
    .structure-profile__image-wrapper {
        max-width: 100%;
    }
    
    .structure-profile__text {
        margin-bottom: 30px;
    }
}

@media (max-width: 620px) {
    .structure-org__department-title {
        font-size: 14px;
    }

    .structure-org__department-description {
        font-size: 12px;
    }
}

/* 480px - Мобильные устройства */
@media (max-width: 480px) {
    .structure-org {
        padding: 0 0 30px 0;
        overflow: visible;
    }
    
    .structure-org .container {
        overflow: visible;
    }
    
    .structure-org__diagram {
        align-items: flex-start;
        position: relative;
        overflow: visible;
        padding-left: 0;
    }
    
    .structure-org__diagram::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 165px;
        bottom: calc(4.6% + 10px);
        width: 2px;
        background: #D9D9D9;
        z-index: 1;
    }

    .structure-org__department-title,
    .structure-org__department-description {
        font-size: 16px;
    }
    
    .structure-org__department:last-child::before {
        z-index: 2;
    }
    
    .structure-org__ceo {
        flex-direction: column;
        align-items: flex-start;
        width: 311px;
        padding: 25px;
        height: auto;
        gap: 15px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
        position: relative;
    }
    
    .structure-org__ceo::after {
        display: none;
    }
    
    .structure-org__ceo-avatar {
        width: 50px;
        height: 50px;
    }
    
    .structure-org__departments {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        grid-template-columns: none;
        gap: 0;
        width: 100%;
        margin-left: 0;
        position: relative;
        overflow: visible;
    }
    
    .structure-org__departments::before {
        content: '';
        position: absolute;
        left: 20px;
        top: calc(267px / 2);
        width: 34%;
        height: 2px;
        transform: translateX(0);
        background: #D9D9D9;
        z-index: 0;
        box-shadow: 
            0 calc(267px + 10px) 0 0 #D9D9D9,
            0 calc((267px + 5px) * 2) 0 0 #D9D9D9,
            0 calc((267px + 5px) * 3) 0 0 #D9D9D9,
            0 calc((267px + 0px) * 4) 0 0 #D9D9D9;
    }
    
    .structure-org__departments::after {
        display: none;
    }
    
    .structure-org__lines {
        display: block;
        position: relative;
        left: 0;
        top: 0;
        width: 20px;
        flex-shrink: 0;
        height: 100%;
        min-height: 100%;
        z-index: 1;
    }
    
    .structure-org__lines::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: calc(50% + 10px);
        width: 2px;
        background: #D9D9D9;
    }
    
    .structure-org__departments-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 70%;
        flex-shrink: 0;
        align-items: flex-end;
        position: relative;
    }
    
    .structure-org__department {
        width: 277px;
        padding: 25px;
        border-radius: 24px;
        gap: 20px;
        margin-left: 0;
        margin-right: 0;
        position: relative;
        overflow: visible;
    }
    
    .structure-org__department::before {
        display: none;
    }
    
    .structure-org__departments {
        margin-top: 0;
    }
    
    .structure-org__departments::after {
        display: none;
    }
    
    .structure-org__department {
        max-width: none;
    }
    
    .structure-org__department:nth-child(odd) {
        justify-self: auto;
        margin-right: 0;
    }
    
    .structure-org__department:nth-child(even) {
        justify-self: auto;
        margin-left: 0;
    }
    
    .structure-org__department:nth-child(odd)::after,
    .structure-org__department:nth-child(even)::after {
        display: none;
    }
}

/* ============================================
   АДАПТИВ: СТРАНИЦА СТРАТЕГИИ КОМПАНИИ (strategy.html)
   ============================================ */

/* 1440px - Большие десктопы */
@media (max-width: 1440px) {
    .strategy-benefits {
        padding: 35px 0;
    }
    
    .strategy-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .strategy-values {
        margin-bottom: 80px;
    }
    
    .strategy-values .container {
        gap: 35px;
    }
}

/* 1280px - Стандартные десктопы */
@media (max-width: 1280px) {
    .strategy-benefits {
        padding: 30px 0;
    }

    .strategy-difference__content {
        margin: 30px 0;
    }
    
    .strategy-difference .container {
        gap: 40px;
        min-height: 500px;
    }
    
    .strategy-difference__image-wrapper {
        width: 450px;
        min-width: 450px;
    }
    
    .strategy-features__grid {
        gap: 15px;
    }
    
    .strategy-feature-card {
        padding: 22px;
    }
    
    .strategy-values {
        margin-bottom: 70px;
    }
    
    .strategy-values .container {
        gap: 30px;
    }
    
    .strategy-values__top {
        gap: 30px;
    }
    
    .strategy-values__image-wrapper {
        width: 350px;
        min-width: 350px;
    }

    h2.strategy-values__title {
        margin: 0;
    }

    .strategy-values__divider {
        margin: 0 0 10px 0;
    }
}


/* 1024px - Планшеты в ландшафте */
@media (max-width: 1024px) {
    .strategy-benefits {
        padding: 30px 0;
    }

    h1.strategy__title {
        margin: 0;
    }

    .strategy-benefits__title {
        margin: 0 0 20px 0;
    }

    .strategy__description {
        margin-bottom: 0;
    }

    .strategy-benefits__text {
        margin-top: 0;
    }
    
    .strategy-difference::before {
        display: none;
    }
    
    .strategy-difference .container {
        flex-direction: column;
        gap: 0px;
        min-height: auto;
        overflow: visible;
    }
    
    .strategy-difference__content {
        flex: 1 1 100%;
        width: 100%;
        margin: 0 0 30px 0;
        order: 2;
    }
    
    .strategy-difference__image-wrapper {
        flex: 1 1 100%;
        width: 100%;
        max-width: 500px;
        margin: 30px auto;
        order: 1;
    }
 
    
    .strategy-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .strategy-feature-card__title {
        width: 100%;
    }
    
    .strategy-values {
        margin-bottom: 60px;
    }
    
    .strategy-values .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .strategy-values__image-wrapper {
        flex: 1 1 100%;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .strategy-values__content {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .strategy-values__top {
        flex-direction: column;
        gap: 25px;
    }
}

/* 768px - Планшеты в портрете */
@media (max-width: 768px) {
    .strategy-benefits {
        padding: 25px 0;
    }

    h1.strategy__title {
        font-size: 32px;
    }

    .strategy__description {
        font-size: 16px;
    }
    
    .strategy-benefits__title {
        margin: 0 0 25px 0;
        font-size: 20px;
    }
    
    .strategy-benefits__item {
        gap: 12px;
    }
    
    .strategy-features__grid {
        grid-template-columns: 1fr;
        gap: 15px;
        grid-auto-rows: auto;
    }
    
    .strategy-feature-card {
        height: auto;
    }

    h2.strategy-values__title {
        margin: 0 0 15px 0;
        font-size: 20px;
    }
    
    .strategy-feature-card {
        padding: 20px;
        border-radius: 20px;
    }
    
    .strategy-values {
        margin-bottom: 50px;
    }
    
    .strategy-values .container {
        gap: 25px;
    }
    
    .strategy-values__top {
        gap: 20px;
        margin: 0 0 20px 0;
    }
    
    .strategy-values__divider {
        display: none;
    }
}

/* 480px - Мобильные устройства */
@media (max-width: 480px) {
    .strategy-benefits {
        padding: 20px 0;
    }
    
    .strategy-benefits__title {
        margin: 0 0 20px 0;
    }
    
    .strategy-benefits__item {
        gap: 10px;
    }
    
    .strategy-benefits__icon {
        width: 20px;
        height: 20px;
    }
    
    .strategy-difference {
        padding: 0;
        overflow: visible;
    }
    
    .strategy-difference::before {
        display: block;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-size: contain;
        background-position: right top;
    }
    
    .strategy-difference .container {
        overflow: visible;
    }
    
    .strategy-difference__image-wrapper {
        max-width: 100%;
        width: 100%;
        padding: 0;
        min-width: 0;
        overflow: visible;
    }
    
    .strategy-difference__image-wrapper .students-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .strategy-features__grid {
        gap: 15px;
    }
    
    .strategy-feature-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .strategy-feature-card__header {
        gap: 12px;
    }
    
    .strategy-feature-card__icon {
        width: 40px;
        height: 40px;
    }
    
    .strategy-values {
        margin-bottom: 40px;
    }
    
    .strategy-values .container {
        gap: 20px;
    }
    
    .strategy-values__image-wrapper {
        max-width: 100%;
        width: 100%;
        min-height: 300px;
        min-width: 0;
        border-radius: 24px;
        background-image: url('../images/strategy-values-480.jpg');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .strategy-values__image {
        display: none;
    }
    
    .strategy-values__top {
        gap: 20px;
    }
    
    .strategy-values__divider {
        margin: 0 0 20px 0;
    }
}

/* ============================================
   АДАПТИВ: СТРАНИЦА УСЛУГ (services.html)
   ============================================ */

/* 1440px - Большие десктопы */
@media (max-width: 1440px) {
    .services-masters__blocks,
    .services-phd__blocks {
        gap: 20px;
    }
    
    .services-benefits__cards {
        gap: 20px;
    }
    
    .services-features__grid {
        gap: 20px;
    }
    
    .services-steps__grid {
        gap: 15px;
    }
}

/* 1280px - Стандартные десктопы */
@media (max-width: 1280px) {
    .services-masters__block,
    .services-phd__block {
        padding: 25px;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .services-help .container,
    .services-steps .container {
        padding: 30px;
    }
}

/* 1024px - Планшеты (ландшафт) */
@media (max-width: 1024px) {
    .services-benefits {
        padding: 40px 0;
    }

    h1.services__title {
        margin: 0 0 30px 0;
    }
    
    .services-benefits__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-phd {
        padding: 60px 0 40px 0;
    }
    
    .services-features--phd {
        margin: 40px 0 60px 0;
    }
}

/* 768px - Планшеты (портрет) */
@media (max-width: 768px) {
    .services-masters__blocks,
    .services-phd__blocks {
        flex-direction: column;
        gap: 20px;
    }

    h1.services__title {
        font-size: 32px;
    }

    h2.services-masters__title,
    h2.services-phd__title {
        font-size: 24px;
    }

    h3.services-masters__block-title,
    h3.services-phd__block-title {
        font-size: 16px;
    }

    h2.services-benefits__title,
    h3.services-features__title,
    h2.services-help__title,
    h2.services-options__title,
    h2.services-steps__title {
        font-size: 20px;
    }

    .number-badge {
        font-size: 16px;
    }
    
    .services-masters__block,
    .services-phd__block {
        flex: 1 1 100%;
        padding: 20px;
    }
    
    .services-benefits {
        padding: 30px 0;
    }
    
    .services-benefits__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .benefit-card__result {
        height: auto;
        min-height: 146px;
    }
    
    .services-features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-features--masters {
        margin-bottom: 0;
    }
    
    .services-features--phd {
        margin: 30px 0 40px 0;
    }
    
    .services-phd {
        padding: 40px 0 30px 0;
    }
    
    .services-help .container,
    .services-steps .container {
        padding: 20px;
    }
    
    .services-steps__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .services-options {
        padding: 30px 0;
    }
    
    .services-options__list {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-options__item {
        flex: 1 1 100%;
        padding: 0 0 0 60px;
    }
    
    .step-item {
        padding: 0 0 0 60px;
    }
}

/* 480px - Мобильные устройства */
@media (max-width: 480px) {
    .services-masters__blocks,
    .services-phd__blocks {
        gap: 15px;
    }
    
    .services-masters__block,
    .services-phd__block {
        padding: 15px;
        border-radius: 12px;
    }
    
    .services-masters__block-title {
        margin: 0 0 15px 0;
    }
    
    .services-masters__item,
    .services-phd__item {
        margin: 0 0 12px 0;
        padding: 0 0 0 25px;
    }
    
    .services-masters__checkmark,
    .services-phd__checkmark {
        width: 18px;
        height: 18px;
    }
    
    .services-benefits {
        padding: 20px 0;
    }
    
    .services-benefits__cards {
        gap: 15px;
    }
    
    .benefit-card {
        padding: 15px;
        border-radius: 16px;
    }
    
    .benefit-card__header {
        gap: 12px;
        margin: 0 0 15px 0;
    }
    
    .number-badge {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .benefit-card__list {
        margin: 0 0 15px 0;
    }
    
    .benefit-card__item {
        margin: 0 0 10px 0;
        padding: 0 0 0 25px;
    }
    
    .benefit-card__checkmark {
        width: 18px;
        height: 18px;
    }
    
    .benefit-card__result {
        padding: 15px;
        border-radius: 12px;
    }
    
    .services-features__grid {
        gap: 15px;
    }
    
    .services-features__title {
        margin: 0 0 15px 0;
    }
    
    .services-features__item {
        margin: 0 0 10px 0;
        padding: 0 0 0 25px;
    }
    
    .services-features__checkmark {
        width: 18px;
        height: 18px;
    }
    
    .services-phd__block-title {
        margin: 0 0 15px 0;
    }
    
    .services-help .container,
    .services-steps .container {
        padding: 15px;
        border-radius: 16px;
    }
    
    .services-help__item {
        margin: 0 0 12px 0;
        padding: 0 0 0 25px;
    }
    
    .services-help__checkmark {
        width: 18px;
        height: 18px;
    }
    
    .services-options {
        padding: 20px 0;
    }
    
    .services-options__title {
        margin: 0 0 20px 0;
    }
    
    .services-options__list {
        gap: 15px;
    }
    
    .services-options__item {
        padding: 0 0 0 50px;
    }
    
    .services-options__item .number-badge {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .services-steps__title {
        margin: 0 0 20px 0;
    }
    
    .services-steps__grid {
        gap: 12px;
    }
    
    .step-item {
        padding: 0 0 0 50px;
        gap: 12px;
    }
    
    .step-item .number-badge {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .reviews-social {
        padding: 30px 0;
    }
    
    .reviews-social__title {
        margin: 0 0 30px 0;
    }
    
    .reviews-social__carousel-wrapper {
        padding-right: 20px;
    }
    
    .reviews-social__cards {
        gap: 20px;
    }
    
    .reviews-social__card {
        width: 100%;
        max-width: 325px;
        height: auto;
        min-height: 400px;
    }
}

/* ============================================
   АДАПТИВ: ГЛАВНАЯ СТРАНИЦА (index.html)
   ============================================ */

/* 1680px - Большие экраны */
@media (max-width: 1680px) {
    .hero__path--right {
        transform: translateX(calc(-50% + 629px));
    }
    
    .hero__icon--eye {
        transform: translateX(calc(-50% + 629px)) translateY(-50%);
    }

    .header {
        z-index: 26;
    }

    .hero__icon--airplane {
        left: 4.5%;
    }

    .hero__icon--bonnet {
        left: 9%;
    }

}

/* 1600px - Большие десктопы */
@media (max-width: 1600px) {

    .hero__path--right {
        transform: translateX(calc(-50% + 549px));
    }
    
    .hero__icon--eye {
        transform: translateX(calc(-50% + 549px)) translateY(-50%);
    }

    .hero__typing-text {
        font-size: 54px;
    }

    .hero__icon--bonnet {
        left: 10%;
    }

    .podcasts__carousel {
        max-width: 1200px;
    }
    
}

/* 1440px - Большие десктопы */
@media (max-width: 1440px) {
    .hero__path--right {
        transform: translateX(calc(-50% + 469px));
    }
    
    .hero__icon--eye {
        transform: translateX(calc(-50% + 469px)) translateY(-50%);
    }

    .hero__icon--bonnet {
        left: 12%;
    }

    .news__carousel-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .reviews__carousel-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .team-home__carousel-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .reviews-social__carousel-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    .services-home__content {
        gap: 40px;
    }
    
    .services-home__grid {
        gap: 30px;
    }
    
    .stats__grid {
        gap: 20px;
        max-width: 1000px;
    }
    
    .partners__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .book__title-line {
        font-size: 46px;
    }


    .book__content {
        gap: 0;
    }

    .podcasts__carousel {
        max-width: 1000px;
    }
    
    .services-home__filter {
        padding: 24px 44px;
    }
    
    .approaches__title {
        margin-bottom: 35px;
    }
    
    .approach-card {
        padding: 22px;
        min-height: 264px;
    }
    
}

/* 1280px - Стандартные десктопы */
@media (max-width: 1280px) {
    /* Hero секция */
    .hero__path--right {
        transform: translateX(calc(-50% + 345px));
    }
    
    .hero__icon--eye {
        transform: translateX(calc(-50% + 345px)) translateY(-50%);
    }
    
    .hero__typing-text {
        font-size: 36px;
        line-height: 1.3;
    }

    .hero__icon--airplane {
        left: 6.5%;
    }

    .hero__icon--bonnet {
        left: 14%;
    }

    .services-home__filters {
        width: 100%;
    }
    
    .services-home__filter {
        padding: 15px 30px;
    }

    
    .book__title-lines {
        gap: 0;
        display: none;
    }

    .book__title-line {
        padding-left: 34px;
        font-size: 38px;
    }

    .book__title-line:nth-child(-n+2) {
        padding-left: 34px;
    }
    
    .approaches__title {
        margin-bottom: 30px;
    }
    
    .approaches__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .approach-card {
        padding: 20px;
        min-height: 250px;
    }

    .podcasts__play-icon {
        width: 80%;
        height: 80%;
    }

    .podcasts__card-overlay {
        padding: 30px;
    }

    .podcasts__arrow-button {
        width: 60px;
        height: 60px;
    }

    .podcasts__arrow--prev {
        left: 40px;
        top: 63%;
    }

    .podcasts__arrow--next {
        right: 40px;
        top: 48%;
    }
    
    h2.awaiting__title {
        margin-bottom: 240px;
    }
 
    .awaiting__image-left {
        left: 26%;
        right: auto;
        top: -16%;
        transform: translateX(-50%) translateY(-50%);
        z-index: 1;
    }
    
    .awaiting__image-right {
        left: 76%;
        right: auto;
        top: -14%;
        transform: translateX(-50%) translateY(-50%);
        z-index: 1;
    }
    
    .awaiting__blocks {
        z-index: 2;
    }
    
    .awaiting__block.animate {
        z-index: 3;
    }
}

/* 1024px - Планшеты (ландшафт) */
@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }
    
    /* Hero секция - скрываем векторы и иконки */
    .hero__path--left,
    .hero__path--right {
        display: none;
    }
    
    /* Показываем вектор для планшетов */
    .hero__path--mobile {
        display: block !important;
    }
    
    /* Не скрываем .hero__paths полностью, чтобы иконки были видны */
    .hero__paths {
        display: block;
        z-index: 50;
    }

    .services-home__filters {
        margin-bottom: 30px;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 10px;
        gap: 20px;
        width: 100%;
    }
    
    .services-home__filters::-webkit-scrollbar {
        display: none;
    }

    .services-home__filter {
        padding: 18px 35px;
        flex-shrink: 0;
    }

    .book__button {
        margin-left: 37px;
    }
    
    .team-home__carousel-wrapper {
        padding-right: 20px;
        padding-left: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .reviews__carousel-wrapper {
        padding-right: 20px;
        padding-left: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .reviews-social__carousel-wrapper {
        padding-right: 20px;
        padding-left: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .news__carousel-wrapper {
        padding-right: 20px;
        padding-left: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .news__card {
        width: 700px;
        max-width: 750px;
        min-width: 700px;
    }
    
    .team-home__card {
        width: 700px;
        max-width: 750px;
        min-width: 700px;
    }
    
    .team-home__content {
        padding: 25px;
        gap: 5px;
    }
    
    .pricing__result-value {
        font-size: 32px;
        font-weight: 700;
    }
    
    .pricing__select {
        min-width: 180px;
        flex: 1 1 auto;
    }

    .hero__typing {
        margin-top: -10%;
    }
    
    /* Показываем иконки на векторе для планшетов */
    .hero__icon {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    /* Иконки должны быть видны */
    .hero__icons {
        display: block;
        visibility: visible;
        position: absolute;
        left: 50%;
        top: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        transform: translateX(-50%);
        z-index: 31;
        pointer-events: none;
    }
    
    /* Позиционирование иконок на векторе hero__path--mobile */
    .hero__icon--airplane {
        left: 8%;
        top: 81%;
    }
    
    .hero__icon--bonnet {
        left: 46%;
        bottom: 33%;
    }
    
    .hero__icon--eye {
        top: 7%;
        left: 42%;
    }
    
    /* Скрываем иконку глаза, когда меню открыто */
    body:has(.header__mobile-menu.active) .hero__icon--eye {
        display: none;
    }

    .podcasts {
        padding-bottom: 20px;
    }

    /* Стандартные стрелки для подкастов на 1024px */
    .podcasts__carousel {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding-bottom: 0;
    }

    .podcasts__cards-container {
        order: 1;
        width: 100%;
        flex: 1 1 100%;
        margin-bottom: 0;
    }

    .podcasts__arrow {
        position: static;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--color-secondary);
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        order: 2;
        display: flex;
        flex: 0 0 auto;
        margin: 0;
    }

    .podcasts__arrow-button {
        display: contents;
    }

    .podcasts__arrow svg {
        position: relative;
        width: 24px;
        height: 24px;
        display: block;
    }

    .podcasts__dots {
        display: none;
    }
    
    /* Показываем вектор для мобильных устройств */
    .hero__path--mobile {
        display: block !important;
    }
    
    .approaches__title {
        margin-bottom: 25px;
    }
    
    .approaches__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-card {
        min-height: 240px;
    }
    
    .book__content {
        flex-direction: column;
        gap: 30px;
    }
    
    .book__text {
        display: contents;
    }

    .book__description {
        padding: 0 40px;
        margin-bottom: 0px;
       }
    
    .book__text {
        align-items: center;
    }
    
    .book__title {
        order: 1;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .book__title-line {
        justify-content: center;
    }
    
    .book__visual {
        order: 2;
        width: 100%;
    }
    
    .book__description {
        order: 3;
        width: 100%;
    }
    
    .book__button {
        order: 4;
    }

    .podcasts__card {
        border-radius: 40px;
    }

    .podcasts__carousel {
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 20px;
        padding-bottom: 0;
    }
}

/* 768px - Планшеты (портрет) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header__mobile-logo {
        width: 150px;
        height: 53px;
        margin-top: 13px;
    }
    
    /* Hero секция */
    .hero {
        min-height: 520px;
    }
    
    .hero__container {
        padding: 0 20px;
    }
    
    .hero__typing-cursor {
        height: 36px;
    }
    
    .hero__path--mobile {
        display: block !important;
        bottom: 30px;
        max-height: none;
        width: 100%;
        object-fit: contain;
    }

    .hero__icon--airplane {
        left: 8%;
        top: 78%;
    }
    
    .hero__icon--eye {
        top: 4.3%;
        left: 36%;
    }
    
    /* Секция Услуги */
    .services-home {
        padding: 40px 0 0 0;
    }
    
    .services-home__title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .services-home__filters {
        margin-bottom: 30px;
    }
    
    .services-home__filter {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .services-home__content {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-home__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        flex: 1 1 100%;
    }
    
    .services-home__item {
        width: 100%;
    }
    
    .services-home__number {
        font-size: 24px;
        font-weight: 400;
        line-height: 1.3;
    }

    .services-home__description {
        margin: 0;
    }
    
    .services-home__graphic-wrapper {
        width: 100vw;
        max-width: 100vw;
        margin-left: -53vw;
        position: relative;
        right: 0;
    }

    .services-home__graphic-wrapper img {
        top: -100px;
    }
    
    /* Секция Новости */
    .news {
        padding: 0 0 40px 0;
    }
    
    .news__title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .news__carousel-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .news__cards {
        align-items: stretch;
    }
    
    .news__card {
        width: 320px;
        min-width: 320px;
        max-width: 320px;
        flex-direction: column;
        display: flex;
        align-items: stretch;
        height: auto;
    }
    
    .news__image-wrapper {
        width: 100%;
        flex: 0 0 230px;
        height: 230px;
        flex-shrink: 0;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .news__image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .news__content {
        padding: 20px;
        gap: 20px;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 0;
    }
    
    .news__description {
        flex: 1 1 auto;
        min-height: 0;
        text-align: center;
    }

    .news__headline {
        font-size: 22px;
        font-weight: 400;
        text-align: center;
    }
    
    .news__title-card {
        font-size: 22px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .news__description {
        font-size: 16px;
        text-align: center;
    }
    
    .news__button {
        align-self: center;
    }

    .news__track {
        display: none;
    }

    .news__carousel-wrapper {
        margin: 0;
    }
    
    /* Секция Статистика */
    .stats {
        padding: 40px 0;
    }
    
    h2.stats__title {
        font-size: 32px;
        margin-bottom: 40px;
        text-align: center;
    }

    .stats__title-underline-image {
        left: 41px;
        bottom: -12px;
    }

    .stats__number {
        font-size: 32px;
        font-weight: 400;
    }

    .stats__description {
        margin: 0;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats__value {
        font-size: 32px;
    }
    
    .stats__label {
        font-size: 16px;
    }
    
    /* Секция Партнеры */
    .partners {
        padding: 40px 0;
    }
    
    .partners__title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .partners__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partners__item:not(:nth-child(4n))::after {
        display: none;
    }
    
    /* Секция Книга */
    .book {
        padding: 40px 0;
    }
    
    .book__title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .book__content {
        flex-direction: column;
        gap: 30px;
    }
    
    .book__visual {
        width: 100%;
        order: 2;
    }
    
    .book__description {
        font-size: 16px;
        padding: 0;
        order: 3;
    }
    
    .book__button {
        order: 4;
        width: auto;
        padding: 23px 53px;
        margin: 0;
        height: auto;
        font-size: 16px;
        align-self: center;
    }
    
    /* Секция Команда */
    .team-home {
        padding-top: 40px;
    }
    
    .team-home__title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .team-home__carousel-wrapper {
        padding: 30px 20px 0 20px;
    }
    
    .team-home__card {
        width: 320px;
        min-width: 320px;
        max-width: 320px;
        flex-direction: column;
        position: relative;
    }
    
    .team-home__image-wrapper {
        width: 120px;
        height: 120px;
        flex: 0 0 120px;
        order: 2;
        position: absolute;
        top: 20px;
        left: 20px;
        border-radius: 16px;
        overflow: hidden;
        z-index: 1;
    }
    
    .team-home__image {
        min-height: 120px;
        border-radius: 14px;
    }
    
    .team-home__content {
        padding-top: 150px;
        gap: 20px;
        order: 1;
        align-items: flex-start;
        width: 100%;
        position: relative;
    }
    
    .team-home__name {
        font-size: 22px;
        order: 1;
        text-align: left;
    }
    
    .team-home__details {
        font-size: 16px;
        width: 100%;
        order: 2;
    }

    .team-home__cards {
        gap: 50px;
    }
    
    .team-home__navigation {
        display: flex;
        padding-top: 30px;
        margin: 0;
        position: relative;
        z-index: 10;
    }
    
    .team-home__track {
        display: none;
    }
    
    .team-home__arrow {
        position: relative;
        z-index: 11;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .team-home__badge {
        right: -23px;
        top: -19px;
        padding: 12px 38px;
        font-size: 16px;
    }
    
    /* Секция Подходы */
    .approaches {
        padding: 60px 0;
    }
    
    .approaches__title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .approaches__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-card {
        padding: 25px;
        min-height: auto;
    }
    
    .approach-card__title {
        font-size: 16px;
        width: 100%;
    }
    
    .approach-card__description {
        font-size: 16px;
        height: auto;
    }
    
    /* Секция Что вас ждёт */
    .awaiting {
        padding: 40px 0;
    }
    
    h2.awaiting__title {
        font-size: 32px;
    }
  
    .awaiting__blocks {
        gap: 10px;
    }
    
    .awaiting__block {
        padding: 20px;
    }
    
    .awaiting__block-number {
        font-size: 24px;
    }
    
    .awaiting__block-text {
        font-size: 16px;
    }
    
    .awaiting__vector {
        height: 100%;
        object-fit: cover;
    }
    
    /* Секция Отзывы */
    .reviews {
        padding: 40px 0;
    }
    
    .reviews__title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .reviews__carousel-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .reviews__card {
        width: 320px;
        min-width: 320px;
        max-width: 320px;
        flex-direction: column;
    }

    
    .reviews__video-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .reviews__image-wrapper {
        width: 100%;
        height: 320px;
        flex: 0 0 320px;
    }
    
    .reviews__content {
        padding: 20px;
        gap: 10px;
    }
    
    .reviews__name {
        font-size: 22px;
    }
    
    .reviews__info {
        font-size: 14px;
    }
    
    .reviews__text {
        width: 100%;
        font-size: 16px;
    }
    
    .reviews__track {
        display: none;
    }
    
    /* Секция Pricing */
    .pricing {
        padding: 40px 20px;
    }
    
    .pricing__title {
        font-size: 32px;
        margin-bottom: 30px;
        text-align: center;
    }

    .pricing__content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing__form {
        width: 100%;
        max-width: 100%;
        order: 1;
        display: contents;
    }
    
    .pricing__title {
        order: 1;
    }
    
    .pricing__form-fields {
        align-items: center;
        order: 2;
        display: contents;
    }
    
    .pricing__selects {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
        order: 1;
    }
    
    .pricing__field {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .pricing__select-wrapper {
        width: 100%;
        max-width: 280px;
    }
    
    .pricing__select {
        width: 100%;
        min-width: 280px;
        box-sizing: border-box;
    }
    
    .pricing__result {
        width: 100%;
        max-width: 100%;
        padding: 0;
        align-items: center;
        order: 2;
    }
    
    .pricing__button {
        width: 280px;
        padding: 15px 30px;
        height: 60px;
        box-sizing: border-box;
        align-self: center;
        order: 3;
    }
    
    .pricing__result-value {
        font-size: 32px;
        text-align: center;
    }
    
    .pricing__result-label {
        font-size: 16px;
        text-align: center;
    }
    
    /* Секция Подкасты */
    .podcasts {
        padding: 40px 0 0 0;
    }
    
    .podcasts__title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .podcasts__carousel {
        padding: 0 20px;
        margin-bottom: 20px;
        padding-bottom: 0;
    }
    
    .podcasts__card {
        width: 100%;
        max-width: 100%;
    }
    
    /* Секция Отзывы из соцсетей */
    .reviews-social {
        padding: 20px 0;
    }
    
    .reviews-social__title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .reviews-social__carousel-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .reviews-social__card {
        width: 325px;
        min-width: 325px;
        max-width: 325px;
        height: 703px;
    }
    
    .reviews-social__track {
        display: none;
    }
}

@media (max-width: 650px) {
    .hero__icon-box {
        width: 80px;
        height: 80px;
    }

    .hero__icon--airplane {
        left: 8%;
        top: 82%;
    }
    
    .hero__icon--bonnet {
        left: 44%;
        bottom: 25%;
    }
    
    .hero__icon--eye {
        top: 4.5%;
        left: 22%;
    }
}


/* 480px - Мобильные устройства */
@media (max-width: 480px) {
    .header__mobile-logo {
        margin-top: 5px;
    }

    .hero__icon-box {
        width: 50px;
        height: 50px;
    }

    .hero__icon--airplane {
        left: 8%;
        top: 86%;
    }
    
    .hero__icon--bonnet {
        left: 44%;
        bottom: 22%;
    }
    
    .hero__icon--eye {
        top: 5%;
        left: 6%;
    }
    
    .approaches__title {
        margin-bottom: 20px;
    }
    
    .approach-card {
        padding: 18px;
        gap: 15px;
        min-height: auto;
        height: auto;
    }
    
    .approach-card__header {
        gap: 12px;
    }
    
    .approach-card__icon {
        width: 45px;
        height: 45px;
    }
    
    .approach-card__description {
        min-height: auto;
        height: auto;
    }
    
    .awaiting__vector {
        height: 100%;
        object-fit: cover;
    }

    .awaiting__image-left .awaiting__image {
        width: 224px;
        height: 170px;
    }

    .awaiting__image-right .awaiting__image {
        width: 216px;
        height: 211px;
    }
    
    .awaiting__vector {
        top: auto;
        bottom: 0;
        transform: translate(-50%, 0);
    }

    h2.awaiting__title {
        margin-bottom: 175px;
    }

    .awaiting__image-left {
        left: 21%;
        top: -18%;
    }

    .awaiting__image-right {
        left: 77%;
        top: -14%;
    }

    .awaiting__blocks {
        grid-auto-rows: auto;
    }
    
    .awaiting__block {
        padding: 0 20px;
        height: auto;
        gap: 10px;
    }
    
    .awaiting__block-number {
        width: 50px;
        height: 50px;
    }

    h2.stats__title {
        text-align: left;
    }

    .news__carousel-wrapper {
        padding: 0;
    }
    
    .team-home__title {
        text-align: center;
    }
    
    .reviews__title {
        text-align: center;
    }
    
    .reviews__country-badge {
        display: none;
    }
    
    .reviews__details {
        flex-direction: row;
        gap: 10px;
    }
    
    .reviews__detail {
        width: auto;
        font-size: 14px;
    }

    .reviews__content {
        padding: 0;
        gap: 15px;
    }

    .pricing {
        padding: 40px 0 60px 0px;
    }

    .podcasts__title {
        margin: 0;
    }

    .podcasts__card {
        border-radius: 20px;
    }

    .podcasts__play-icon {
        width: 60%;
        height: 60%;
    }

}