*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#f4f4f4;
}
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #e0e7f1 0%, #f5e6ff 30%, #e8f4f8 60%, #fdf2f8 100%);
            min-height: 100vh;
            overflow-x: hidden;
            color: #2d3748;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: linear-gradient(
                135deg,
                rgba(99, 102, 241, 0.92) 0%,
                rgba(139, 92, 246, 0.92) 100%
            );

            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);

            padding: 0 40px;

            display: flex;
            justify-content: space-between;
            align-items: center;

            position: sticky;
            top: 0;
            z-index: 1000;

            box-shadow:
                0 4px 20px rgba(99, 102, 241, 0.35),
                0 2px 6px rgba(0, 0, 0, 0.08);

            border-bottom: 2px solid rgba(255, 255, 255, 0.15);
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15),
                        inset 0 1px 0 rgba(255, 255, 255, 0.9);
            position: relative;
            transform: perspective(200px) rotateY(-5deg);
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            right: 3px;
            bottom: 3px;
            border-radius: 11px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            position: relative;
            z-index: 1;
            width: 26px;
            height: 26px;
        }

        .logo-text {
            color: #ffffff;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 2px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
        }

        .logo-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 6px;
            align-items: center;
        }

        .nav-links li a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            letter-spacing: 0.3px;
        }

        .nav-links li a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .nav-links li a.active {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .nav-btn-login {
            background: linear-gradient(135deg, #ffffff 0%, #f0edff 100%) !important;
            color: #6366f1 !important;
            font-weight: 700 !important;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3),
                        0 2px 6px rgba(0, 0, 0, 0.1) !important;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .nav-btn-login:hover {
            transform: translateY(-3px) !important;
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4) !important;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: calc(100vh - 80px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }

        /* Decorative floating shapes */
        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            bottom: -80px;
            left: -80px;
            border-radius: 50%;
        }

        .hero-container {
            max-width: 1200px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 80px;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            flex: 1;
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.12));
            border: 1px solid rgba(99, 102, 241, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: #6366f1;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 24px;
            box-shadow: 0 2px 10px rgba(99, 102, 241, 0.08);
        }

        .hero-title {
            font-size: 52px;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1e1b4b 0%, #4338ca 40%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-title span {
            background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            font-size: 17px;
            line-height: 1.8;
            color: #64748b;
            margin-bottom: 36px;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: #ffffff;
            text-decoration: none;
            border-radius: 16px;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4),
                        0 4px 12px rgba(99, 102, 241, 0.25),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transform: perspective(500px) translateZ(0);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .btn-primary:hover {
            transform: translateY(-4px) perspective(500px) translateZ(10px);
            box-shadow: 0 14px 40px rgba(99, 102, 241, 0.5),
                        0 6px 16px rgba(99, 102, 241, 0.3);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f7ff 100%);
            color: #6366f1;
            text-decoration: none;
            border-radius: 16px;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.5px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06),
                        0 2px 8px rgba(0, 0, 0, 0.04),
                        inset 0 1px 0 rgba(255, 255, 255, 1);
            border: 2px solid rgba(99, 102, 241, 0.15);
        }

        .btn-secondary:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08),
                        0 4px 12px rgba(0, 0, 0, 0.06);
            border-color: rgba(99, 102, 241, 0.3);
        }

        /* ===== HERO ILLUSTRATION (CSS 3D Card) ===== */
        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .illustration-stack {
            position: relative;
            width: 420px;
            height: 420px;
        }

        .illus-card {
            position: absolute;
            border-radius: 28px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
                        0 8px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.6);
        }

        .illus-card-1 {
            width: 340px;
            height: 280px;
            background: linear-gradient(145deg, #ffffff 0%, #f0edff 100%);
            top: 20px;
            left: 0;
            transform: perspective(800px) rotateY(8deg) rotateX(-3deg) translateZ(20px);
            z-index: 3;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .illus-card-2 {
            width: 260px;
            height: 200px;
            background: linear-gradient(145deg, #ede9fe 0%, #ddd6fe 100%);
            bottom: 30px;
            right: 0;
            transform: perspective(800px) rotateY(-8deg) rotateX(3deg) translateZ(10px);
            z-index: 2;
            padding: 24px;
        }

        .illus-card-3 {
            width: 180px;
            height: 150px;
            background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 100%);
            top: 0;
            right: 20px;
            transform: perspective(800px) rotateY(5deg) rotateX(-5deg) translateZ(0px);
            z-index: 1;
            padding: 20px;
        }

        /* Card inner elements */
        .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .card-avatar {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: linear-gradient(135deg, #6366f1, #a855f7);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
        }

        .card-lines {
            flex: 1;
        }

        .card-line {
            height: 10px;
            border-radius: 5px;
            margin-bottom: 8px;
        }

        .card-line-1 {
            width: 80%;
            background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
        }

        .card-line-2 {
            width: 55%;
            background: linear-gradient(90deg, #f1f5f9, #e2e8f0);
            height: 8px;
        }

        .card-stats {
            display: flex;
            gap: 12px;
            margin-top: auto;
        }

        .stat-box {
            flex: 1;
            height: 60px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(168, 85, 247, 0.08));
            border: 1px solid rgba(99, 102, 241, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .stat-circle {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
        }

        .stat-label {
            width: 30px;
            height: 6px;
            border-radius: 3px;
            background: #cbd5e1;
        }

        .card-chart {
            flex: 1;
            display: flex;
            align-items: flex-end;
            gap: 8px;
            padding-top: 10px;
        }

        .chart-bar {
            flex: 1;
            border-radius: 6px 6px 0 0;
            background: linear-gradient(180deg, #8b5cf6, #a78bfa);
            box-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
        }

        .cb1 { height: 40%; opacity: 0.6; }
        .cb2 { height: 65%; opacity: 0.7; }
        .cb3 { height: 45%; opacity: 0.5; }
        .cb4 { height: 85%; opacity: 0.8; }
        .cb5 { height: 55%; opacity: 0.65; }
        .cb6 { height: 100%; opacity: 1; }
        .cb7 { height: 70%; opacity: 0.75; }

        .card-dots {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding-top: 10px;
        }

        .dot-item {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 12px;
        }

        .di1 { background: linear-gradient(135deg, #6366f1, #818cf8); }
        .di2 { background: linear-gradient(135deg, #a855f7, #c084fc); }
        .di3 { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
        .di4 { background: linear-gradient(135deg, #ec4899, #f472b6); }
        .di5 { background: linear-gradient(135deg, #10b981, #34d399); }
        .di6 { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

        /* Floating elements */
        .float-element {
            position: absolute;
            border-radius: 16px;
            z-index: 4;
        }

        .float-el-1 {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            top: -10px;
            left: -20px;
            transform: perspective(500px) rotate(15deg) translateZ(30px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .float-el-1::after {
            content: '📚';
            font-size: 28px;
        }

        .float-el-2 {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #34d399, #10b981);
            bottom: 10px;
            left: -10px;
            transform: perspective(500px) rotate(-10deg) translateZ(25px);
            box-shadow: 0 10px 30px rgba(52, 211, 153, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .float-el-2::after {
            content: '🎓';
            font-size: 26px;
        }

        .float-el-3 {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #f472b6, #ec4899);
            bottom: 60px;
            right: -15px;
            transform: perspective(500px) rotate(20deg) translateZ(35px);
            box-shadow: 0 10px 30px rgba(244, 114, 182, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .float-el-3::after {
            content: '💡';
            font-size: 24px;
        }

        /* ===== FEATURES SECTION ===== */
        .features {
            padding: 100px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-tag {
            display: inline-block;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
            border: 1px solid rgba(99, 102, 241, 0.15);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            color: #6366f1;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 40px;
            font-weight: 800;
            background: linear-gradient(135deg, #1e1b4b, #4338ca);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 14px;
        }

        .section-desc {
            font-size: 16px;
            color: #94a3b8;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: linear-gradient(145deg, #ffffff 0%, #faf9ff 100%);
            border-radius: 24px;
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(99, 102, 241, 0.08);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04),
                        0 12px 40px rgba(99, 102, 241, 0.06);
            transform: perspective(800px) rotateX(0deg) rotateY(0deg);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: perspective(800px) rotateX(-2deg) rotateY(2deg) translateY(-8px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06),
                        0 20px 50px rgba(99, 102, 241, 0.1);
            border-color: rgba(99, 102, 241, 0.15);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            border-radius: 24px 24px 0 0;
        }

        .fc-1::before { background: linear-gradient(90deg, #6366f1, #818cf8); }
        .fc-2::before { background: linear-gradient(90deg, #a855f7, #c084fc); }
        .fc-3::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
        .fc-4::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
        .fc-5::before { background: linear-gradient(90deg, #10b981, #34d399); }
        .fc-6::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }

        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 30px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }

        .fi-1 { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
        .fi-2 { background: linear-gradient(135deg, #fae8ff, #f0abfc); }
        .fi-3 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
        .fi-4 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
        .fi-5 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
        .fi-6 { background: linear-gradient(135deg, #fef3c7, #fde68a); }

        .feature-title {
            font-size: 20px;
            font-weight: 700;
            color: #1e1b4b;
            margin-bottom: 12px;
        }

        .feature-desc {
            font-size: 14px;
            color: #94a3b8;
            line-height: 1.7;
        }

        /* ===== STATS SECTION ===== */
        .stats {
            padding: 80px 40px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .stats-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 44px;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* ===== LOGIN SECTION ===== */
        .login-section {
            padding: 100px 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .login-wrapper {
            display: flex;
            gap: 60px;
            align-items: center;
            max-width: 1000px;
            width: 100%;
        }

        .login-info {
            flex: 1;
        }

        .login-info-title {
            font-size: 38px;
            font-weight: 800;
            background: linear-gradient(135deg, #1e1b4b, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 18px;
            line-height: 1.2;
        }

        .login-info-desc {
            font-size: 16px;
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .info-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .info-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 15px;
            color: #475569;
            font-weight: 500;
        }

        .info-icon {
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: linear-gradient(135deg, #ede9fe, #ddd6fe);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 3px 10px rgba(99, 102, 241, 0.1);
            flex-shrink: 0;
        }

        .login-card {
            flex: 0 0 420px;
            background: linear-gradient(145deg, #ffffff 0%, #faf9ff 100%);
            border-radius: 28px;
            padding: 44px 40px;
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.12),
                        0 8px 24px rgba(0, 0, 0, 0.06),
                        inset 0 1px 0 rgba(255, 255, 255, 1);
            border: 1px solid rgba(99, 102, 241, 0.08);
            position: relative;
        }

        .login-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 20px;
            right: 20px;
            height: 3px;
            background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
            border-radius: 0 0 4px 4px;
        }

        .login-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .login-avatar {
            width: 70px;
            height: 70px;
            border-radius: 22px;
            background: linear-gradient(135deg, #6366f1, #a855f7);
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

        .login-avatar svg {
            width: 36px;
            height: 36px;
        }

        .login-title {
            font-size: 24px;
            font-weight: 800;
            color: #1e1b4b;
            margin-bottom: 6px;
        }

        .login-subtitle {
            font-size: 14px;
            color: #94a3b8;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: #475569;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .form-input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 14px;
            font-size: 15px;
            color: #334155;
            background: linear-gradient(145deg, #f8fafc, #ffffff);
            outline: none;
            transition: all 0.3s ease;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
        }

        .form-input:focus {
            border-color: #6366f1;
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1),
                        inset 0 2px 4px rgba(0, 0, 0, 0.02);
        }

        .form-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 26px;
        }

        .form-check {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-checkbox {
            width: 18px;
            height: 18px;
            border: 2px solid #cbd5e1;
            border-radius: 6px;
            appearance: none;
            cursor: pointer;
            background: #f8fafc;
        }

        .form-checkbox:checked {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-color: #6366f1;
        }

        .form-check-label {
            font-size: 13px;
            color: #64748b;
        }

        .form-forgot {
            font-size: 13px;
            color: #6366f1;
            text-decoration: none;
            font-weight: 600;
        }

        .form-forgot:hover {
            color: #4f46e5;
            text-decoration: underline;
        }

        .btn-login {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: #ffffff;
            border: none;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.5px;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: block;
            text-align: center;
            text-decoration: none;
            margin-bottom: 20px;
        }

        .btn-login:hover {
            box-shadow: 0 12px 35px rgba(99, 102, 241, 0.45),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .login-divider {
            text-align: center;
            position: relative;
            margin: 24px 0;
        }

        .login-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e2e8f0;
        }

        .login-divider span {
            position: relative;
            background: #faf9ff;
            padding: 0 16px;
            font-size: 12px;
            color: #94a3b8;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-register {
            width: 100%;
            padding: 14px;
            background: transparent;
            color: #6366f1;
            border: 2px solid rgba(99, 102, 241, 0.2);
            border-radius: 14px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            display: block;
            text-align: center;
            text-decoration: none;
        }

        .btn-register:hover {
            background: rgba(99, 102, 241, 0.05);
            border-color: rgba(99, 102, 241, 0.35);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
            padding: 60px 40px 30px;
            color: #ffffff;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .footer-logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #6366f1, #a855f7);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
        }

        .footer-logo-text {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 2px;
        }

        .footer-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
        }

        .footer-heading {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links li a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-links li a:hover {
            color: #ffffff;
            padding-left: 6px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copy {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 16px;
        }

        .social-icon:hover {
            background: rgba(99, 102, 241, 0.3);
            border-color: rgba(99, 102, 241, 0.4);
            color: #ffffff;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-container {
                flex-direction: column;
                text-align: center;
            }

            .hero-desc {
                margin: 0 auto 36px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .login-wrapper {
                flex-direction: column;
            }

            .login-card {
                flex: none;
                width: 100%;
                max-width: 460px;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
                flex-direction: column;
                gap: 12px;
            }

            .nav-links {
                padding: 12px 0;
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero {
                padding: 40px 20px;
            }

            .hero-title {
                font-size: 36px;
            }

            .illustration-stack {
                width: 300px;
                height: 300px;
            }

            .illus-card-1 {
                width: 260px;
                height: 220px;
            }

            .illus-card-2 {
                width: 200px;
                height: 160px;
            }

            .illus-card-3 {
                width: 140px;
                height: 120px;
            }

            .features {
                padding: 60px 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 30px;
            }

            .stats {
                padding: 60px 20px;
            }

            .stats-container {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .login-section {
                padding: 60px 20px;
            }

            .login-card {
                padding: 32px 24px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }
        /* ===== REGISTER ===== */

.register-card{
    flex: 0 0 560px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Scrollbar */
.register-card::-webkit-scrollbar{
    width: 8px;
}

.register-card::-webkit-scrollbar-thumb{
    background: #6366f1;
    border-radius: 10px;
}

.register-card::-webkit-scrollbar-track{
    background: #f1f5f9;
}

/* ===== ADMIN DASHBOARD ===== */

.dashboard-container{
    width:95%;
    margin:40px auto 80px;
}

.dashboard-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.dashboard-title{
    font-size:38px;
    font-weight:800;
    color:#1e1b4b;
    margin-bottom:6px;
}

.dashboard-subtitle{
    color:#64748b;
    font-size:16px;
}

.btn-primary-dashboard{
    background:linear-gradient(
        135deg,
        #6366f1,
        #8b5cf6
    );

    color:white;
    text-decoration:none;

    padding:14px 24px;
    border-radius:16px;

    font-weight:700;

    box-shadow:
        0 8px 25px rgba(99,102,241,0.25);

    transition:0.3s;
}

.btn-primary-dashboard:hover{
    transform:translateY(-3px);
}

/* ===== CARD ===== */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.stat-card{
    background:rgba(255,255,255,0.9);

    backdrop-filter:blur(10px);

    border-radius:24px;

    padding:28px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

    border:1px solid rgba(255,255,255,0.4);
}

.stat-card h3{
    color:#64748b;
    margin-bottom:10px;
    font-size:16px;
}

.stat-card p{
    font-size:42px;
    font-weight:800;
    color:#4338ca;
}

/* ===== TABLE USER ===== */

.table-user{
    display:flex;
    align-items:center;
    gap:14px;
}

.table-avatar{
    width:48px;
    height:48px;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #6366f1,
        #8b5cf6
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;
    font-size:22px;

    box-shadow:
        0 8px 20px rgba(99,102,241,0.25);
}

.table-name{
    font-weight:700;
    color:#1e1b4b;
    margin-bottom:4px;
}

.table-role{
    font-size:13px;
    color:#94a3b8;
}

.table-id{
    font-weight:700;
    color:#4338ca;
}

.badge-jk{
    background:#ede9fe;
    color:#6d28d9;

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;
    font-weight:700;
}

.table-action{
    display:flex;
    gap:10px;
}

.profile-card{
    width:320px;
    margin:35px auto 0;
    background:rgba(255,255,255,0.25);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.35);
    border-radius:28px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 40px rgba(139,92,246,0.2);
}

.profile-avatar{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#6366f1,#8b5cf6);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    color:white;
    margin-bottom:18px;
}

.profile-card h3{
    margin:0;
    font-size:24px;
    font-weight:700;
    color:#1e293b;
}

.profile-card p{
    margin:8px 0;
    color:#7c3aed;
    font-weight:600;
    text-transform:capitalize;
}

.profile-card span{
    color:#64748b;
    font-size:14px;
}