/* === BASE STYLES === */:root {
            --primary: #00D9FF;
            --secondary: #FF0080;
            --accent: #FFD600;
            --dark: #0A0E27;
            --light: #F5F7FA;
            --gradient-main: linear-gradient(135deg, #00D9FF 0%, #0066FF 50%, #FF0080 100%);
            --gradient-secondary: linear-gradient(135deg, #FFD600 0%, #FF0080 100%);
            --shadow-sm: 0 2px 8px rgba(0, 217, 255, 0.1);
            --shadow-md: 0 4px 24px rgba(0, 217, 255, 0.2);
            --shadow-lg: 0 8px 48px rgba(0, 217, 255, 0.3);
            --shadow-glow: 0 0 40px rgba(0, 217, 255, 0.4);
        }

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

        html, body {
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--dark);
            color: var(--light);
            line-height: 1.6;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 0, 128, 0.15) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

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

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

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: #FFFFFF;
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--primary);
        }

        p {
            margin-bottom: 1.2rem;
            color: rgba(245, 247, 250, 0.85);
            font-size: 1.05rem;
        }

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

        a:hover {
            color: var(--secondary);
        }

        .btn {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            padding: 18px 40px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            display: inline-block;
            text-decoration: none;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-secondary);
            color: var(--dark);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-glow);
            color: var(--dark);
        }

        .card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 24px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-main);
            border-radius: 24px;
            opacity: 0;
            transition: opacity 0.4s;
            z-index: -1;
        }

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

        .card:hover::before {
            opacity: 1;
        }

        .content-image {
            max-width: 100%;
            margin: 2.5rem auto;
            text-align: center;
            position: relative;
        }

        .content-image img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            transition: transform 0.4s ease;
        }

        .content-image:hover img {
            transform: scale(1.02);
        }

        .content-image.portrait img {
            max-height: 350px;
            max-width: 300px;
        }

        .content-image.wide img {
            max-height: 300px;
            max-width: 100%;
        }

        .content-image figcaption {
            margin-top: 0.8rem;
            font-size: 0.875rem;
            opacity: 0.7;
            font-style: italic;
        }

        .table-responsive {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 217, 255, 0.2);
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        table th,
        table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
        }

        table th {
            background: rgba(0, 217, 255, 0.1);
            font-weight: 700;
            color: var(--primary);
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }

            .btn {
                padding: 14px 30px;
                font-size: 1rem;
            }

            .card {
                padding: 1.5rem;
            }
        }

        /* === LAYOUT STYLES === */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 217, 255, 0.2);
            transition: all 0.3s ease;
        }

        header.scrolled {
            box-shadow: var(--shadow-md);
        }

        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 20px;
            gap: 20px;
        }

        .logo {
            flex-shrink: 0;
            text-decoration: none;
        }

        .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 2px 8px rgba(0, 217, 255, 0.3));
            transition: all 0.3s ease;
            display: inline-block;
        }

        .logo:hover .logo-text {
            filter: drop-shadow(0 4px 12px rgba(0, 217, 255, 0.5));
            transform: scale(1.02);
        }

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

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

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

        .hamburger[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .hamburger[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .nav-menu li a {
            color: var(--light);
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

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

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

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

        header .cta-button {
            white-space: nowrap;
            padding: 12px 28px;
            font-size: 0.95rem;
        }

        footer {
            background: rgba(10, 14, 39, 0.98);
            border-top: 1px solid rgba(0, 217, 255, 0.2);
            padding: 60px 0 30px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient-main);
        }

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

        .footer-section h3,
        .footer-section h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p,
        .footer-section ul li a {
            color: rgba(245, 247, 250, 0.7);
            font-size: 0.95rem;
        }

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

        .footer-section ul li {
            margin-bottom: 0.7rem;
        }

        .footer-section ul li a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(0, 217, 255, 0.1);
        }

        .footer-bottom p {
            color: rgba(245, 247, 250, 0.5);
            font-size: 0.9rem;
            margin: 0;
        }

        @media (max-width: 767px) {
            header .container {
                flex-wrap: wrap;
                gap: 15px;
            }

            .logo {
                order: 1;
            }

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

            nav {
                order: 3;
                width: 100%;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                background: rgba(10, 14, 39, 0.98);
                padding: 20px;
                border-radius: 16px;
                margin-top: 10px;
                border: 1px solid rgba(0, 217, 255, 0.2);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
                padding: 12px 0;
                border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            }

            .nav-menu li:last-child {
                border-bottom: none;
            }

            header .cta-button {
                order: 4;
                width: 100%;
                text-align: center;
                max-width: 100%;
                padding: 14px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

@media (max-width: 767px) {
            header .container {
                flex-wrap: wrap;
                gap: 15px;
            }

            .logo {
                order: 1;
            }

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

            nav {
                order: 3;
                width: 100%;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                background: rgba(10, 14, 39, 0.98);
                padding: 20px;
                border-radius: 16px;
                margin-top: 10px;
                border: 1px solid rgba(0, 217, 255, 0.2);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
                padding: 12px 0;
                border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            }

            .nav-menu li:last-child {
                border-bottom: none;
            }

            header .cta-button {
                order: 4;
                width: 100%;
                text-align: center;
                max-width: 100%;
                padding: 14px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }