/* aimol.css */
/* Общие стили для страницы AIMOL */
.aimol-page {
    background-color: #1A1A1A;
    color: #ffffff;
}

.aimol-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Стили для главной секции AIMOL */
.aimol-page .aimol-hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #1A1A1A 100%);
    color: white;
    padding: 140px 0 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin-top: -140px;
}

.aimol-page .aimol-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

.aimol-page .aimol-main-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.aimol-page .aimol-main-logo img {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.aimol-page .aimol-hero-text {
    max-width: 1600px;
}

.aimol-page .aimol-hero-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.aimol-page .aimol-hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Regular начертание */
    font-size: 16px;
    line-height: 1.3;
    opacity: 0.9;
    max-width: 1600px;
    margin: 0 auto;
}

.aimol-page .text-line-1,
.aimol-page .text-line-2 {
    display: block;
}

.aimol-page .text-line-1 {
    margin-bottom: 0.2rem;
    font-weight: 400;
    font-size: 16;
}

.aimol-page .text-line-2 {
    font-weight: 400;
    font-size: 16;
}

/* Стили для секции преимуществ */
.aimol-page .aimol-advantages {
    padding: 40px 0;
    background-color: #111111;
}

.aimol-page .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.aimol-page .section-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.aimol-page .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1A1A1A;
}

/* Сетка преимуществ в две колонки */
.aimol-page .advantages-grid-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    row-gap: 0px;
    margin-left: 60px;
}

.aimol-page .advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    padding: 10px;
    background: #111111;
    border-radius: 8px;
    box-shadow: 0 4px 12px #111111;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: none;
    cursor: default;
}

.aimol-page .advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.aimol-page .advantage-number {
    font-family: 'Inter', sans-serif bold;
    font-weight: 700; /* Bold начертание */
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 30px;
    width: auto;
    text-align: left;
    height: auto;
    background-color: transparent; /* фон */
    color: rgb(91, 91, 91); /* текст */
    border: none; /* ← обводка */
    border-radius: 0;
    flex-shrink: 0;
    margin-right: 5px;
}

.aimol-page .advantage-content {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Regular начертание */
    font-size: 14px;
    flex: 1;
    pointer-events: none;
    cursor: default;
    margin-left: 0px;
}

.aimol-page .advantage-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
}

/* Стили для секции ассортимента */
.aimol-page .aimol-assortment {
    padding: 40px 0;
    background-color: #1A1A1A;
;
}

.aimol-page .assortment-content {
    max-width: 900px;
    margin: 0 auto;
}

.aimol-page .assortment-intro {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Regular начертание */
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.aimol-page .assortment-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.aimol-page .assortment-item {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    padding: 40px 60px;
    word-wrap: break-word;    /* перенос длинных слов */
    overflow-wrap: break-word; /* современная альтернатива */
    hyphens: auto;           /* автоматическая расстановка переносов */
    line-height: 1.5;        /* межстрочный интервал */
    background: #111111;
    border-radius: 8px;
    box-shadow: 0 4px 12px #1A1A1A;
    transition: transform 0.3s ease;
    pointer-events: none;
    cursor: default;
}

.aimol-page .assortment-item:hover {
    transform: translateY(-5px);
}

.aimol-page .assortment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1A1A1A;
    border-radius: 50%;
}

.aimol-page .assortment-icon img {
    max-width: 50px;
    max-height: 50px;
    filter: brightness(0) invert(1);
}

.aimol-page .assortment-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* Стили для секции сотрудничества */
.aimol-page .aimol-partners {
    padding: 10px 0;
    background-color: #1A1A1A;
}

.aimol-page .partners-grid-five-columns {
    display: grid;
    grid-template-columns: repeat(5, 150px);
    justify-content: center;
    row-gap: 15px;
    column-gap: 10px;
}

.aimol-page .partner-logo {
    background: #1A1A1A;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    box-shadow: 0 2px 4px #1A1A1A;
    transition: transform 0.3s ease;
    pointer-events: none;
    cursor: default;
}

.aimol-page .partner-logo.empty {
    background: transparent;
    box-shadow: none;
}

.aimol-page .partner-logo:hover {
    transform: scale(1.05);
}

.aimol-page .partner-logo img {
    max-width: 100%;
    max-height: 100%;
    transition: filter 0.3s ease;
}

/*.aimol-page .partner-logo:hover img {
    filter: brightness(100) invert(0) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}*/

/* Стили для секции сертификатов */
.aimol-page .aimol-certificates {
    padding: 60px 0;
    background-color: #1A1A1A;
}

.aimol-page .certificates-grid-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    margin: 0 auto;
    max-width: 900px;
}

.aimol-page .certificate-item {
    background: #1A1A1A;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 1); */
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Уменьшил внутренние отступы */
    margin: 0px;
    pointer-events: none;
    cursor: default;
}

.aimol-page .certificate-item:hover {
    transform: translateY(-3px);
}

.aimol-page .certificate-item img {
    width: 90%;
    height: auto;
    object-fit: contain; /* Сохраняем пропорции изображения */
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .aimol-page .aimol-hero-content {
        gap: 30px;
    }
    
    .aimol-page .aimol-main-logo {
        max-width: 250px;
    }
    
    .aimol-page .aimol-hero-title {
        font-size: 2rem;
    }
    
    .aimol-page .partners-grid-five-columns {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .aimol-page .advantages-grid-two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .aimol-page .assortment-items {
        grid-template-columns: 1fr;
    }
    
    .aimol-page .partners-grid-five-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .aimol-page .certificates-grid-two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .aimol-page .aimol-hero {
        padding: 60px 0;
    }
    
    .aimol-page .aimol-hero-title {
        font-size: 1.8rem;
    }
    
    .aimol-page .section-header h2 {
        font-size: 1.8rem;
    }
    
    .aimol-page .partners-grid-five-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .aimol-page .aimol-hero-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .aimol-page .aimol-hero-description {
        font-size: 1.1rem;
    }
    
    .aimol-page .text-line-1,
    .aimol-page .text-line-2 {
        display: inline;
    }
    
    .aimol-page .text-line-1::after {
        content: " ";
    }
}