.about-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef5f1 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.7;
}

/* ===== Блок "О компании" ===== */

.about-section {
    padding: 80px 0;
}

/* Левая колонка */

.about-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.about-section h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #198754;
    display: block;
    margin-top: 12px;
    border-radius: 2px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 18px;
}

/* Правая карточка */

/* ===== Блок преимуществ ===== */

.about-advantages {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.about-advantages:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.about-advantages-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    color: #000;
}

.about-advantages-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #198754;
    display: block;
    margin-top: 10px;
    border-radius: 2px;
}

/* Сетка */

.advantages-grid {
    display: grid;
    gap: 18px;
}

/* Элемент */

/* .adv-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    /* padding: 16px; *
    border-radius: 14px;
    transition: 0.3s ease;
} */

/* Элемент преимущества */
.adv-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.adv-item:hover {
    background: #f8f9fa;
    transform: translateX(6px);
}

/* Иконка */

.adv-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 135, 84, 0.1);
    border-radius: 50%;
    font-size: 18px;
}

/* Текст */

/* .adv-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 15px;
}

.adv-text {
    font-size: 14px;
    color: #6c757d;
} */

.adv-container {
    /* display: flex; */
}

/* Текст заголовка */
.adv-title {
    font-weight: 600;
    font-size: 16px;
    color: #212529;   /* тёмный, гарантированно видимый */
    margin-bottom: 4px;
}

/* Описание */
.adv-text-1 {
    display: block;         /* принудительно */
    font-size: 14px;
    color: #495057;         /* темнее, чем было */
    line-height: 1.5;
    opacity: 0.9;
}

/* .stat-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
} */

.stat-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #198754;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Заголовок блока */
.team-section .section-title {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.team-section {
    padding: 80px 0;
}

.team-section .section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #198754;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Карточка команды */
.team-card {
    background: linear-gradient(145deg, #ffffff, #f7f9f8);
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Фото с плавным увеличением при наведении */
.team-img-wrapper {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 15px;
}

.team-img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.08);
}

/* Имя */
.team-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
    color: #198754;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: #0f5132;
}

/* Роль */
.team-role {
    font-size: 14px;
    color: #6c757d;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 40px;
}

.suppliers-section {
    padding: 80px 0;
}

/* Заголовок */
.suppliers-section .section-title {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.suppliers-section .section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #198754;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

.suppliers-section .section-subtitle {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Карточки поставщиков */
.supplier-card {
    /* background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;          /* занимает всю высоту колонки *
    min-height: 300px;     /* одинаковая минимальная высота *
    position: relative;
    overflow: hidden; */

    background: linear-gradient(145deg, #ffffff, #f7f9f8);
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.supplier-card:hover {
    /* transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08); */

    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.supplier-img-wrapper {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 15px;
}

.supplier-img-wrapper img {
    width: 100%;
    height: 120px;
    transition: transform 0.4s ease;
}

.supplier-card:hover .supplier-img-wrapper img {
    transform: scale(1.08);
}

/* .supplier-card img { */
    /* max-height: 50px;
    width: auto;
    margin: 0 auto 15px;
    flex-shrink: 0;        логотип не сжимается */

    /* width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease; */
/* } */

.supplier-name {
    /* font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px; */

    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
    color: #198754;
    transition: color 0.3s ease;
}

.supplier-card:hover .supplier-name {
    color: #0f5132;
}

.supplier-desc {
    /* font-size: 14px;
    color: #495057;
    text-align: justify;
    line-height: 1.5;
    flex-grow: 1;           занимает оставшееся пространство */

    font-size: 14px;
    color: #6c757d;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 120px;
    text-align: left;
}

/* Блок доверия */
/* Заголовок блока */
.trust-section .section-title {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.trust-section {
    padding: 80px 0;
}

.trust-section .section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #198754;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Карточки доверия */
.trust-logos {
    align-items: center;
    justify-content: center;
}

.trust-item {
    padding: 20px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(20%);
}

.trust-item img {
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover эффект */
.trust-item:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.trust-item:hover img {
    transform: scale(1.05);
}

.team-logos, .suppliers-logos, .trust-logos {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: flex-start;
    row-gap: 10px;
}

.certificates-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef5f1 100%);
    padding: 80px 0;
}

/* Заголовок блока с акцентной линией */
.certificates-section .section-title {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.certificates-section .section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #198754;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Подзаголовок */
.certificates-section .section-subtitle {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Кнопка сертификатов */
.btn-certificates {
    background: #198754;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.3);
}

.btn-certificates:hover {
    background: #0f5132;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(25, 135, 84, 0.5);
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }

    .about-advantages {
        margin-top: 30px;
    }

    .about-hero {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .stat-card {
        max-width: 90%;
        padding: 25px 15px;
    }

    .stats-row {
        display: flex;
        flex-direction: column;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .team-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .team-img-wrapper img {
        height: 180px;
    }

    .suppliers-section {
        padding: 60px 15px;
    }

    .supplier-card {
        /* min-height: 280px; */
        padding: 15px;
    }

    .supplier-card img {
        max-height: 40px;
        margin-bottom: 10px;
    }

    .supplier-name {
        font-size: 15px;
    }

    .supplier-desc {
        font-size: 13px;
        height: 100px;
    }

    .trust-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .trust-item {
        padding: 15px;
    }

    .trust-item img {
        max-height: 50px;
    }

    .certificates-section {
        padding: 60px 20px;
    }

    .certificates-section .section-title {
        font-size: 28px;
    }

    .certificates-section .section-subtitle {
        font-size: 15px;
    }

    .team-logos {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stat-card {
        max-width: 100%;
        padding: 20px 10px;
        margin: 5px 0;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }
}