/* Education Page - Modern Dynamic Design */

/* CSS Variables */
:root {
    --primary-cyan: #00C2D8;
    --primary-pink: #FF2E88;
    --black: #000000;
    --white: #FFFFFF;
    --dark-bg: #0F0F15;
    --soft-gray: #F5F5F5;
    --gradient-primary: linear-gradient(135deg, #00C2D8 0%, #FF2E88 100%);
    --gradient-reverse: linear-gradient(135deg, #FF2E88 0%, #00C2D8 100%);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; overflow-x: hidden; color: var(--black); background-color: var(--white); }
html { scroll-behavior: smooth; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== */
/* Navbar               */
/* ==================== */
.navbar {
     padding: 1.2rem 0;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
     background: transparent; backdrop-filter: blur(0px); 
     border-bottom: 1px solid transparent; 
     z-index: 1000; 
    }

.navbar.scrolled { 
    padding: 0.8rem 0; 
    background: rgba(15, 15, 21, 0.98); 
    backdrop-filter: blur(20px); 
    box-shadow: 0 4px 30px rgba(0,0,0,0.3); 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}

.navbar-brand { display: flex; align-items: center; height: 80px; padding: 0.5rem 0; margin-right: 2rem; position: relative; z-index: 10; }
.navbar.scrolled .navbar-brand { height: 70px; }
.navbar-logo { height: 70px; width: auto; max-width: 320px; object-fit: contain; object-position: left center; transition: all 0.3s ease; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)) brightness(1.5) contrast(1.8) saturate(1.3); image-rendering: crisp-edges; position: relative; z-index: 2; }
.navbar.scrolled .navbar-logo { height: 65px; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4)) brightness(1.6) contrast(2) saturate(1.4); }
.navbar-brand::before { content: ''; position: absolute; left: -15px; top: 50%; transform: translateY(-50%); width: calc(100% + 30px); height: calc(100% + 15px); border-radius: 12px; z-index: -1; opacity: 0; transition: opacity 0.3s ease; }
.navbar.scrolled .navbar-brand::before { background: rgba(255,255,255,0.1); }
.navbar-toggler { border: none; padding: 0.4rem 0.6rem; border-radius: 8px; transition: all 0.3s ease; }
.navbar-toggler:focus { box-shadow: 0 0 0 0.2rem rgba(0,194,216,0.25); outline: none; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); width: 1.8em; height: 1.8em; }
.nav-link { color: var(--white) !important; font-weight: 500; font-size: 0.85rem; margin: 0 0.8rem; padding: 0.5rem 0; transition: all 0.3s ease; position: relative; letter-spacing: 0.5px; text-transform: uppercase; }
.nav-link.active { color: var(--primary-cyan) !important; }
.nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gradient-primary); transition: width 0.3s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.btn-cta-nav { background: var(--gradient-primary); border: none; color: var(--white); padding: 0.65rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase; transition: all 0.3s ease; position: relative; overflow: hidden; margin-left: 1rem; box-shadow: 0 4px 15px rgba(0,194,216,0.2); text-decoration: none; display: inline-block; }
.btn-cta-nav::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--gradient-reverse); transition: left 0.3s ease; }
.btn-cta-nav:hover::before { left: 0; }
.btn-cta-nav span { position: relative; z-index: 1; }
.btn-cta-nav:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,194,216,0.3); color: var(--white); text-decoration: none; }

.btn-login-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 229, 255, 0.3);
    color: var(--white);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-login-nav:hover::before {
    left: 0;
}

.btn-login-nav span,
.btn-login-nav i {
    position: relative;
    z-index: 1;
}

.btn-login-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
    border-color: transparent;
    color: var(--white);
    text-decoration: none;
}

/* ==================== */
/* Hero Banner          */
/* ==================== */
.edu-hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-bg);
    padding-top: 100px;
    padding-bottom: 3rem;
}

.edu-hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 194, 216, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 46, 136, 0.15) 0%, transparent 50%);
    z-index: 1;
    animation: heroGradientShift 15s ease-in-out infinite;
}

@keyframes heroGradientShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-3%, 3%); }
}

.hero-floating-icons { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-float-icon { position: absolute; animation: heroIconFloat 8s ease-in-out infinite; }
.hero-float-1 { top: 15%; left: 6%; font-size: 5rem; animation-delay: 0s; animation-duration: 10s; color: rgba(255,255,255,0.07); }
.hero-float-2 { top: 20%; right: 8%; font-size: 4rem; animation-delay: 2s; animation-duration: 8s; color: rgba(0,194,216,0.08); }
.hero-float-3 { bottom: 20%; left: 10%; font-size: 4.5rem; animation-delay: 1s; animation-duration: 9s; color: rgba(0,229,255,0.06); }
.hero-float-4 { bottom: 15%; right: 6%; font-size: 3.5rem; animation-delay: 3s; animation-duration: 7s; color: rgba(255,46,136,0.07); }

@keyframes heroIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-20px) rotate(5deg); opacity: 1; }
    50% { transform: translateY(-10px) rotate(-3deg); opacity: 0.8; }
    75% { transform: translateY(-25px) rotate(7deg); opacity: 1; }
}

