/* === BASE STYLES === */:root {
            --primary: #FF2E63;
            --secondary: #08D9D6;
            --accent: #FFEB3B;
            --dark: #0A0E27;
            --dark-alt: #1A1F3A;
            --light: #F8F9FA;
            --text-primary: #FFFFFF;
            --text-secondary: #B8C5D6;
            --gradient-primary: linear-gradient(135deg, #FF2E63 0%, #FF006E 100%);
            --gradient-secondary: linear-gradient(135deg, #08D9D6 0%, #00B4D8 100%);
            --gradient-accent: linear-gradient(135deg, #FFEB3B 0%, #FFC107 100%);
            --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
        }

        * {
            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(--text-primary);
            line-height: 1.6;
        }

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

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

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--text-primary);
        }

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

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

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

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

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

        .btn {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            display: inline-block;
            white-space: nowrap;
        }

        .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: var(--gradient-primary);
            color: var(--text-primary);
            box-shadow: 0 10px 30px rgba(255, 46, 99, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 46, 99, 0.6);
        }

        .cta-button {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            display: inline-block;
            background: var(--gradient-primary);
            color: var(--text-primary);
            box-shadow: 0 10px 30px rgba(255, 46, 99, 0.4);
            white-space: nowrap;
        }

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

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 46, 99, 0.6);
            color: var(--text-primary);
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .card {
            background: var(--dark-alt);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(8, 217, 214, 0.2);
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 20px 50px rgba(8, 217, 214, 0.3);
        }

        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 2rem 0;
        }

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

        .content-image img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            border-radius: 20px;
            border: 2px solid rgba(8, 217, 214, 0.3);
            box-shadow: 0 15px 40px rgba(8, 217, 214, 0.2);
        }

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

        /* === 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(8, 217, 214, 0.2);
            padding: 1rem 0;
        }

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

        .logo img {
            height: 50px;
            width: auto;
            filter: drop-shadow(0 0 20px rgba(8, 217, 214, 0.5));
        }

        .hamburger {
            display: none;
            flex-direction: column;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            gap: 0.4rem;
            min-width: 44px;
            min-height: 44px;
            justify-content: center;
            align-items: center;
        }

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

        .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: 2rem;
            margin: 0;
            align-items: center;
        }

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

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

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

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

        header .cta-button {
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
        }

        footer {
            background: var(--gradient-dark);
            padding: 4rem 0 2rem;
            margin-top: 6rem;
            border-top: 2px solid rgba(8, 217, 214, 0.2);
        }

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

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

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

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

        .footer-section ul a {
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(8, 217, 214, 0.2);
            color: var(--text-secondary);
        }

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

            .logo {
                order: 1;
            }

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

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

            .nav-menu {
                flex-direction: column;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                gap: 0;
            }

            .nav-menu.active {
                max-height: 500px;
                padding: 1rem 0;
            }

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

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

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

            .logo {
                order: 1;
            }

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

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

            .nav-menu {
                flex-direction: column;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                gap: 0;
            }

            .nav-menu.active {
                max-height: 500px;
                padding: 1rem 0;
            }

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

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

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

            .hero-section {
                min-height: 70vh;
                padding: 4rem 0;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

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

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.25rem;
            }

            .cta-button, .btn {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
            }

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

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

            .accordion-body {
                padding: 0 1rem;
            }

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

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