/* ===========================================
   СЕКЦИЯ О НАС - МИНИМАЛИЗМ С ЗЕЛЕНОЙ ГАММОЙ
   =========================================== */

.about-section {
    background: transparent;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4caf50, transparent);
}

/* Заголовок секции */
.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #37474f;
    font-weight: 400;
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* ===========================================
   ЕДИНЫЙ КРАСИВЫЙ БЛОК
   =========================================== */

.about-unified-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-unified-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(76, 175, 80, 0.12);
}

/* Логотип и описание */
.about-intro {
    margin-bottom: 50px;
}

.company-logo {
    margin-bottom: 30px;
    text-align: left;
}

.company-logo img {
    max-width: 250px;
    height: auto;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #455a64;
    text-align: left;
}

/* ===========================================
   МИССИЯ И ФАБРИКА - ДВА СТОЛБЦА
   =========================================== */

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(76, 175, 80, 0.15);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.info-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #2e7d32;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
    margin: 0;
}

/* ===========================================
   РАЗДЕЛИТЕЛЬ
   =========================================== */

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(76, 175, 80, 0.3) 50%, 
        transparent 100%
    );
    margin: 50px 0;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #4caf50;
    border-radius: 50%;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
    z-index: 1;
}

/* ===========================================
   НАШИ ЦЕННОСТИ
   =========================================== */

.values-wrapper {
    padding-top: 20px;
}

.values-title {
    text-align: center;
    font-size: 2rem;
    color: #2e7d32;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.value-item:hover::before {
    opacity: 1;
}

.value-item:hover {
    border-color: #4caf50;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
}

.value-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.value-item:hover .value-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.value-icon-modern svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-item h4 {
    font-size: 1.3rem;
    color: #2e7d32;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #607d8b;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ===========================================
   АДАПТИВНОСТЬ
   =========================================== */

@media (max-width: 1024px) {
    .about-unified-card {
        padding: 40px;
    }
    
    .about-info-grid {
        gap: 25px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-unified-card {
        padding: 30px;
        border-radius: 20px;
    }
    
    .about-intro {
        margin-bottom: 40px;
    }
    
    .company-logo img {
        max-width: 180px;
    }
    
    .lead-text {
        font-size: 1.05rem;
    }
    
    .about-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .info-card {
        padding: 30px;
    }
    
    .section-divider {
        margin: 40px 0;
    }
    
    .values-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-header {
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .about-unified-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .about-intro {
        margin-bottom: 30px;
    }
    
    .company-logo {
        margin-bottom: 20px;
    }
    
    .company-logo img {
        max-width: 140px;
    }
    
    .lead-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-info-grid {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .info-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .info-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .info-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .info-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .section-divider {
        margin: 30px 0;
    }
    
    .section-divider::after {
        width: 32px;
        height: 32px;
    }
    
    .section-divider::before {
        width: 8px;
        height: 8px;
    }
    
    .values-wrapper {
        padding-top: 10px;
    }
    
    .values-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .values-title::after {
        width: 50px;
        height: 2.5px;
        bottom: -8px;
    }
    
    .values-grid {
        gap: 15px;
    }
    
    .value-item {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .value-icon-modern {
        width: 52px;
        height: 52px;
        margin-bottom: 15px;
    }
    
    .value-icon-modern svg {
        width: 26px;
        height: 26px;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .value-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Дополнительная оптимизация для очень маленьких экранов */
@media (max-width: 360px) {
    .about-unified-card {
        padding: 18px;
    }
    
    .company-logo img {
        max-width: 120px;
    }
    
    .lead-text {
        font-size: 0.9rem;
    }
    
    .info-card {
        padding: 18px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
    
    .values-title {
        font-size: 1.3rem;
    }
    
    .value-item {
        padding: 18px 12px;
    }
    
    .value-icon-modern {
        width: 48px;
        height: 48px;
    }
    
    .value-icon-modern svg {
        width: 24px;
        height: 24px;
    }
    
    .value-item h4 {
        font-size: 1.05rem;
    }
    
    .value-item p {
        font-size: 0.8rem;
    }
}

/* ===========================================
   АНИМАЦИИ
   =========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Убираем лишние старые стили */
.about-content,
.about-text,
.company-card,
.mission-block,
.production-info,
.values-section,
.value-card,
.value-icon,
.about-stats,
.stats-card,
.advantages-section {
    display: none !important;
}