.edu-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.edu-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.edu-hero-badge i { font-size: 1.1rem; color: var(--primary-cyan); }

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,194,216,0.3); }
    50% { box-shadow: 0 0 0 10px rgba(0,194,216,0); }
}

.edu-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.edu-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.edu-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.edu-stat {
    text-align: center;
    color: var(--white);
}

.edu-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.edu-stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.3rem;
    font-weight: 500;
}

/* ==================== */
/* Weekly Section       */
/* ==================== */
.weekly-section {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
}

.weekly-card {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.weekly-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.weekly-card:hover::before { transform: scaleX(1); }
.weekly-card:hover { box-shadow: 0 20px 60px rgba(0,194,216,0.12); border-color: rgba(0,194,216,0.2); }

.weekly-card h2 {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
}

.weekly-desc {
    text-align: center;
    font-size: 1.05rem;
    color: rgba(0,0,0,0.65);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.weekly-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.weekly-item {
    position: relative;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.weekly-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.weekly-item:hover::before { opacity: 0.05; }
.weekly-item:hover { transform: translateY(-8px); border-color: var(--primary-cyan); box-shadow: 0 15px 50px rgba(0,194,216,0.15); }

.weekly-item > * { position: relative; z-index: 1; }

.weekly-item-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 25px rgba(0,194,216,0.3);
    transition: all 0.4s ease;
}

.weekly-item:hover .weekly-item-icon { transform: scale(1.15) rotate(5deg); box-shadow: 0 12px 35px rgba(0,194,216,0.5); }

.weekly-item h4 { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 0.6rem; }
.weekly-item p { font-size: 0.9rem; color: rgba(0,0,0,0.65); line-height: 1.6; margin: 0; }

/* ==================== */
/* Topics Section       */
/* ==================== */
.topics-section {
    padding: 4rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.topics-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 194, 216, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 46, 136, 0.15) 0%, transparent 50%);
    z-index: 0;
    animation: topicsGradientShift 15s ease-in-out infinite;
}

@keyframes topicsGradientShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-3%, 3%); }
}

.topics-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.topics-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: var(--primary-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.topics-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    counter-reset: topic-counter;
}

.topic-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.topic-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.topic-card:hover::before { opacity: 0.06; }

.topic-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,194,216,0.4);
    box-shadow: 0 20px 60px rgba(0,194,216,0.2);
}

.topic-card > * { position: relative; z-index: 1; }

.topic-number {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    line-height: 1;
    z-index: 1;
    transition: all 0.4s ease;
}

.topic-card:hover .topic-number { opacity: 0.45; transform: scale(1.1); }

.topic-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,194,216,0.3);
    transition: all 0.4s ease;
}

.topic-card:hover .topic-icon { transform: scale(1.1) rotate(5deg); box-shadow: 0 12px 35px rgba(0,194,216,0.5); }

.topic-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.topic-card p { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 1.2rem; }

.topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.topic-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: all 0.3s ease;
}

.topic-list li i { color: var(--primary-cyan); font-size: 1rem; flex-shrink: 0; }
.topic-card:hover .topic-list li { color: rgba(255,255,255,0.85); }

/* ==================== */
/* Benefits Section     */
/* ==================== */
.benefits-section {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
}

