/* --- LEARNING PATHS SECTION (from ko.html) --- */
.learning-paths-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid #f0f0f0;
}

.lp-section-title {
    font-weight: 800;
    font-size: 3rem;
    color: #003060;
    margin-bottom: 60px;
    letter-spacing: -1.5px;
}

.lp-text-red {
    color: #cc0f0f;
    position: relative;
    display: inline-block;
}

.lp-text-red::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(204, 15, 15, 0.1);
    z-index: -1;
}

/* --- LP Card Modern Design --- */
.lp-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 50px 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 48, 96, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lp-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0, 48, 96, 0.12);
    border-color: rgba(204, 15, 15, 0.2);
}

.lp-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(204, 15, 15, 0.03), transparent 70%);
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.lp-card:hover::after {
    opacity: 1;
}

.lp-icon-box {
    width: 90px;
    height: 90px;
    background: #f8faff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    color: #cc0f0f;
    transition: all 0.4s ease;
    border: 1px solid #eef2ff;
}

.lp-card:hover .lp-icon-box {
    background: #cc0f0f;
    color: #fff;
    transform: rotateY(180deg);
    box-shadow: 0 15px 30px rgba(204, 15, 15, 0.3);
}

.lp-card h4 {
    font-weight: 800;
    font-size: 1.5rem;
    color: #003060;
    margin-bottom: 15px;
}

.lp-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.lp-tag-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.lp-tag {
    background: #f0f4f8;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #003060;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.lp-tag:hover {
    background: #cc0f0f !important;
    color: #fff !important;
}

.lp-card:hover .lp-tag {
    background: rgba(204, 15, 15, 0.1);
    color: #cc0f0f;
}

.lp-btn {
    margin-top: auto;
    background: #003060;
    color: #fff !important;
    border: none;
    padding: 15px;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lp-card:hover .lp-btn {
    background: #cc0f0f;
    box-shadow: 0 10px 25px rgba(204, 15, 15, 0.3);
}

.lp-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    color: white;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 65, 108, 0.4);
    animation: lpPulse 2s infinite;
}

@keyframes lpPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .lp-section-title {
        font-size: 2.2rem;
    }

    .lp-card {
        padding: 40px 25px;
    }
}