/* ===== ПОЧЕМУ SKYMAX ===== */
.why-skymax {
    margin: 80px 0;
    width: 100%;
}

.why-skymax-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
    background: transparent;
    border-radius: 40px;
    overflow: hidden;
    flex-wrap: wrap;
}

/* Левая колонка с изображением */
.why-skymax-image {
    flex: 1;
    min-width: 280px;
    border-radius: 40px;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-skymax-image img {
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.why-skymax-image img:hover {
    transform: scale(1.03);
}

/* Правая колонка с контентом */
.why-skymax-content {
    flex: 2;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-skymax-content h2 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
    align-self: center;
}

.why-skymax-content h2 span {
    color: #a43ccf;
}

/* Обертка для сетки, чтобы прижать её к низу */
.why-skymax-grid-wrapper {
    margin-top: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    text-align: -webkit-center;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(164, 60, 207, 0.1);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.feature-icon.support {
    background: #d0fbeb;
    color: #4be3a8;
}

.feature-icon.internet {
    background: #efd8f8;
    color: #a43ccf;
}

.feature-icon.test {
    background: #fdf1f0;
    color: #ff6b6b;
}

.feature-icon.tariff {
    background: #dcf1fc;
    color: #4dabf7;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #433f45;
}

.feature-card p {
    font-size: 16px;
    color: #433f45;
    line-height: 1.5;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 992px) {
    .why-skymax-container {
        flex-direction: column;
        gap: 30px;
    }

    .why-skymax-image {
        min-height: 400px;
        width: 100%;
        flex: 1;
        border-radius: 40px;
    }

    .why-skymax-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .why-skymax-content h2 {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-skymax {
        margin: 60px 0;
    }

    .why-skymax-content h2 {
        font-size: 42px;
    }

    .why-skymax-image {
        min-height: 300px;
        flex: 1;
    }

    .why-skymax-image img {
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 20px;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 15px auto;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-skymax-content h2 {
        font-size: 36px;
    }

    .why-skymax-image {
        min-height: 250px;
        border-radius: 30px;
    }

    .why-skymax-image img {
        height: 250px;
    }
}