.benefits-card {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefits-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.benefits-card:hover::before { transform: scaleX(1); }
.benefits-card:hover { box-shadow: 0 20px 60px rgba(0,194,216,0.12); }

.benefits-card h2 {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    position: relative;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.benefit-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-item:hover::before { opacity: 0.05; }
.benefit-item:hover { transform: translateY(-8px); border-color: var(--primary-cyan); box-shadow: 0 15px 50px rgba(0,194,216,0.15); }

.benefit-item > * { position: relative; z-index: 1; }

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(0,194,216,0.3);
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon { transform: scale(1.15) rotate(5deg); box-shadow: 0 10px 30px rgba(0,194,216,0.5); }

.benefit-item h5 { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 0.6rem; }
.benefit-item p { font-size: 0.88rem; color: rgba(0,0,0,0.65); line-height: 1.6; margin: 0; }


/* ==================== */
/* Footer               */
/* ==================== */
.footer-modern { background: #0B0B0E; color: #EDEDED; padding: 4rem 0 2rem; position: relative; overflow: hidden; }
.footer-modern::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, #00E5FF, #FF2E88, transparent); opacity: 0.5; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { max-width: 400px; }
.footer-logo { display: inline-block; margin-bottom: 1.5rem; transition: transform 0.3s ease; text-decoration: none; }
.footer-logo:hover { transform: translateY(-2px); }
.footer-logo-img { height: 100px; width: auto; max-width: 300px; object-fit: contain; filter: brightness(1.2) contrast(1.2); image-rendering: crisp-edges; border-radius: 10px; }
.footer-tagline { color: #9AA0A6; font-size: 0.95rem; line-height: 1.7; margin: 0; font-weight: 300; }
.footer-nav { display: flex; flex-direction: column; }
.footer-nav-title { color: #EDEDED; font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; position: relative; padding-bottom: 0.75rem; }
.footer-nav-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: linear-gradient(90deg, #00E5FF, #FF2E88); border-radius: 2px; }
.footer-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-link { color: #9AA0A6; text-decoration: none; font-size: 0.95rem; font-weight: 400; transition: all 0.3s ease; display: inline-block; position: relative; padding-left: 0; }
.footer-nav-link::before { content: ''; position: absolute; left: -15px; top: 50%; transform: translateY(-50%); width: 0; height: 2px; background: linear-gradient(90deg, #00E5FF, #FF2E88); transition: width 0.3s ease; border-radius: 2px; }
.footer-nav-link:hover { color: #EDEDED; padding-left: 15px; text-shadow: 0 0 10px rgba(0,229,255,0.5); text-decoration: none; }
.footer-nav-link:hover::before { width: 10px; }
.footer-social { display: flex; flex-direction: column; }
.footer-social-icons { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-social-link { width: 50px; height: 50px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #9AA0A6; font-size: 1.3rem; text-decoration: none; transition: all 0.3s ease; position: relative; overflow: hidden; }
.footer-social-link::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #00E5FF, #FF2E88); opacity: 0; transition: opacity 0.3s ease; z-index: 0; }
.footer-social-link i { position: relative; z-index: 1; transition: transform 0.3s ease; }
.footer-social-link:hover { color: #EDEDED; border-color: transparent; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,229,255,0.3); text-decoration: none; }
.footer-social-link:hover::before { opacity: 1; }
.footer-social-link:hover i { transform: scale(1.1) rotate(5deg); }
.footer-bottom { margin-top: 3rem; }
.footer-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); margin-bottom: 2rem; }
.footer-copyright { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copyright p { color: #9AA0A6; font-size: 0.9rem; margin: 0; }
.footer-legal { display: flex; gap: 1rem; align-items: center; }
.footer-legal-link { color: #9AA0A6; text-decoration: none; font-size: 0.85rem; transition: color 0.3s ease; position: relative; }
.footer-legal-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--primary-cyan); transition: width 0.3s ease; }
.footer-legal-link:hover { color: #EDEDED; text-decoration: none; }
.footer-legal-link:hover::after { width: 100%; }
.footer-legal-separator { color: #9AA0A6; font-size: 0.9rem; }

/* ==================== */
/* Responsive           */
/* ==================== */
@media (max-width: 992px) {
    .navbar-nav { background: rgba(15,15,21,0.98); backdrop-filter: blur(20px); padding: 1.5rem; border-radius: 15px; margin-top: 1rem; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
    .nav-link { margin: 0.5rem 0; padding: 0.8rem 1rem; border-radius: 8px; }
    .nav-link:hover { background: rgba(255,255,255,0.05); }
    .btn-cta-nav { margin-left: 0; margin-top: 0.5rem; width: 100%; text-align: center; }

    .weekly-grid { grid-template-columns: repeat(2, 1fr); }
    .topics-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-brand { grid-column: 1 / -1; max-width: 100%; }
}

@media (max-width: 768px) {
    .navbar { padding: 1rem 0; }
    .navbar.scrolled { padding: 0.7rem 0; }
    .navbar-logo { height: 60px; max-width: 280px; }
    .navbar.scrolled .navbar-logo { height: 55px; }

    .edu-hero { min-height: auto; padding-top: 80px; padding-bottom: 2rem; }
    .edu-hero-title { font-size: 2.2rem; }
    .edu-hero-subtitle { font-size: 1rem; }
    .edu-hero-stats { gap: 1.5rem; }
    .edu-stat-number { font-size: 2rem; }

    .hero-floating-icons { display: none; }

    .weekly-section, .benefits-section { padding: 3rem 0; }
    .weekly-card, .benefits-card { padding: 2rem 1.5rem; }
    .weekly-card h2, .benefits-card h2 { font-size: 1.8rem; }
    .weekly-grid { grid-template-columns: 1fr; }
    .topics-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }

    .topic-card { padding: 2rem 1.5rem; }
    .topic-number { font-size: 2rem; }

    .edu-cta-content h2 { font-size: 1.6rem; }

    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1; }
    .footer-logo-img { height: 45px; }
    .footer-nav-title { font-size: 0.95rem; margin-bottom: 1rem; }
    .footer-social-link { width: 45px; height: 45px; font-size: 1.2rem; }
    .footer-copyright { flex-direction: column; text-align: center; gap: 0.75rem; }
    .footer-legal { justify-content: center; }
}

@media (max-width: 576px) {
    .edu-hero-title { font-size: 1.8rem; }
    .edu-hero-stats { flex-direction: column; gap: 1rem; }
    .weekly-item, .benefit-item { padding: 1.5rem 1.2rem; }
    .topic-card { padding: 1.8rem 1.2rem; }
    .footer-modern { padding: 2.5rem 0 1.5rem; }
    .footer-logo-img { height: 40px; }
    .footer-social-link { width: 40px; height: 40px; font-size: 1.1rem; }
}
