/* === BASE STYLES === */:root {
            --primary: #FF3366;
            --primary-dark: #E62958;
            --secondary: #00D9FF;
            --secondary-dark: #00B8D9;
            --accent: #FFD700;
            --dark: #0A0E27;
            --dark-light: #1A1F3A;
            --dark-medium: #252B4A;
            --text: #E8E9F3;
            --text-muted: #A8AABD;
            --success: #00FF88;
            --gradient-primary: linear-gradient(135deg, #FF3366 0%, #FF6B9D 100%);
            --gradient-secondary: linear-gradient(135deg, #00D9FF 0%, #00FFB8 100%);
            --gradient-accent: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
            --shadow-sm: 0 2px 8px rgba(255, 51, 102, 0.15);
            --shadow-md: 0 8px 24px rgba(255, 51, 102, 0.25);
            --shadow-lg: 0 16px 48px rgba(255, 51, 102, 0.35);
            --shadow-glow: 0 0 40px rgba(0, 217, 255, 0.4);
        }

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

        html {
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            position: relative;
        }

        .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;
            margin-bottom: 1.5rem;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

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

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

        p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        section, main, header, footer {
            max-width: 100vw;
            overflow-x: hidden;
        }

        .btn {
            display: inline-block;
            padding: 16px 40px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            text-align: center;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .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 ease;
        }

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

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

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            color: white;
        }

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

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            color: var(--dark);
        }

        .card {
            background: var(--dark-light);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(0, 217, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-secondary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

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

        .card:hover::before {
            transform: scaleX(1);
        }

        /* === LAYOUT STYLES === */
        .header {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

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

        .logo {
            flex-shrink: 0;
        }

        .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
        }

        .logo-text::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-primary);
        }

        .main-nav {
            flex-grow: 1;
        }

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

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--secondary);
            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-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            margin: 0;
        }

        .nav-list a {
            color: var(--text);
            font-size: 1rem;
            font-weight: 600;
            position: relative;
            padding: 8px 0;
        }

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

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

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

        .header .cta-button {
            flex-shrink: 0;
            background: linear-gradient(135deg, #00d9ff 0%, #ff3366 100%);
            color: white;
            padding: 14px 32px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-align: center;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4),
                        0 0 20px rgba(255, 51, 102, 0.2);
            text-decoration: none;
            display: inline-block;
        }

        .header .cta-button::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 ease;
        }

        .header .cta-button:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 25px rgba(0, 217, 255, 0.6),
                        0 0 30px rgba(255, 51, 102, 0.4);
            color: white;
        }

        .header .cta-button:hover::before {
            left: 100%;
        }

        .header .cta-button:active {
            transform: translateY(0) scale(1);
            box-shadow: 0 2px 10px rgba(0, 217, 255, 0.3);
        }

        .footer {
            background: var(--dark-light);
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            padding: 3rem 0 2rem;
            margin-top: 6rem;
        }

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

        .footer-nav a {
            color: var(--text-muted);
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

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

        .copyright {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
            margin: 0;
        }

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

            .container {
                padding: 0 15px;
                max-width: 100%;
                width: 100%;
            }

            .header-content {
                display: flex;
                flex-wrap: wrap;
                position: relative;
                width: 100%;
                max-width: 100%;
                align-items: center;
                gap: 0.5rem;
                row-gap: 0.75rem;
            }

            .logo {
                order: 1;
                flex: 0 1 auto;
                min-width: 0;
            }

            .main-nav {
                order: 2;
                display: flex;
                align-items: center;
                flex: 0 1 auto;
                margin-left: auto;
                position: relative;
            }

            .hamburger {
                display: flex !important;
                flex-shrink: 0;
                position: relative;
                z-index: 1;
            }

            .header .cta-button {
                order: 10;
                flex-basis: 100%;
                width: 100%;
                max-width: 100%;
                margin-top: 0;
                margin-bottom: 1rem;
                margin-left: 0;
                margin-right: 0;
                text-align: center;
            }

            .logo,
            .main-nav {
                flex-basis: auto;
            }

            .nav-list {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                max-height: 100vh;
                background: var(--dark-light);
                flex-direction: column;
                padding: 1rem 1rem 1.5rem;
                gap: 0;
                align-items: flex-start;
                justify-content: flex-start;
                transition: right 0.4s ease;
                box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
                border-left: 1px solid rgba(0, 217, 255, 0.2);
                overflow: hidden;
            }

            .nav-list.active {
                right: 0;
            }

            .nav-list li {
                width: 100%;
                margin: 0;
                padding: 0.5rem 0;
            }

            .nav-list a {
                display: block;
                width: 100%;
                padding: 0;
                font-size: 0.95rem;
            }

            .header .cta-button {
                order: 3;
                width: 100%;
                margin-top: 0.5rem;
                text-align: center;
            }

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

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

            .logo {
                order: 1;
            }

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

            .main-nav {
                order: 4;
                width: 100%;
                flex-grow: 0;
            }

            .nav-list {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                max-height: 100vh;
                background: var(--dark-light);
                flex-direction: column;
                padding: 1rem 1rem 1.5rem;
                gap: 0;
                align-items: flex-start;
                justify-content: flex-start;
                transition: right 0.4s ease;
                box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
                border-left: 1px solid rgba(0, 217, 255, 0.2);
                overflow: hidden;
            }

            .nav-list.active {
                right: 0;
            }

            .nav-list li {
                width: 100%;
                margin: 0;
                padding: 0.5rem 0;
            }

            .nav-list a {
                display: block;
                width: 100%;
                padding: 0;
                font-size: 0.95rem;
            }

            .header .cta-button {
                order: 3;
                width: 100%;
                margin-top: 0.5rem;
                text-align: center;
            }

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

@media (max-width: 767px) {
            section {
                padding: 3rem 0;
            }

            .hero-section {
                padding: 5rem 0 3rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.4rem;
            }

            .hero-section p {
                font-size: 1.1rem;
            }

            .feature-table table,
            .comparison-table table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }

            .feature-table th,
            .feature-table td,
            .comparison-table th,
            .comparison-table td {
                padding: 1rem;
                font-size: 0.9rem;
            }

            .timeline-item {
                padding-left: 2rem;
            }

            .numbered-list li {
                padding: 1.5rem 1.5rem 1.5rem 4rem;
            }

            .numbered-list li::before {
                left: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .accordion-header {
                padding: 1.2rem 1.5rem;
            }

            .accordion-header h3 {
                font-size: 1.1rem;
            }

            .accordion-body.active {
                padding: 0 1.5rem 1.5rem;
            }

            .accordion-body p {
                font-size: 1rem;
            }
        }