/* === BASE STYLES === */:root {
            --primary: #FF3366;
            --secondary: #00D4FF;
            --accent: #FFC700;
            --dark: #0A0E27;
            --dark-blue: #1A1F3A;
            --light: #F8F9FA;
            --gradient-1: linear-gradient(135deg, #FF3366 0%, #FF6B35 100%);
            --gradient-2: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
            --gradient-3: linear-gradient(135deg, #FFC700 0%, #FF8C00 100%);
            --shadow-sm: 0 2px 8px rgba(255, 51, 102, 0.1);
            --shadow-md: 0 4px 20px rgba(255, 51, 102, 0.15);
            --shadow-lg: 0 10px 40px rgba(255, 51, 102, 0.25);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

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

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

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

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

        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 1.5rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 2rem;
            color: var(--light);
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        h4 {
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            margin-bottom: 0.75rem;
            color: var(--accent);
        }

        p {
            margin-bottom: 1rem;
            color: rgba(248, 249, 250, 0.85);
        }

        a {
            text-decoration: none;
            color: var(--secondary);
            transition: var(--transition);
        }

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

        .btn {
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            position: relative;
            overflow: hidden;
            min-width: 44px;
            min-height: 44px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: var(--transition);
            color: #fff;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(255, 51, 102, 0.4);
        }

        .cta-button {
            position: relative;
            z-index: 1;
        }

        .card {
            background: var(--dark-blue);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-md);
            border: 2px solid rgba(0, 212, 255, 0.1);
            transition: var(--transition);
            height: auto;
        }

        .card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

        .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: 8px;
        }

        .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.5rem;
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            width: 100%;
        }
        
        .comparison-table {
            width: 100%;
            min-width: 100%;
            table-layout: auto;
        }
        
        @media (max-width: 767px) {
            .table-responsive {
                overflow-x: scroll;
            }
        }

        /* === LAYOUT STYLES === */
        header {
            position: sticky;
            top: 0;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid rgba(255, 51, 102, 0.2);
            z-index: 1000;
            padding: 1rem 0;
        }

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

        .logo img {
            max-height: 50px;
            height: auto;
            width: auto;
            filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.5));
        }

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

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            min-width: 44px;
            min-height: 44px;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: var(--secondary);
            border-radius: 3px;
            transition: var(--transition);
        }

        .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(8px, -8px);
        }

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

        .nav-menu a {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--light);
            transition: var(--transition);
        }

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

        header .cta-button {
            white-space: nowrap;
            max-width: 200px;
            text-overflow: ellipsis;
            overflow: hidden;
        }

        footer {
            background: var(--dark-blue);
            border-top: 3px solid var(--primary);
            padding: 4rem 0 2rem;
            margin-top: 6rem;
        }

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

        .footer-section h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

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

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

        .footer-section ul a {
            color: rgba(248, 249, 250, 0.8);
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 51, 102, 0.2);
            color: rgba(248, 249, 250, 0.6);
        }

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

            .hamburger {
                display: flex;
            }

            nav {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                gap: 0;
                width: 100%;
                background: var(--dark-blue);
                padding: 1rem 0;
                border-radius: 10px;
                margin-top: 1rem;
            }

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

            .nav-menu li {
                border-bottom: 1px solid rgba(255, 51, 102, 0.1);
            }

            .nav-menu a {
                display: block;
                padding: 1rem;
            }

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

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

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

            .hamburger {
                display: flex;
            }

            nav {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                gap: 0;
                width: 100%;
                background: var(--dark-blue);
                padding: 1rem 0;
                border-radius: 10px;
                margin-top: 1rem;
            }

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

            .nav-menu li {
                border-bottom: 1px solid rgba(255, 51, 102, 0.1);
            }

            .nav-menu a {
                display: block;
                padding: 1rem;
            }

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

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }