/* ==== Misión de Koon Finansen ==== */
.koons-mision {
    background: linear-gradient(135deg, #0b486b 0%, #072f46 100%);
    color: #f5f7fb;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.koons-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.koons-container h2 {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
}

.koons-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.koons-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 40px 28px;
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.koons-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.koons-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.koons-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.koons-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.koons-card p {
    color: #d3e3e9;
    font-size: 15px;
    line-height: 1.7;
}

/* ==== Responsive ==== */
@media (max-width: 992px) {
    .koons-grid {
        flex-direction: column;
        align-items: center;
    }

    .koons-card {
        max-width: 500px;
    }
}