@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #ff5722; /* Deep Orange */
    --secondary-color: #ff9800; /* Orange */
    --accent-color: #e64a19; /* Deep Orange Darker */
    --light-bg: #fff3e0; /* Orange 50 */
    --dark-text: #3e2723; /* Brown 900 */
    
    /* Базовые размеры шрифтов */
    --font-size-base: 1rem;
    --font-size-lg: 1.2rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3.5rem;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
    padding-top: 76px; /* Добавляем отступ для фиксированного меню */
    width: 100%;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.hero-section {
    background: linear-gradient(120deg, #ff9800 0%, #ff5722 50%, #e64a19 100%);
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
    margin-top: -76px; /* Компенсируем padding-top у body */
    padding-top: calc(7rem + 76px);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.hero-section::before {
    content: "";
    position: absolute;
    bottom: -5rem;
    left: 0;
    right: 0;
    height: 10rem;
    background-color: var(--light-bg);
    clip-path: ellipse(70% 50% at 50% 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-left: 15px;
    padding-right: 15px;
}

.hero-title {
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    color: white;
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.tourist-section {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    margin-top: -5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 3;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.tourist-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: var(--primary-color);
}

.business-section {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.business-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: var(--secondary-color);
}

/* Общие стили для заголовков секций */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 0.25rem;
    background-color: var(--primary-color);
    border-radius: 1rem;
}

.title-container {
    margin-bottom: 3rem;
    text-align: center;
}

.list-item {
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.list-item:hover {
    transform: translateX(5px);
}

.list-icon {
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.business-list .list-icon {
    color: var(--secondary-color);
}

.why-important {
    background: rgba(255, 87, 34, 0.1);
    padding: 2rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
}

.business-why-important {
    background: rgba(255, 152, 0, 0.1);
    padding: 2rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
}

.why-important h3, .business-why-important h3 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.why-important ul, .business-why-important ul {
    padding-left: 1.5rem;
}

.why-important li, .business-why-important li {
    margin-bottom: 0.75rem;
    position: relative;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.shape-1 {
    top: -3rem;
    right: -3rem;
    width: 15rem;
    height: 15rem;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-color: var(--primary-color);
    animation: morph 8s ease-in-out infinite;
}

.shape-2 {
    bottom: -5rem;
    left: -5rem;
    width: 20rem;
    height: 20rem;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background-color: var(--accent-color);
    animation: morph 8s ease-in-out infinite alternate;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    100% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.btn-custom {
    background-color: var(--primary-color);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 4px 6px rgba(255, 87, 34, 0.3);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(255, 87, 34, 0.4);
    background-color: #f4511e;
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 6px rgba(255, 152, 0, 0.3);
}

.btn-secondary-custom:hover {
    box-shadow: 0 7px 14px rgba(255, 152, 0, 0.4);
    background-color: #fb8c00;
}

/* Медиа-запросы для больших устройств (992px и выше) */
@media (min-width: 992px) {
    /* Стили для десктопов */
}

/* Медиа-запросы для средних устройств (от 768px до 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    /* Стили для планшетов */
}

/* Медиа-запросы для малых устройств (от 576px до 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    /* Стили для малых планшетов */
}

/* Медиа-запросы для мобильных устройств (до 992px) */
@media (max-width: 992px) {
    /* Базовые размеры шрифтов для мобильной версии */
    :root {
        --font-size-base: 1.1rem;
        --font-size-lg: 1.2rem;
        --font-size-xl: 1.3rem;
        --font-size-2xl: 1.6rem;
        --font-size-3xl: 2rem;
        --font-size-4xl: 2.5rem;
        --font-size-5xl: 3.5rem;
    }
    
    /* Унификация размера текста во всех блоках */
    p, .concept-text, .benefit-text, .step-text, 
    .advantage-list li, .concept-list li, 
    .list-item, .why-important li, .business-why-important li,
    .footer-contact-list li, .footer-nav-list li a,
    .footer-description, .ecosystem-text, .concept-highlight {
        font-size: 1.2rem !important;
        line-height: 1.6;
    }
    
    /* Унификация размера заголовков */
    .step-title, .benefit-title, .advantage-title, 
    .concept-card h3, .footer-title {
        font-size: 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    /* Размер кнопок */
    .btn-custom, .btn-secondary-custom {
        font-size: 1.2rem !important;
    }
    
    /* Переопределение конкретных стилей */
    .navbar-dark .navbar-nav .nav-link {
        font-size: 1.2rem;
    }
    
    .hero-text {
        font-size: 1.2rem !important;
    }
    
    .copyright, .privacy-links a {
        font-size: 1rem;
    }
    
    body {
        padding-top: 70px;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    h1, .h1 {
        font-size: var(--font-size-3xl);
    }
    
    h2, .h2 {
        font-size: var(--font-size-2xl);
    }
    
    h3, .h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    h4, .h4 {
        font-size: var(--font-size-lg);
    }
    
    .hero-section {
        padding: 5rem 0 6rem;
        padding-top: calc(5rem + 76px);
    }
    

    .step-title,
    .benefit-title,
    .advantage-title,
    .concept-card h3,
    .footer-title {
        font-size: var(--font-size-2xl);
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .hero-title{
        font-size: var(--font-size-5xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-3xl);
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: var(--font-size-lg);
        line-height: 1.6;
        margin-bottom: 3rem;
    }
    
    .tourist-section, 
    .business-section,
    .how-it-works-section,
    .benefits-section,
    .key-advantages-section {
        padding: 40px 0;
        margin-top: 3rem;
        border-radius: 2rem;
    }
    
    .tourist-section {
        margin-top: -3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        padding: 0 5px;
        font-weight: 700;
        line-height: 1.4;
    }
    
    .section-title::after {
        width: 100px;
        height: 0.4rem;
        bottom: -1rem;
    }
    
    .list-item,
    .why-important li, 
    .business-why-important li,
    .advantage-list li,
    .concept-list li,
    .footer-contact-list li,
    .footer-nav-list li a {
        font-size: var(--font-size-lg);
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .list-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .btn-custom, .btn-secondary-custom {
        width: 80%;
        margin-bottom: 1.2rem;
        padding: 1rem 1.5rem;
        font-size: var(--font-size-xl);
        border-radius: 2rem;
    }
    
    .why-important, 
    .business-why-important {
        margin-top: 3rem;
        padding: 1.2rem;
        border-radius: 1.5rem;
    }
    
    .why-important ul, 
    .business-why-important ul,
    .advantage-list {
        padding-left: 15px;
    }
    
    .step-card,
    .benefit-card,
    .advantage-card {
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 1.5rem;
    }
    
    .step-title,
    .benefit-title,
    .advantage-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .step-text,
    .benefit-text {
        font-size: 1.4rem;
        line-height: 1.6;
    }
    
    .step-icon,
    .benefit-icon,
    .advantage-icon {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: -25px;
    }
    
    /* Улучшение контрастности и читаемости */
    strong {
        font-weight: 700;
    }
    
    /* Увеличение пространства между элементами */
    .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    
    .row > [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 1rem;
        border-radius: 0 0 1rem 1rem;
        max-width: 100%;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-dark .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    /* Увеличиваем ширину карточек в секции "Как это работает" */
    .how-it-works-section .col-lg-3,
    .how-it-works-section .col-md-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .step-card {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    
    /* Увеличиваем отступы внутри карточек для лучшей читаемости */
    .step-card {
        padding: 20px;
        border-radius: 1.5rem;
    }
    
    /* Увеличиваем размер иконок для лучшей видимости */
    .step-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    /* Увеличиваем размер номера шага */
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    /* Делаем все колонки в секциях на всю ширину экрана */
    .how-it-works-section .row > [class*="col-"],
    .benefits-section .row > [class*="col-"],
    .key-advantages-section .row > [class*="col-"],
    .concept-section .row > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    /* Делаем все карточки на всю ширину экрана */
    .step-card,
    .benefit-card,
    .advantage-card,
    .concept-card {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
    
    /* Уменьшаем отступы контейнеров для увеличения полезной площади */
    .how-it-works-section .container,
    .benefits-section .container,
    .key-advantages-section .container,
    .concept-section .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Уменьшаем отступы в строках */
    .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    
    /* Стили для списков в секции концепции */
    .concept-list li {
        margin-bottom: 1.2rem;
    }
    
    .concept-list li:before {
        font-size: 1.8rem;
    }
    
    /* Стили для мобильных устройств в секции "Как это работает" */
    .step-card,
    .benefit-card,
    .advantage-card {
        margin-bottom: 3rem;
        padding: 0.2rem;
        border-radius: 1.5rem;
        border-top-width: 6px;
    }
    
    .step-title,
    .benefit-title,
    .advantage-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    
    .step-text,
    .benefit-text {
        font-size: 1.6rem;
        line-height: 1.6;
        font-weight: 500;
    }
    
    .step-icon,
    .benefit-icon,
    .advantage-icon {
        font-size: 4.5rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        top: -30px;
    }
}

/* Медиа-запросы для очень маленьких устройств (до 576px) */
@media (max-width: 576px) {
    /* Для очень маленьких экранов немного уменьшаем */
    p, .concept-text, .benefit-text, .step-text, 
    .advantage-list li, .concept-list li, 
    .list-item, .why-important li, .business-why-important li,
    .footer-contact-list li, .footer-nav-list li a,
    .footer-description, .ecosystem-text, .concept-highlight {
        font-size: 1.1rem !important;
    }
    
    .step-title, .benefit-title, .advantage-title, 
    .concept-card h3, .footer-title {
        font-size: 1.4rem !important;
    }
    
    .btn-custom, .btn-secondary-custom {
        font-size: 1.1rem !important;
    }
    
    .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    
    .hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .step-title,
    .benefit-title,
    .advantage-title,
    .concept-card h3,
    .footer-title {
        font-size: var(--font-size-2xl);
        margin-bottom: 1.2rem;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-xl);
    }
    
    .hero-text {
        font-size: var(--font-size-lg);
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    h3, .h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .list-item {
        font-size: 1.3rem;
        padding-left: 3rem;
    }
    
    .why-important li, 
    .business-why-important li,
    .advantage-list li {
        font-size: 1.3rem;
    }
    
    .step-text,
    .benefit-text {
        font-size: 1.3rem;
    }
    
    .btn-custom, .btn-secondary-custom {
        font-size: 1.5rem;
    }
    
    /* Дополнительные стили для очень маленьких экранов */
    .step-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    /* Еще меньшие отступы для очень маленьких экранов */
    .how-it-works-section .container,
    .benefits-section .container,
    .key-advantages-section .container,
    .concept-section .container {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    .row > [class*="col-"] {
        padding-left: 3px;
        padding-right: 3px;
    }
}

/* Добавьте эти стили в конец вашего существующего CSS-файла */

/* Секция "Как это работает" */
.how-it-works-section {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: var(--accent-color);
}

.step-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.step-text {
    color: var(--dark-text);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Секция "Почему компаниям выгодно подключиться к системе" */
.benefits-section {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: var(--primary-color);
}

.benefit-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--secondary-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.benefit-text {
    color: var(--dark-text);
    font-size: 0.95rem;
}

/* Секция "Ключевые преимущества системы" */
.key-advantages-section {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.key-advantages-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: var(--secondary-color);
}

.advantage-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-align: center;
}

.advantage-list {
    padding-left: 1.5rem;
}

.advantage-list li {
    margin-bottom: 0.75rem;
    position: relative;
}

/* Улучшение читаемости карточек в секции "Как это работает" */
.step-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.step-text {
    color: var(--dark-text);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Улучшение для мобильных устройств */
@media (max-width: 992px) {
    .step-card,
    .benefit-card,
    .advantage-card {
        margin-bottom: 3rem;
        padding: 1.2rem;
        border-radius: 1.5rem;
        border-top-width: 6px;
    }
    
    .step-title,
    .benefit-title,
    .advantage-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    
    .step-text,
    .benefit-text {
        font-size: 1.6rem;
        line-height: 1.6;
        font-weight: 500;
    }
    
    .step-icon,
    .benefit-icon,
    .advantage-icon {
        font-size: 4.5rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        top: -30px;
        font-weight: 700;
    }
    
    /* Улучшение контрастности */
    .step-card {
        background-color: #fff;
        border-top: 6px solid var(--primary-color);
    }
    
    .benefit-card {
        background-color: #fff;
        border-top: 6px solid var(--secondary-color);
    }
    
    .advantage-card {
        background-color: #fff;
        border-top: 6px solid var(--accent-color);
    }
    
    /* Улучшение читаемости списков в карточках */
    .advantage-list li {
        margin-bottom: 1.8rem;
        line-height: 1.6;
        font-size: 1.6rem;
        font-weight: 500;
    }
}

@media (max-width: 576px) {
    .step-text,
    .benefit-text {
        font-size: 1.5rem;
    }
    
    .step-title,
    .benefit-title,
    .advantage-title {
        font-size: 1.8rem;
    }
    
    .advantage-list li {
        font-size: 1.5rem;
    }
}

/* Добавьте эти стили в ваш CSS-файл */

/* Секция общей концепции */
.concept-section {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    margin: 4rem 0;
    margin-top: -3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.concept-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: var(--primary-color);
}

.concept-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.concept-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.concept-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
}

.concept-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.concept-list li {
    transition: transform 0.3s ease;
}

.concept-list li:hover {
    transform: translateX(5px);
}

.concept-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.concept-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.concept-image img {
    transition: transform 0.5s ease;
    width: 100%;
}

.concept-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.concept-overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.concept-overlay-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

.concept-image:hover img {
    transform: scale(1.05);
}

.concept-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.concept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.concept-card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.concept-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-align: center;
}

.concept-card p {
    font-size: 1rem;
    line-height: 1.5;
}

.step-title {
    font-size: 1.5rem;
}
.step-text {
    font-size: 1.2rem;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 992px) {
    .concept-section {
        padding: 3rem 2rem;
        margin-top: -2rem;
    }
    
    .concept-text {
        font-size: 1.6rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .concept-list li {
        margin-bottom: 1.2rem;
    }
    
    .concept-list li:before {
        font-size: 1.8rem;
    }
    
    .concept-image-container {
        margin-bottom: 2rem;
    }
    
    .concept-overlay {
        padding: 2.5rem;
    }
    
    .concept-overlay-content h3 {
        font-size: 2rem;
    }
    
    .concept-overlay-content p {
        font-size: 1.5rem;
    }
    
    .concept-card {
        padding: 3rem 2rem;
        margin-bottom: 2rem;
        border-top-width: 6px;
    }
    
    .concept-card-icon {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    
    .concept-card h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .concept-card p {
        font-size: 1.6rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .concept-text {
        font-size: 1.5rem;
    }
    
    .concept-list li {
        font-size: 1.5rem;
    }
    
    .concept-overlay-content h3 {
        font-size: 1.8rem;
    }
    
    .concept-overlay-content p {
        font-size: 1.4rem;
    }
    
    .concept-card h3 {
        font-size: 1.8rem;
    }
    
    .concept-card p {
        font-size: 1.5rem;
    }
}

/* Стили для навигационного меню */
.navbar {
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    padding: 1rem 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.navbar.scrolled {
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0.7rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: white;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Стили для футера */
.footer-section {
    background-color: var(--dark-text);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-contact-list {
    list-style: none;
    padding-left: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.footer-nav-list {
    list-style: none;
    padding-left: 0;
}

.footer-nav-list li {
    margin-bottom: 0.8rem;
}

.footer-nav-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.privacy-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-links a:hover {
    color: var(--primary-color);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 992px) {
    .navbar-brand {
        font-size: 1.8rem;
    }

    .container {
        padding-left: 0px;
        padding-right: 0px;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        font-size: 1.6rem;
        padding: 1rem 0;
    }
    
    .footer-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-description {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .footer-contact-list li {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-contact-list li i {
        font-size: 1.8rem;
    }
    
    .footer-nav-list li {
        margin-bottom: 1.2rem;
    }
    
    .footer-nav-list li a {
        font-size: 1.5rem;
    }
    
    .copyright, .privacy-links a {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.6rem;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .footer-description {
        font-size: 1.4rem;
    }
    
    .footer-contact-list li, 
    .footer-nav-list li a {
        font-size: 1.4rem;
    }
    
    .copyright, .privacy-links a {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .privacy-links {
        text-align: center !important;
        margin-top: 1rem;
    }
}

/* Исправление для очень маленьких экранов */
@media (max-width: 360px) {
    :root {
        --font-size-base: 0.8rem;
        --font-size-lg: 0.95rem;
        --font-size-xl: 1.1rem;
        --font-size-2xl: 1.3rem;
        --font-size-3xl: 1.6rem;
    }
    
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .concept-card, 
    .benefit-card, 
    .step-card, 
    .advantage-card,
    .why-important,
    .business-why-important {
        padding: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Оптимизация анимации для мобильных устройств */
@media (prefers-reduced-motion: reduce) {
    .floating-shape {
        animation: none;
    }
    
    .step-card:hover,
    .benefit-card:hover,
    .advantage-card:hover,
    .concept-card:hover,
    .btn-custom:hover,
    .btn-secondary-custom:hover,
    .list-item:hover,
    .social-link:hover {
        transform: none;
    }
}

/* Дополнительные стили для исправления мобильного меню */
@media (max-width: 992px) {
    body {
        padding-top: 70px;
    }
    
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 1rem;
        border-radius: 0 0 1rem 1rem;
    }
}

/* Стили для улучшенного оформления секции Концепция */
.concept-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.concept-highlight {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--primary-color);
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 5px solid var(--primary-color);
    border-right: 5px solid var(--primary-color);
}

.ecosystem-banner {
    background: linear-gradient(120deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: 1.5rem;
    color: white;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ecosystem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ecosystem-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.ecosystem-text .highlight {
    font-weight: 700;
    text-decoration: underline;
}

.goals-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.goals-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    padding: 0 2rem;
    background-color: white;
    position: relative;
    z-index: 2;
}

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

@media (max-width: 992px) {
    .concept-highlight {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .ecosystem-banner {
        padding: 1.5rem;
    }
    
    .ecosystem-icon {
        font-size: 2.5rem;
    }
    
    .ecosystem-text {
        font-size: 1.1rem;
    }
    
    .goals-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .concept-highlight {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .ecosystem-banner {
        padding: 1rem;
    }
    
    .ecosystem-icon {
        font-size: 2rem;
    }
    
    .ecosystem-text {
        font-size: 1rem;
    }
    
    .goals-title {
        font-size: 1.6rem;
        padding: 0 1rem;
    }
}