/* INFOGRAPHICS STYLES */
.infographics-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.infographics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.infographic-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.infographic-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.3);
}

.infographic-visual {
    margin-bottom: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#00e5ff 0deg 270deg, rgba(255,255,255,0.1) 270deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-text {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.chart-bar {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 80px;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, #00e5ff, #7c3aed);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: end;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding-bottom: 0.25rem;
}

.process-flow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flow-step {
    background: linear-gradient(135deg, #00e5ff, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.flow-arrow {
    color: #00e5ff;
    font-size: 1.5rem;
}

.infographic-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.infographic-card p {
    color: var(--color-muted);
    line-height: 1.5;
}

/* COMBINED COURSES STYLES */
.courses-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.3);
}

.course-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #00e5ff, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-badge.ai-badge {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.course-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.course-card p {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.course-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.course-highlights span {
    background: rgba(0, 229, 255, 0.1);
    color: #00e5ff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.course-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-original {
    color: var(--color-muted);
    text-decoration: line-through;
}

.price-current {
    color: #00e5ff;
    font-size: 1.5rem;
    font-weight: 700;
}

.course-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.course-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.courses-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .infographics-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}