
/*====== Базовые настройки ====== */
:root {
    --color-primary: #0d6efd;
    --color-primary-hover: #0b5ed7;
    --color-bg: #f9fafb;
    --color-text: #1f2937;
    --color-muted: #6b7280;
    --color-white: #ffffff;
    --radius: 0.75rem;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
}

/* ====== Контейнер ====== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ====== Заголовки ====== */
h1, h2 {
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 32px;
    margin: 5px;

}

h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
}

/* ====== Текст ====== */
p {
    margin: 14px 0;
    color: var(--color-text);
    font-size: 16px;
}

ul {
    padding-left: 20px;
    margin: 14px 0;
}

li {
    margin-bottom: 10px;
}

/* ====== Карточки ====== */
.card-hover {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* ====== Блок выделения ====== */
.highlight {
    background: #eef6ff;
    padding: 16px 20px;
    border-left: 5px solid var(--color-primary);
    margin-top: 24px;
    border-radius: var(--radius);
    font-weight: 500;
}

/* ====== Статистика ====== */
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 24px 0;
}

.stat {
    flex: 1 1 220px;
    background: #f3f4f6;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e5e7eb;
}

.stat:hover {
    background: #e5f0ff;
    transform: translateY(-3px);
}

.stat strong {
    display: block;
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 6px;
}

/* ====== Кнопки ====== */
.btn-primary {
    display: inline-block;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius);
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary:disabled {
    background-color: #9ca3af;
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ====== Таймлайн ====== */
.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #e5e7eb;
    z-index: 0;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 18%;
    position: relative;
    z-index: 1;
}

.timeline-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-primary);
    font-size: 20px;
    font-weight: bold;
}

.timeline-step:hover .timeline-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.timeline-title {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--color-text);
    font-size: 15px;
}

/* ====== Адаптив ====== */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .timeline-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-container::before {
        left: 28px;
        top: 8%;
        bottom: 8%;
        width: 2px;
        height: auto;
    }

    .timeline-step {
        flex-direction: row;
        text-align: left;
        width: 100%;
        margin-bottom: 2rem;
    }

    .timeline-icon {
        margin-right: 1.5rem;
        flex-shrink: 0;
    }

    .timeline-title {
        margin-top: 0;
    }
}

.nav-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

/* hero без белой подложки */
.hero-section {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.1)
    ),
    url('https://images.unsplash.com/photo-1617469723732-4e78b135b9b5?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: #fff; /* текст поверх картинки */
}

/* сам контейнер внутри страницы */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    /* убираем белый фон, если не нужен для hero */
    background: transparent;
}

/* если белая подложка нужна ТОЛЬКО для текста "О компании" */
.section {
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px 20px;
    margin-top: 40px;
}

.breadcrumbs {
    display: inline-flex; /* или display: flex */
    align-items: center; /* Это свойство выровняет иконку и текст по центру */
     gap: 5px;
    /*display: flex;*/
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 16px;
}
.breadcrumbs__item {
    margin-right: 10px;
}
.breadcrumbs__item::after {
    content: '/';
    margin-left: 10px;
    color: #6c757d;
}
.breadcrumbs__item:last-child::after {
    content: '';
}
.breadcrumbs__item a {
    color: #0d6efd;
    text-decoration: none;
}
.breadcrumbs__item a:hover {
    text-decoration: underline;
}
.breadcrumbs__item--active {
    color: #6c757d;
    font-weight: bold;
}