/*section-hero*/
.hero-section {
    /*width: 100%;*/
    /*min-height: calc(100vh - 89px);*/
    width: 100%;
    min-height: 100vh;
    background-image: url('/public/static/img/project_mumie/bg/bg_fon.webp');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    background-color: #233b4969;
    width: 100%;
    height: 100%;
    position: absolute;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 100px 20px;
}

.hero-inner {
    max-width: 80%;
    position: relative;
}


.hero-title {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

/* Подзаголовок */
.hero-description {
    font-size: 14px;
    color: #ececec;
    letter-spacing: 3px;
    font-weight: 600;
    line-height: 1.6;
    width: 90%;
}


.hero-action-block {
    margin-top: 40px;
    padding-left: 20px;
}

.circle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 50%; */
    text-decoration: none;
    /* transition: background-color 0.3s ease, transform 0.3s ease;
    filter: saturate(161%) drop-shadow();
    filter: drop-shadow(4px 4px 0px #000); */
    width: 100px;
    height: 100px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 50% 0% 50% 50%;
    transform: rotate(-45deg);
    filter: drop-shadow(5px 3px 0px #1d1d1d);
    background-color: rgba(183, 238, 255, 0.66);
    content: '';
    position: relative;
    top: 0px;
    left: 0px;
    width: 90px;
    height: 90px;
    border-radius: 0% 50% 50% 50%;
    transform: rotate(45deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: inset 1px 5px 4px -1px rgba(255, 255, 255, 1), inset -5px -2px 6px rgba(0, 0, 0, 0.35), inset 2px 9px 8px rgba(255, 255, 255, 0.5);
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%); */
    background: linear-gradient(135deg, rgba(119, 223, 255, 0.8) 0%, rgba(57, 204, 238, 0.2) 100%);
    background: linear-gradient(135deg, rgba(119, 223, 255, 0.21) 0%, rgba(57, 204, 238, 0) 100%);
    background: linear-gradient(135deg, rgba(119, 223, 255, 0.21) 0%, rgba(57, 187, 238, 0.12) 100%);
        
}

.circle-button.black {
    background-color: rgba(12, 12, 12, 0.66);
}

.circle-button:hover {
    background-color: rgba(54, 54, 54, 0.658);
    transform: scale(1.04);
}

.circle-button-text {
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
}

@media (min-width: 994px) {
    .title_icon_line {
        display: none;
    }
}

@media (max-width: 1050px) {
    .nav-list li .nav-link.line {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 50px;
    }

    .side-panel {
        position: fixed;
        top: 97%;
        left: 0%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.89);
    }

    /* .side-btn{transform: rotate(90deg);} */
    .side-icons {
        justify-content: space-between;
        flex-direction: unset;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-list {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-container {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .circle-button {
        width: 110px;
        height: 110px;
    }
}

/*section ABOUT*/
/* Контейнер секции */
.about-section {
    width: 100%;
    background-color: #ffffff;
    padding: 120px 0;
    /* Большие отступы сверху и снизу как в оригинале */
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    /* Расстояние между текстом и картинкой */
}

/* Левая текстовая колонка */
.about-content {
    flex: 1;
    max-width: 550px;
}

/* Маленький надзаголовок */
.about-tagline {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #999999;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Главный широкий заголовок блока */
.about-title {
    font-size: 42px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.2;
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 45px;
}

/* Абзацы текста */
.about-paragraph {
    font-size: 14px;
    color: #777777;
    line-height: 1.7;
    font-weight: 400;
}

/* Первый абзац чуть темнее и контрастнее */
.about-paragraph.highlight {
    color: #222222;
    font-weight: 500;
}

/* Ссылка-контакт внизу */
.about-action {
    display: inline-block;
}

.about-link {
    font-size: 11px;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 2px solid #111111;
    padding-bottom: 6px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.about-link:hover {
    color: #777777;
    border-color: #777777;
}

/* Правая колонка с фото */
.about-media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-image-box {
    width: 100%;
    max-width: 376px;  
    /*aspect-ratio: 1 / 1;  */
    overflow: hidden;
    border-radius: 12px;
    background-color: #f5f5f5;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(43%);
    transition: transform 0.5s ease;
}

/* Легкий интерактив при наведении на картинку */
.about-image-box:hover .about-img {
    transform: scale(1.03);
}

/* Адаптивность для планшетов и мобильных телефонов */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column-reverse;
        /* На мобильных картинка будет над текстом или наоборот */
        gap: 50px;
        text-align: left;
    }

    .about-content,
    .about-image-box {
        max-width: 100%;
    }

    .about-section {
        padding: 70px 0;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
}

/*section photo collag*/
/* Основные стили секции */
.portfolio-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0 140px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Центрированный заголовок */
.portfolio-header {
    text-align: center;
    margin-bottom: 120px;
}

.portfolio-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #999999;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.portfolio-title {
    font-size: 48px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Контейнер для коллажа */
.portfolio-collage {
    position: relative;
    width: 100%;
    height: 650px;
    /* Фиксированная высота для точного позиционирования карт */
    margin-bottom: 60px;
}

/* Общие стили для всех карточек */
.portfolio-card {
    position: absolute;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), z-index 0.3s ease;
}

.card-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    /* Закругленные углы как на макете */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    /* Все фото делаем строго черно-белыми */
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* Интерактив при наведении на любую карточку */
.portfolio-card:hover {
    z-index: 10;
    /* Карточка выходит на передний план */
}

.portfolio-card:hover .portfolio-img {
    filter: grayscale(0%);
    /* При наведении возвращается цвет (опционально, можно убрать) */
    transform: scale(1.05);
}

/* --- Точечное позиционирование и наклоны элементов --- */

/* 1. Левая нижняя (горизонтальная) */
.card-left-bottom {
    width: 620px;
    height: 320px;
    left: -5%;
    bottom: 5%;
    transform: rotate(-8deg);
}

.card-left-bottom:hover {
    transform: rotate(-4deg) scale(1.03);
}

/* 2. Центральная верхняя (вертикальная, главная) */
.card-center-top {
    width: 380px;
    height: 380px;
    left: 22%;
    top: -10%;
    transform: rotate(-4deg);
    z-index: 3;
    /* Изначально чуть выше левой */
}

.card-center-top:hover {
    transform: rotate(-1deg) scale(1.03);
}

/* 3. Правая верхняя (горизонтальная) */
.card-right-top {
    width: 440px;
    height: 340px;
    right: 8%;
    top: 10%;
    transform: rotate(8deg);
}

.card-right-top:hover {
    transform: rotate(4deg) scale(1.03);
}

/* 4. Центральная нижняя (вертикальная) */
.card-center-bottom {
    width: 360px;
    height: 360px;
    left: 45%;
    bottom: -10%;
    transform: rotate(5deg);
    z-index: 4;
    /* Перекрывает центральную верхнюю и правую */
}

.card-center-bottom:hover {
    transform: rotate(1deg) scale(1.03);
}

/* Декоративные кляксы на заднем фоне */
.bg-splatter {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    /* Чтобы не мешали водить мышкой по картам */
}

.splatter-left {
    width: 250px;
    height: 250px;
    left: 15%;
    top: 30%;
    
    /* Сюда можно поставить любую векторную кляксу */
}

.splatter-right {
    width: 200px;
    height: 200px;
    right: 20%;
    bottom: 20%;
   
}

/* Нижняя кнопка под коллажем */
.portfolio-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-portfolio {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 2px solid #111111;
    padding-bottom: 6px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.btn-portfolio:hover {
    color: #777777;
    border-color: #777777;
}

/* Адаптивность для мобильных экранов (строим карточки в обычный ровный ряд) */
@media (max-width: 992px) {
    .portfolio-collage {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .portfolio-card {
        position: relative;
        width: 100% !important;
        height: auto !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        aspect-ratio: 4 / 3;
    }

    .card-center-top,
    .card-center-bottom {
        aspect-ratio: 3 / 4;
    }

    .portfolio-card:hover {
        transform: scale(1.02) !important;
    }

    .bg-splatter {
        display: none;
    }
}

@media (max-width: 576px) {
    .portfolio-collage {
        grid-template-columns: 1fr;
    }

    .portfolio-title {
        font-size: 36px;
    }
}

/*section services*/
/* Базовые параметры секции */
.services-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка блока (Флексбокс для выравнивания в одну строку) */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
    gap: 50px;
}

.services-header-left {
    flex: 1;
}

.services-header-right {
    flex: 1;
    max-width: 550px;
}

.services-tagline {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #999999;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-main-title {

    font-size: 44px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.services-intro-text {
    font-size: 14px;
    color: #777777;
    line-height: 1.7;
    font-weight: 400;
}

/* Сетка карточек */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 колонки в ряд */
    gap: 24px;
    margin-bottom: 50px;
}

/* Стили самой карточки */
.service-card {
    background-color: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    padding: 60px 30px;
    position: relative;
    /* Для позиционирования цифры внутри */
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Мягкая тень и легкий подъем карточки при наведении */
.service-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-card-icon {
    color: #111111;
    margin-bottom: 30px;
}

.service-card-icon img {
    width: 50px;
    height: 50px;
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.service-card-desc {
    font-size: 13px;
    color: #777777;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

/* Огромный номер на фоне карточки */
.service-card-number {
    color: #f7f7f7;
    z-index: 1;
    user-select: none;
    transition: color 0.3s ease;
    font-family: 'Urbanist', sans-serif;
    font-size: 120px;
    line-height: 90px;
    font-weight: 900;
    position: absolute;
    bottom: 0px;
    right: 40px;
    border: none;
    background: linear-gradient(180deg, #ececec 0%, #ecfafd 90%);
    background-clip: border-box;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 10px;
}

/* Эффект: при наведении на карточку, цифра слегка темнеет/акцентируется */
.service-card:hover .service-card-number {
    color: #eeeeee;
}

/* Блок пагинации (Точки слайдера) */
.services-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #dddddd;
    cursor: pointer;
    transition: all 0.25s ease;
}

.dot.active,
.dot:hover {
    background-color: #111111;
    transform: scale(1.2);
}

/* --- Адаптивность для мобильных девайсов --- */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2х2 на планшетах */
    }
}

@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        /* 1 колонка на смартфонах */
        gap: 20px;
    }

    .services-main-title {
        font-size: 34px;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/*section slider*/
/* Главный контейнер блока */
.split-image-section {
    width: 100%;
    height: 600px;
    /* Высота блока как на вашем скриншоте */
    background-color: #000000;
    overflow: hidden;
}

/* Флекс-сетка для 4 частей */
.split-container {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Базовое состояние каждого сектора (изначально они делят экран поровну — по 25%) */
.split-sector {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* Та самая тонкая белая черта-разделитель из вашего описания */
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    /* Очень важный параметр: задает плавность анимации при наведении */
    /* transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1); */
}

.split-sector:hover {
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Убираем черту у самого последнего сектора справа */
.split-sector:last-child {
    border-right: none;
}

/* Фоновая картинка внутри сектора */
.sector-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Делаем картинки черно-белыми по умолчанию в стиле Gloom */
    filter: grayscale(100%) brightness(0.6);
    /* Скорость изменения яркости картинки */
    transition: filter 0.5s ease, transform 0.5s ease;
}

/* Контент с текстом внизу */
.sector-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    z-index: 2;
    pointer-events: none;
    /* Чтобы текст не мешал считывать наведение мыши */
}

/* Стиль надписей */
.sector-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.9s ease;
}

/* ---РАБОТА ПРИ НАВЕДЕНИИ (ЭФФЕКТ СЛАЙДЕРА)--- */

/* Когда мы наводим мышку на общую область, а затем конкретно на один сектор */
.split-container:hover .split-sector:hover {
    flex: 5;
    /* Активный сектор забирает себе почти всю ширину (раскрывается) */
}

/* Картинка в активном секторе становится ярче и четче */
.split-sector:hover .sector-bg {
    filter: grayscale(100%) brightness(0.9);
    filter: none;

}

/* Текст активного сектора становится полностью белым */
.split-sector:hover .sector-title {
    opacity: 1;
}

/* Адаптив: на телефонах вертикальные полосы неудобны, поэтому перестраиваем их горизонтально */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }

    .split-sector {
        width: 100%;
        height: 180px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .split-container:hover .split-sector:hover {
        flex: 1;
        /* Отключаем сильное расширение на мобилках для удобства скролла */
    }
}

/*section price*/
/* Основные параметры секции */
.price-plan-section {
    width: 100%;
    background-color: #ffffff;
    padding: 120px 0;
}

.price-plan-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовки */
.price-plan-header {
    text-align: center;
    margin-bottom: 90px;
}

.price-plan-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #999999;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.price-plan-title {

    font-size: 46px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Трехколоночная сетка */
.price-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: flex-start;
    /* Карточки выравниваются по верхнему краю */
}

/* Общие стили для карточек */
.price-plan-card {
    background-color: #f7f7f7;
    /* Тот самый мягкий серый фон */
    border-radius: 20px;
    /* Скругление углов */
    padding: 60px 45px 50px 45px;
    position: relative;
    overflow: hidden;
    /* Чтобы обрезать выходящие за край фоновые буквы */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

/* Эффект наведения */
.price-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

/* Контент внутри карточки (поверх фонового слова) */
.card-inner-content {
    position: relative;
    z-index: 5;
}

.card-meta {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #999999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-main-heading {
    font-size: 26px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

/* Список преимуществ */
.card-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 45px;
}

.card-features-list li {
    font-size: 14px;
    color: #666666;
    position: relative;
    padding-left: 20px;
}

/* Маркеры в виде мелких черных точек */
.card-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #111111;
    font-size: 16px;
    line-height: 0.9;
}

/* Позиционирование кнопки */
.card-action-area {
    display: flex;
    justify-content: flex-start;
}

/* Круглая серая кнопка */
.price-round-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 105px;
    background-color: #e5e5e5;
    color: #111111;
    text-decoration: none;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
    padding: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.price-round-btn:hover {
    background-color: #111111;
    color: #ffffff;
    transform: scale(1.05);
}

/* --- ОСОБЕННОСТИ ЦЕНТРАЛЬНОЙ КАРТОЧКИ (FEATURED) --- */
.featured-card {
    margin-top: -15px;
    /* Сдвигаем карточку чуть выше остальных */
    z-index: 10;
}

/* Круглый бейдж с ценой */
.price-badge-circle {
    position: absolute;
    top: -10px;
    right: -7px;
    /* Смещение на правый край */
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    color: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    z-index: 20;
}

.price-badge-circle span {
    font-size: 14px;
    font-weight: 600;
    vertical-align: super;
    margin-right: 1px;
}

/* --- ВОДЯНОЙ ЗНАК (ОГРОМНЫЙ ТЕКСТ ВНИЗУ) --- */
.card-watermark-text {
    position: absolute;
    bottom: -15px;
    left: 20px;

    font-size: 56px;
    font-weight: 800;
    color: #ececec;
    /* Очень легкий серый оттенок, еле заметный */
    letter-spacing: 2px;
    line-height: 1;
    z-index: 1;
    user-select: none;
    text-transform: uppercase;
}

/* Адаптив под планшеты и мобилки */
@media (max-width: 992px) {
    .price-plan-grid {
        grid-template-columns: 1fr;
        /* Колонки выстраиваются вертикально */
        gap: 40px;
    }

    .featured-card {
        margin-top: 0;
        /* Сбрасываем сдвиг на мобильных */
    }

   
}

@media (max-width: 576px) {
    .price-plan-title {
        font-size: 34px;
    }

    .price-plan-card {
        padding: 40px 25px 30px 25px;
    }
}

/*sectiton process*/
/* Основные параметры секции */
.process-section {
    width: 100%;
    background-color: #ffffff;
    padding: 120px 0;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовки */
.process-header {
    text-align: center;
    margin-bottom: 90px;
}

.process-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #999999;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.process-title {

    font-size: 46px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Сетка для 3 шагов */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Общие стили карточки шага */
.process-card {
    background-color: #f7f7f7;
    /* Тот самый мягкий серый фон */
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    /* Для позиционирования стрелки */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.process-card-inner {
    position: relative;
    z-index: 2;
}

/* Огромная полупрозрачная цифра вверху */
.process-number {
    display: block;

    font-size: 100px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    user-select: none;
    background-image: linear-gradient(180deg, #d8d4d4 0%, #eafbff 90%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Заголовок этапа */
.process-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.process-card-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.process-arrow {
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background-color: #5db5c9a3;
    color: #fcfcfc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-arrow {
        right: auto;
        left: 45%;
        transform: translateX(-50%);
        bottom: -39px;
        top: auto;
        transform: rotate(90deg);
    }

    
}

@media (max-width: 576px) {
    .process-title {
        font-size: 34px;
    }

    .process-card {
        padding: 40px 25px;
    }

    .process-number {
        font-size: 80px;
    }
}

/*section paralax*/
/* --- 1. СЕКЦИЯ С ФИКСИРОВАННЫМ ФОНОМ (ПАРАЛЛАКС) --- */
.testimonial-parallax-section {
    width: 100%;
    min-height: 550px;
    background-image: url('/public/static/img/project_mumie/photo_7_1.webp');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.testimonial-parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(76, 117, 121, 0.6);
    z-index: 1;
}

.parallax-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 50px;
}

.parallax-cta {
    flex: 1;
    max-width: 500px;
}

.parallax-cta-title {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 35px;
}

.parallax-round-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 115px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
}

.parallax-round-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.testimonial-card {
    flex: 1;
    max-width: 520px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.testimonial-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 35px;
    position: relative;
    z-index: 3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 3;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #eee;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 2px;
}

.author-role {
    font-size: 12px;
    color: #999999;
}

.quote-watermark {
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-size: 150px;
    font-family: Georgia, serif;
    color: #f0f0f0;
    line-height: 1;
    z-index: 1;
    user-select: none;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 25px 0;
}

.ticker-track {
    display: flex;
    width: max-content;
    gap: 60px;
    animation: scrollTicker 25s linear infinite;
}

.ticker-track span {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    letter-spacing: 1px;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .parallax-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .testimonial-card {
        max-width: 100%;
        width: 100%;
    }

    /* На iOS/мобильных устройствах fixed-background часто багует, меняем на scroll */
    .testimonial-parallax-section {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .parallax-cta-title {
        font-size: 26px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .ticker-wrapper {
        padding: 15px 0;
    }
}