

/* Переменные */
:root {
    --graphite:#1d1c1c;;
    --accent: #c79f31;
    --muted: #7f8c8d;
    --font-head: 'Arial', 'Helvetica', sans-serif;
    --light-bg: #666667;
    --border-light: rgba(0, 0, 0, 0.05);
}

/* Hero-секция страницы */
.page-main {
    background: linear-gradient(135deg, var(--graphite) 0%, #2c3e50 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-main::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

/* Хлебные крошки */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span:last-child {
    color: orange;
}

/* Подзаголовок секции */
.section-sub {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
}

.page-main .section-sub {
    color: var(--accent);
}

/* Заголовок секции */
.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    color: #ffffff;
}

.about-section .section-title {
    color: #ffffff;
}

/* Сетка "О компании" */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin: 60px 0;
    align-items: center;
}

/* Визуальный блок с годом */
.about-visual {
    position: relative;
}

.about-visual-inner {
    background: linear-gradient(135deg, var(--graphite) 0%, #2c3e50 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-visual-inner::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.big-num {
    font-family: var(--font-head);
    font-size: 80px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.big-text {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Текстовый блок */
.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Кнопка */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--accent), #d35400);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.4);
    background: linear-gradient(135deg, #d35400, var(--accent));
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--graphite);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
    background: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Сетка ценностей */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0 60px;
}

.value-card {
    background: linear-gradient(135deg, var(--graphite) 0%, #2c3e50);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: #3c34a1;
    margin-bottom: 15px;
}

.value-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

/* CTA секция */
.cta-section {
    background: #ffae00;
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #1d1c1c;
    margin-bottom: 35px;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-visual-inner {
    animation: fadeInUp 0.8s ease;
}

.about-text {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.value-card {
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== БЛОК СТАТИСТИКИ ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2px;
    margin-bottom: 5rem;
}

.stat-card {
    background: var(--graphite);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: #2c3e50;
    transform: translateY(-3px);
}

.stat-number {
    font-family: var(--font-head);
    font-size: 3.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.5rem;
}


/* Адаптивность */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .page-main {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .big-num {
        font-size: 60px;
    }
    
    .big-text {
        font-size: 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .btn-primary,
    .btn-dark {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .big-num {
        font-size: 50px;
    }
    
    .about-visual-inner {
        padding: 40px 25px;
    }
}
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}