:root { 
    --bg: #050505; 
    --text: #e0e0e0; 
    --accent: #ff4757; 
    --gold: #ffd700; 
    --surface: #121212; 
}

body { 
    margin: 0; 
    font-family: 'Outfit', sans-serif; 
    background: var(--bg); 
    color: var(--text); 
    overflow-x: hidden; 
    line-height: 1.6; 
}

/* Navbar */
.nav { 
    position: fixed; top: 0; width: 100%; padding: 15px 20px; 
    display: flex; justify-content: space-between; align-items: center; 
    z-index: 100; backdrop-filter: blur(15px); 
    background: rgba(5,5,5,0.7); border-bottom: 1px solid rgba(255,255,255,0.1); 
    box-sizing: border-box;
}
.nav-logo { font-weight: 800; letter-spacing: 1px; font-size: 1.1rem; }
.nav-login { 
    color: #fff; text-decoration: none; font-size: 0.9rem; 
    border: 1px solid #333; padding: 8px 20px; border-radius: 50px; 
    transition: all 0.3s; 
}
.nav-login:hover { background: #fff; color: #000; }

/* Hero Section */
.hero { 
    min-height: 90vh; display: flex; flex-direction: column; 
    justify-content: center; align-items: center; text-align: center; 
    padding: 20px; position: relative; margin-top: 60px; 
}
.pathshala-badge { 
    background: rgba(255, 71, 87, 0.15); color: var(--accent); 
    border: 1px solid var(--accent); padding: 8px 16px; border-radius: 50px; 
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase; 
    letter-spacing: 1px; display: inline-block; margin-bottom: 20px; 
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.2); 
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 20px; }
.glitch { color: var(--accent); position: relative; display: inline-block; }

.cta-btn { 
    background: #fff; color: #000; padding: 18px 40px; 
    font-size: 1.1rem; font-weight: 800; border: none; border-radius: 50px; 
    cursor: pointer; transition: transform 0.2s; margin-top: 30px; 
    text-decoration: none; display: inline-block; 
}
.cta-btn:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(255,255,255,0.2); }

/* Section Styling */
section { padding: 80px 20px; max-width: 1000px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 40px; font-weight: 800; }
.section-title span { color: var(--accent); }

/* Problem Section */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.problem-card { 
    background: var(--surface); padding: 30px; border-radius: 16px; 
    border: 1px solid #222; position: relative; overflow: hidden; 
}
.problem-card h3 { margin-top: 0; color: #fff; }
.problem-card::before { 
    content: ''; position: absolute; top: 0; left: 0; 
    width: 4px; height: 100%; background: var(--accent); 
}

/* Solution Section */
.module-list { list-style: none; padding: 0; }
.module-item { 
    background: #111; margin-bottom: 15px; padding: 20px; 
    border-radius: 12px; display: flex; align-items: center; 
    border: 1px solid #222; transition: 0.3s; 
}
.module-item:hover { border-color: #444; transform: translateX(5px); }
.module-icon { 
    font-size: 1.5rem; margin-right: 20px; background: #222; 
    width: 50px; height: 50px; display: flex; align-items: center; 
    justify-content: center; border-radius: 50%; 
}

/* Pricing */
.price-card { 
    background: linear-gradient(180deg, #111 0%, #000 100%); 
    border: 1px solid #333; padding: 50px 30px; border-radius: 24px; 
    text-align: center; position: relative; overflow: hidden; 
}
.price-amount { font-size: 4rem; font-weight: 800; color: #fff; margin: 10px 0; }
.price-original { text-decoration: line-through; color: #666; font-size: 1.5rem; }

/* Footer */
.footer { 
    padding: 60px 20px; text-align: center; border-top: 1px solid #222; 
    background: #080808; margin-top: 50px; 
}
.social-links { display: flex; justify-content: center; gap: 15px; margin: 20px 0; }
.social-btn { 
    color: #aaa; text-decoration: none; border: 1px solid #333; 
    padding: 10px 20px; border-radius: 50px; display: flex; 
    align-items: center; gap: 8px; font-size: 0.9rem; transition: 0.3s; 
}
.social-btn:hover { color: #fff; border-color: var(--accent); background: rgba(255, 71, 87, 0.1); }
.legal-links a { color: #666; text-decoration: none; margin: 0 10px; font-size: 0.8rem; }
.legal-links a:hover { color: var(--accent); }