/* Основной контейнер */
.about-company-wrapper {
    padding: 80px 20px;
    max-width: 1200px;
    margin: -120px auto 0;
    position: relative;
    z-index: 10;
}

/* Блок введения */
.company-intro {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    border: 1px solid #e8e8e8;
}

.company-intro h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.company-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.company-intro p:last-child {
    margin-bottom: 0;
}

/* Статистика компании */
.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
}

.stat-card:hover {
    box-shadow: 0 8px 30px rgba(20, 40, 160, 0.15);
    border-color: var(--primary);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #0066ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Преимущества */
.advantages-section {
    margin-bottom: 60px;
}

.advantages-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.advantages-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
}

.advantage-card:hover {
    box-shadow: 0 8px 30px rgba(20, 40, 160, 0.15);
    border-color: var(--primary);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary);
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, var(--primary), #0066ff);
    color: white;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.advantage-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Документы */
.documents-section {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

.documents-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.documents-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.document-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.document-card:hover {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 4px 15px rgba(20, 40, 160, 0.1);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.document-card:hover .document-icon {
    background: var(--primary);
    color: white;
}

.document-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.document-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.document-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.document-card:hover .document-link {
    gap: 12px;
}

.document-link i {
    transition: transform 0.3s;
}

/* Призыв к действию */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #0066ff);
    color: white;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button-primary {
    background: white;
    color: var(--primary);
}

.cta-button-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
}

.cta-button-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Адаптивность */
@media (max-width: 768px) {
    .about-company-hero h1 {
        font-size: 2rem;
    }

    .about-company-hero p {
        font-size: 1rem;
    }

    .company-intro {
        padding: 30px 25px;
    }

    .company-intro h2 {
        font-size: 1.6rem;
    }

    .company-intro p {
        font-size: 1rem;
    }

    .company-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .advantages-grid,
    .documents-grid {
        grid-template-columns: 1fr;
    }

    .documents-section {
        padding: 30px 20px;
    }

    .cta-section {
        padding: 40px 25px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}