/* ==========================================================================
   БЛОК: ABOUT FEATURES (Преимущества + Клиенты) - УВЕЛИЧЕННЫЙ
   ========================================================================== */

.about-section {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    background: radial-gradient(circle at 20% 80%, #2bb1e5 0%, #1a7fa6 60%, #136383 100%);
    overflow: hidden;
    color: #ffffff;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 90px;
    max-width: 1450px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: center;
}

.about-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
    font-weight: 500;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    max-width: 650px;
}

.about-text p:last-child {
    margin-bottom: 50px;
}

/* Сетка мини-метрик */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 650px;
}

.mini-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.mini-stat-card .card-icon {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 18px;
}

.mini-stat-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.1;
}

.mini-stat-card .stat-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

/* Блок клиентов справа */
.clients-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 55px 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.clients-title {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

/* Стили для карточек и логотипов клиентов */
.client-item {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.client-item img {
    max-width: 88%;
    max-height: 75%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Эффект при наведении на карточку (только подъем и тень, логотипы уже цветные) */
.client-item:hover { 
    background: #ffffff; 
    transform: translateY(-4px); 
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.clients-note { 
    font-size: 13px; 
    color: rgba(255, 255, 255, 0.5); 
    text-align: center; 
}

@media (max-width: 1300px) {
    .about-container { grid-template-columns: 1fr; gap: 60px; max-width: 800px; }
}

@media (max-width: 576px) {
    .client-item img { max-width: 118%; max-height: 118%; }
    .about-section { padding: 60px 20px; }
    .about-section h2 { font-size: 34px; }
    .about-stats-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-wrapper { padding: 35px 20px; }
}