/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 199, 56, 0.3), transparent);
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(229, 199, 56, 0.1);
    border: 1px solid rgba(229, 199, 56, 0.3);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #e5c738;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-center {
    text-align: center;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0 50px 0;
}

.problem-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(229, 199, 56, 0.2);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: rgba(229, 199, 56, 0.05);
    border-color: rgba(229, 199, 56, 0.4);
    transform: translateY(-5px);
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 199, 56, 0.1);
    border-radius: 12px;
}

.problem-icon svg {
    color: #e5c738;
}

.problem-number {
    font-size: 42px;
    font-weight: 700;
    color: #e5c738;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #e5c738;
    margin-bottom: 16px;
}

.problem-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Problem Reality Section */
.problem-reality {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(229, 199, 56, 0.2);
    border-radius: 12px;
    padding: 40px;
    margin-top: 50px;
}

.problem-reality h3 {
    font-size: 24px;
    font-weight: 600;
    color: #e5c738;
    margin: 0 0 30px 0;
    text-align: center;
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reality-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.reality-icon {
    flex-shrink: 0;
    color: #e5c738;
    margin-top: 2px;
}

.reality-item p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .problem-section {
        padding: 60px 0;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 40px 0 30px 0;
    }

    .problem-card {
        padding: 30px;
    }

    .problem-number {
        font-size: 36px;
    }

    .problem-card h3 {
        font-size: 18px;
    }

    .problem-reality {
        padding: 30px 20px;
    }

    .reality-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reality-item {
        font-size: 14px;
    }
}
