/* --- PYTHON SPECIFIC LUXURY STYLES --- */

/* Hero Specifics */
.python-hero h1 span {
    background: linear-gradient(90deg, #45a247, #283c86); /* Python Colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(69, 162, 71, 0.3));
}

.hero-benefits-mini {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Curriculum Accordion/List */
.curriculum-accordion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.module-item {
    padding: 25px;
    border: 1px solid var(--border-white);
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.module-item:hover {
    border-color: #45a247;
    box-shadow: 0 0 20px rgba(69, 162, 71, 0.1);
}

.module-info strong {
    color: #45a247;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

/* Projects Showcase */
.project-card {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    border: 1px solid var(--border-white);
}

.project-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    background: rgba(69, 162, 71, 0.1);
    color: #45a247;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 700;
    border: 1px solid rgba(69, 162, 71, 0.2);
}

.project-card:hover {
    border-color: #45a247;
    box-shadow: 0 0 30px rgba(69, 162, 71, 0.15);
}

/* Who Is This For Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.audience-item {
    border-left: 2px solid #45a247;
    padding-left: 25px;
}

.audience-item h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.audience-item p {
    color: var(--text-muted);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .curriculum-accordion {
        grid-template-columns: 1fr;
    }
    .hero-benefits-mini {
        flex-direction: column;
        gap: 10px;
    }
} 

/* Секція What You Will Learn */
.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.learning-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.learning-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #45a247; /* Зелений неон для Python */
    transform: translateY(-5px);
}

.icon-box {
    font-size: 0.8rem;
    font-weight: 800;
    color: #45a247;
    margin-bottom: 15px;
    opacity: 0.6;
}









