/* === BASE STYLES === */:root {
            --primary: #00FFB3;
            --primary-dark: #00D896;
            --secondary: #FF006E;
            --accent: #8338EC;
            --dark: #0A0E27;
            --dark-alt: #151B3D;
            --light: #E8F5FF;
            --text-primary: #FFFFFF;
            --text-secondary: #B4C5E4;
            --shadow-sm: 0 4px 20px rgba(131, 56, 236, 0.15);
            --shadow-md: 0 8px 40px rgba(0, 255, 179, 0.2);
            --shadow-lg: 0 20px 60px rgba(255, 0, 110, 0.25);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }

        html {
            overflow-x: hidden;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3, h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        h1 {
            font-size: clamp(36px, 6vw, 72px);
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(32px, 5vw, 56px);
            margin-bottom: 32px;
            color: var(--text-primary);
        }

        h3 {
            font-size: clamp(24px, 3vw, 36px);
            margin-bottom: 16px;
            color: var(--primary);
        }

        h4 {
            font-size: clamp(18px, 2.5vw, 24px);
            margin-bottom: 12px;
        }

        p {
            font-size: 17px;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--primary-dark);
        }

        ul, ol {
            padding-left: 24px;
            margin-bottom: 20px;
        }

        li {
            margin-bottom: 12px;
            color: var(--text-secondary);
            font-size: 17px;
        }

        strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--dark);
            font-weight: 700;
            font-size: 18px;
            padding: 16px 40px;
            border-radius: 50px;
            border: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 50px rgba(0, 255, 179, 0.4);
            color: var(--text-primary);
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .card {
            background: var(--dark-alt);
            border-radius: 24px;
            padding: 40px;
            border: 1px solid rgba(131, 56, 236, 0.2);
            transition: all 0.4s ease;
            box-shadow: var(--shadow-sm);
            height: 100%;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 24px;
        }

        table {
            width: 100%;
            background: var(--dark-alt);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(131, 56, 236, 0.2);
        }

        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        @media (max-width: 767px) {
            .table-responsive {
                overflow-x: auto !important;
                overflow-y: visible !important;
                -webkit-overflow-scrolling: touch !important;
                display: block !important;
                width: 100% !important;
                max-width: 100vw !important;
                position: relative;
            }

            .table-responsive table {
                min-width: 600px !important;
                width: auto !important;
            }

            .table-responsive * {
                overflow-x: visible !important;
            }

            .container .table-responsive,
            section.container .table-responsive,
            .col-lg-12 .table-responsive {
                overflow-x: auto !important;
            }
        }

        table thead {
            background: linear-gradient(135deg, var(--accent), var(--secondary));
        }

        table thead th {
            padding: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            color: var(--text-primary);
            border: none;
        }

        table tbody td {
            padding: 20px;
            border-bottom: 1px solid rgba(131, 56, 236, 0.1);
            color: var(--text-secondary);
            font-size: 16px;
        }

        table tbody tr:last-child td {
            border-bottom: none;
        }

        table tbody tr {
            transition: background 0.3s ease;
        }

        table tbody tr:hover {
            background: rgba(0, 255, 179, 0.05);
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(131, 56, 236, 0.15), rgba(255, 0, 110, 0.15));
            border-left: 4px solid var(--primary);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 32px;
            box-shadow: var(--shadow-sm);
        }

        .highlight-box h3 {
            color: var(--primary);
        }

        .highlight-box p {
            color: var(--text-secondary);
        }

        .highlight-box img {
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        .timeline-item {
            position: relative;
            padding-left: 50px;
            margin-bottom: 40px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 20px;
            height: 20px;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: 0 0 0 6px rgba(0, 255, 179, 0.2);
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            left: 9px;
            top: 28px;
            width: 2px;
            height: calc(100% + 20px);
            background: linear-gradient(180deg, var(--primary), transparent);
        }

        .timeline-item:last-child::after {
            display: none;
        }

        .accordion-item {
            background: var(--dark-alt);
            border: 1px solid rgba(131, 56, 236, 0.2);
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--primary);
        }

        .accordion-header {
            padding: 24px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .accordion-header::after {
            content: '+';
            font-size: 32px;
            color: var(--primary);
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .accordion-header.active::after {
            transform: rotate(45deg);
        }

        .accordion-header h3 {
            margin: 0;
            font-size: 20px;
            color: var(--text-primary);
            padding-right: 40px;
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 30px;
        }

        .accordion-body.active {
            max-height: 1000px;
            padding: 0 30px 24px;
        }

        /* === LAYOUT STYLES === */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(131, 56, 236, 0.2);
            padding: 20px 0;
        }

        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo {
            display: inline-block;
            text-decoration: none;
        }

        .logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-menu {
            display: flex;
            gap: 32px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            gap: 5px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        footer {
            background: var(--dark-alt);
            border-top: 1px solid rgba(131, 56, 236, 0.2);
            padding: 60px 0 30px;
            margin-top: 100px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            color: var(--primary);
            margin-bottom: 20px;
        }

        .footer-section p {
            color: var(--text-secondary);
            font-size: 15px;
        }

        .footer-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav li {
            margin-bottom: 12px;
        }

        .footer-nav a {
            color: var(--text-secondary);
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(131, 56, 236, 0.1);
        }

        .footer-bottom p {
            color: var(--text-secondary);
            font-size: 14px;
            margin: 0;
        }

        @media (max-width: 991px) {
            nav {
                gap: 20px;
            }

            .nav-menu {
                gap: 20px;
            }
        }

        @media (max-width: 767px) {
            html, body {
                overflow-x: hidden !important;
                width: 100%;
                max-width: 100vw;
            }

            header {
                padding: 16px 0;
                overflow-x: hidden;
            }

            header .container {
                gap: 16px;
                overflow-x: hidden;
            }

            .table-responsive,
            .container .table-responsive,
            section.container .table-responsive,
            .col-lg-12 .table-responsive,
            .row .table-responsive {
                overflow-x: auto !important;
            }

            .logo img {
                height: 32px;
            }

            .hamburger {
                display: flex;
                order: 3;
            }

            nav {
                order: 4;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }

            nav.active {
                max-height: 500px;
            }

            .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: 0;
                padding: 20px 0;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(131, 56, 236, 0.1);
            }

            .nav-menu a {
                display: block;
                padding: 16px;
            }

            header .btn-primary {
                order: 4;
                width: 100%;
                text-align: center;
                margin-top: 16px;
                padding: 14px 32px;
                font-size: 16px;
            }
        }

@media (max-width: 991px) {
            nav {
                gap: 20px;
            }

            .nav-menu {
                gap: 20px;
            }
        }

@media (max-width: 767px) {
            header {
                padding: 16px 0;
            }

            header .container {
                gap: 16px;
            }

            .logo img {
                height: 32px;
            }

            .hamburger {
                display: flex;
                order: 3;
            }

            nav {
                order: 4;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }

            nav.active {
                max-height: 500px;
            }

            .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: 0;
                padding: 20px 0;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(131, 56, 236, 0.1);
            }

            .nav-menu a {
                display: block;
                padding: 16px;
            }

            header .btn-primary {
                order: 4;
                width: 100%;
                text-align: center;
                margin-top: 16px;
                padding: 14px 32px;
                font-size: 16px;
            }
        }