/* === BASE STYLES === */:root {
            --primary: #FF3366;
            --primary-dark: #E02557;
            --secondary: #6366F1;
            --accent: #10B981;
            --dark: #0F172A;
            --dark-secondary: #1E293B;
            --light: #F8FAFC;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --gradient-primary: linear-gradient(135deg, #FF3366 0%, #FF6B9D 100%);
            --gradient-secondary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
            --gradient-dark: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
        }

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

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

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

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

        h1, h2, h3, h4 {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            line-height: 1.2;
        }

        h1 {
            font-size: clamp(2rem, 5vw, 4.5rem);
            margin-bottom: 1.5rem;
        }

        h2 {
            font-size: clamp(1.75rem, 4vw, 3.5rem);
            margin-bottom: 1.5rem;
        }

        h3 {
            font-size: clamp(1.25rem, 3vw, 2rem);
            margin-bottom: 1rem;
        }

        p {
            font-size: 1.0625rem;
            color: var(--text-secondary);
            margin-bottom: 1.25rem;
        }

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

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

        .btn {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            border: none;
            font-size: 1.0625rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

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

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

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(255, 51, 102, 0.5);
        }

        .btn-secondary {
            background: var(--gradient-secondary);
            color: white;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
        }

        .card {
            background: var(--dark-secondary);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

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

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

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

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

        .content-image img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            border-radius: 12px;
        }

        .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.75rem;
            font-size: 0.9375rem;
            color: var(--text-secondary);
            font-style: italic;
        }

        .table-responsive {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 12px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--dark-secondary);
            border-radius: 12px;
            overflow: hidden;
        }

        thead {
            background: var(--gradient-primary);
        }

        th {
            padding: 1.25rem 1rem;
            text-align: left;
            font-weight: 700;
            font-size: 0.9375rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        td {
            padding: 1.25rem 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-secondary);
        }

        tbody tr {
            transition: background 0.3s ease;
        }

        tbody tr:hover {
            background: rgba(255, 51, 102, 0.05);
        }

        /* === LAYOUT STYLES === */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1rem 0;
        }

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

        .logo img {
            max-height: 80px;
            width: auto;
        }

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

        .hamburger span {
            width: 25px;
            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(7px, 7px);
        }

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

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

        header nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        header .nav-menu {
            display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding-left: 0;
    margin-bottom: 0;
        }

        header .nav-menu a {
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.9375rem;
            transition: color 0.3s ease;
            position: relative;
        }

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

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

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

        header .cta-button {
            white-space: nowrap;
        }

        footer {
            background: var(--dark-secondary);
            padding: 3rem 0 2rem;
            margin-top: 5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            text-align: center;
        }

        .footer-logo img {
            height: 42px;
            width: auto;
        }

        .footer-nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: var(--text-secondary);
            font-size: 0.9375rem;
        }

        .footer-info p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

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

            .hamburger {
                display: flex;
            }

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

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

            header .nav-menu {
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
            }

            header .nav-menu li {
                width: 100%;
            }

            header .nav-menu a {
                display: block;
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            header .cta-button {
                width: 100%;
                text-align: center;
                margin-top: 1rem;
                max-width: 100%;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .footer-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
        }