.platform-section {
    width: 100%;
    margin: 0px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #1c1c1c;
    padding-top: 40px;
}

.platform-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
}

.platform-card {
    background: #232323;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    color: #fff;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: flex-end;
    min-height: 180px;
    flex: 1 1 320px;

}

.platform-card--wide {
    flex-basis: 100%;
    min-height: 200px;
    margin-bottom: 0;
}

.platform-card--half {
    flex-basis: calc(50% - 16px);
    min-height: 180px;
}

.platform-card-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    top: 0;
    left: 0;
}

.platform-card-content {
    position: relative;
    z-index: 1;
    padding: 32px 32px 24px 32px;
}

.platform-card-content h2,
.platform-card-content h3 {
    margin: 0 0 12px 0;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
}

.platform-card-content .highlight {
    color: #fff;
    font-weight: 900;
    letter-spacing: 1px;
}

.platform-card-content p {
    margin: 0;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.platform-card--features ul {
    list-style: none;
    padding: 32px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.platform-card--features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1rem;
}

.platform-card--features .icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    background: #fff2;
    border-radius: 50%;
    margin-right: 8px;
}

.platform-card--features strong {
    font-weight: 700;
    color: #fff;
}

.platform-card--features .desc {
    color: #e0e0e0;
    font-size: 0.98em;
}

.problem-card {
    background: #ff6a33;
    color: #fff;
    border-radius: 28px;
    margin-top: 24px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);

}

.problem-card h2 {
    margin: 0 0 18px 0;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.problem-card .highlight {
    font-weight: 900;
    color: #fff;
}

.problem-desc {
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.problem-list {
    /*list-style: disc inside;*/
    color: #fff;
    font-size: 1rem;
    margin: 0;
    padding-left: 1px;
}

.problem-list li {
    list-style-type: none;
}

@media (max-width: 900px) {
    .platform-cards {
        flex-direction: column;
        gap: 24px;
    }

    .platform-card--half,
    .platform-card--wide {
        flex-basis: 100%;
        min-width: 0;
    }
}

.platform-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.platform-card-init {
    background: #232323;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    color: #fff;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
    /*! display: flex; */
    align-items: center;
    min-height: 180px;
    /*! flex: 1 1 320px; */
    text-align: center;
}