@media (min-width: 1025px) {
    .site-footer .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .site-footer .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

#scrollToggle {
    right: 2rem !important;
    bottom: 2rem !important;
}


@media (max-width: 768px) {
    body {
        font-size: 0.9rem !important;
    }

    .section {
        padding: 4rem 1rem !important;
    }

    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    .section-desc {
        font-size: 0.9rem !important;
    }

    #scrollToggle {
        right: 2rem !important;
        bottom: 2rem !important;
    }

    .instructor-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .instructor-card {
        padding: 1.5rem !important;
        border-radius: 24px !important;
    }

    .instructor-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }

    .instructor-stats {
        grid-template-columns: 1fr !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .testimonial-card {
        padding: 2rem 1.5rem !important;
        border-radius: 24px !important;
    }

    .testimonial-stats {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    /* Career Sectors Mobile */
    .career-grid {
        grid-template-columns: 1fr !important;
    }
    /* Logo Cloud Mobile */
    .logo-cloud {
        gap: 1.5rem !important;
    }

        .logo-cloud > div {
            font-size: 0.95rem !important;
        }
    /* Curriculum Grid Mobile */
    .curriculum-header {
        display: none !important;
    }

    .curriculum-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 2rem 1.5rem !important;
    }

        .curriculum-row > div:first-child {
            border-bottom: 2px solid #7c3aed;
            padding-bottom: 0.5rem;
            display: inline-block;
            width: fit-content;
        }

    .mobile-min-width-auto {
        min-width: auto !important;
    }
    /* Responsive Grid Fixes */
    .testimonials-grid,
    .projects-grid,
    .registration-grid,
    .grid-res {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .testimonial-card,
    .price-card {
        padding: 2rem 1.5rem !important;
    }

        .price-card .badge-lansman {
            font-size: 0.7rem !important;
            padding: 0.4rem 1rem !important;
        }
}

/* --- MANIFESTO SECTION STYLES --- */
.manifesto-section .container {
    max-width: 1200px;
}

@media (max-width: 768px) {
    .manifesto-section {
        padding: 60px 0 !important;
    }

        .manifesto-section h2 {
            font-size: 2.2rem !important;
        }

        .manifesto-section .manifesto-grid {
            grid-template-columns: 1fr !important;
            gap: 3rem !important;
        }

        .manifesto-section .pillars-grid {
            grid-template-columns: 1fr !important;
            gap: 2rem !important;
        }

        .manifesto-section .cta-box {
            padding: 3rem 1.5rem !important;
        }

        .manifesto-section h3 {
            font-size: 1.8rem !important;
        }

        .manifesto-section .floating-pillar {
            transform: none !important;
        }
}

/* --- GLOBAL PREMIUM STYLES --- */

/* HERO GLASS CARDS */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 4rem auto 0;
    text-align: left;
    max-width: 1000px;
    padding: 0 1rem;
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

    .hero-feature-card:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-8px);
        border-color: rgba(255, 255, 255, 0.25);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

.hero-feature-tag {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-feature-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 3rem;
    }

    .hero-feature-card {
        padding: 1.5rem;
    }
}
