/* --- RESET & VARIABLES --- */
        :root {
            --primary-color: #8a2be2;
            --primary-dark: #6a1b9a;
            --accent-color: #00d4ff;
            --bg-dark: #0a0a0a;
            --bg-card: #161616;
            --bg-section: #111111;
            --text-light: #ffffff;
            --text-gray: #b3b3b3;
            --border-color: rgba(255, 255, 255, 0.1);
            --transition: all 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; scroll-behavior: smooth; }
        body { background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- UTILITIES --- */
        .section-padding { padding: 80px 5%; }
        .section-title { font-size: 2.5rem; margin-bottom: 50px; text-align: center; }
        .section-title span { color: var(--accent-color); }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            padding: 12px 30px; border-radius: 50px; font-weight: 600; border: none; color: white; cursor: pointer;
            box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(138, 43, 226, 0.5); }

        /* --- HEADER --- */
        header {
            display: flex; justify-content: space-between; align-items: center; padding: 20px 5%;
            background-color: rgba(10, 10, 10, 0.95); position: fixed; width: 100%; top: 0; z-index: 1000;
            border-bottom: 1px solid var(--border-color); backdrop-filter: blur(10px);
        }
        .logo { font-size: 1.8rem; font-weight: 700; background: linear-gradient(to right, var(--accent-color), var(--primary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 30px; }
        .nav-links a:hover { color: var(--accent-color); }
        .mobile-menu-icon { display: none; font-size: 1.5rem; cursor: pointer; }

        /* --- HERO --- */
        .hero {
            height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
            background: radial-gradient(circle at center, rgba(138, 43, 226, 0.15) 0%, var(--bg-dark) 70%); padding-top: 80px;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #08080a;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-color);
        }
        
        ::selection {
            background: var(--primary-color);
            color: white;
        }

        .hero-1 {
            height: 100vh;
            min-height: 750px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at center, #130a21 0%, var(--bg-dark) 85%);
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        
        #hero-canvas-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }
        
        .hero-container {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
            gap: 50px;
        }
        
        .hero-content-left {
            flex: 1.1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .hero-badge {
            background: rgba(0, 212, 255, 0.08);
            border: 1px solid rgba(0, 212, 255, 0.2);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 24px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.5px;
        }

        .hero-content-left h1 {
            font-size: 3.6rem;
            line-height: 1.15;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-content-left h1 span {
            color: var(--accent-color);
            background: linear-gradient(to right, var(--accent-color), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content-left p {
            color: var(--text-gray);
            max-width: 580px;
            margin-bottom: 35px;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .hero-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid var(--border-color);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn-secondary:hover {
            border-color: var(--accent-color);
            background: rgba(0, 212, 255, 0.02);
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.25);
            transform: translateY(-2px);
        }

        /* --- HERO MOCKUP CARD SHOWCASE --- */
        .hero-showcase-right {
            flex: 0.9;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1200px;
        }

        .hero-mockup-wrapper {
            position: relative;
            width: 100%;
            max-width: 440px;
            height: 380px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .hero-mockup-wrapper:hover {
            transform: rotateX(8deg) rotateY(-10deg) rotateZ(1deg);
        }

        .mockup-card {
            background: rgba(20, 20, 25, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.02);
            position: absolute;
            transform-style: preserve-3d;
        }

        /* Analytics Card (Bottom/Background layer) */
        .card-analytics {
            width: 90%;
            top: 20px;
            left: 0;
            z-index: 5;
            animation: floatCardA 6s ease-in-out infinite alternate;
        }

        /* Player Card (Top/Foreground layer) */
        .card-player {
            width: 82%;
            bottom: 20px;
            right: -15px;
            z-index: 10;
            border-color: rgba(0, 212, 255, 0.15);
            animation: floatCardB 6s ease-in-out infinite alternate;
            animation-delay: -3s;
        }

        @keyframes floatCardA {
            0% { transform: translateY(0) translateZ(0); }
            100% { transform: translateY(-12px) translateZ(15px); }
        }
        @keyframes floatCardB {
            0% { transform: translateY(0) translateZ(30px); }
            100% { transform: translateY(-18px) translateZ(55px); }
        }

        /* Analytics Card details */
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        .card-title {
            font-size: 0.85rem;
            color: var(--text-gray);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .trend-badge {
            background: rgba(0, 212, 255, 0.12);
            color: var(--accent-color);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
        }
        .revenue-val {
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            letter-spacing: -0.5px;
        }
        .revenue-subtitle {
            font-size: 0.75rem;
            color: var(--text-gray);
            margin-bottom: 20px;
        }
        .chart-container {
            width: 100%;
            height: 90px;
        }
        .chart-svg {
            width: 100%;
            height: 100%;
            overflow: visible;
        }
        .chart-line {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawLine 3.5s ease-out forwards;
        }
        @keyframes drawLine {
            to { stroke-dashoffset: 0; }
        }
        .pulse-dot {
            animation: pulseDot 2s infinite alternate;
        }
        @keyframes pulseDot {
            0% { r: 4; opacity: 0.5; }
            100% { r: 7; opacity: 1; }
        }

        /* Player Card details */
        .player-top {
            display: flex;
            gap: 16px;
            align-items: center;
            margin-bottom: 20px;
        }
        .player-album-art {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            object-fit: cover;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .player-info {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        .track-title {
            font-weight: 700;
            font-size: 1rem;
            color: white;
        }
        .track-artist {
            font-size: 0.8rem;
            color: var(--text-gray);
        }
        .artist-badge {
            font-size: 0.7rem;
            color: var(--accent-color);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .playback-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.7rem;
            color: var(--text-gray);
            margin-bottom: 15px;
        }
        .bar-bg {
            flex: 1;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            position: relative;
        }
        .bar-fill {
            position: absolute;
            left: 0; top: 0; height: 100%;
            width: 52%;
            background: linear-gradient(to right, var(--accent-color), var(--primary-color));
            border-radius: 2px;
        }
        .control-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .player-buttons {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.95rem;
            color: var(--text-gray);
        }
        .player-buttons i {
            cursor: pointer;
            transition: var(--transition);
        }
        .player-buttons i:hover {
            color: white;
        }
        .btn-play-pause {
            width: 32px;
            height: 32px;
            background: white;
            color: black;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            box-shadow: 0 4px 10px rgba(255,255,255,0.2);
            cursor: pointer;
            transition: var(--transition);
        }
        .btn-play-pause:hover {
            transform: scale(1.1);
        }
        .equalizer {
            display: flex;
            align-items: flex-end;
            gap: 3px;
            height: 18px;
        }
        .eq-bar {
            width: 3px;
            background: var(--accent-color);
            border-radius: 2px;
            animation: bounceEq 1.2s ease-in-out infinite alternate;
        }
        .eq-bar:nth-child(1) { height: 12px; animation-duration: 0.8s; }
        .eq-bar:nth-child(2) { height: 6px; animation-duration: 1.1s; }
        .eq-bar:nth-child(3) { height: 16px; animation-duration: 0.9s; background: var(--primary-color); }
        .eq-bar:nth-child(4) { height: 10px; animation-duration: 1.3s; }
        .eq-bar:nth-child(5) { height: 4px; animation-duration: 0.7s; }
        @keyframes bounceEq {
            0% { transform: scaleY(0.2); }
            100% { transform: scaleY(1.0); }
        }

        /* --- INFINITE ROLLING MARQUEE (PARTNERS) --- */
        .partners {
            padding: 55px 0;
            background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        
        /* Edge masks for premium marquee fade */
        .partners::before, .partners::after {
            content: "";
            position: absolute;
            top: 0;
            width: 15%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
        .partners::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
        }
        .partners::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
        }
        
        .partners p {
            margin-bottom: 25px;
            color: var(--text-gray);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .partner-track {
            overflow: hidden;
            width: 100%;
            display: flex;
        }

        .partner-logos {
            display: flex;
            gap: 80px;
            width: max-content;
            animation: marqueeScroll 25s linear infinite;
            padding-right: 80px;
        }
        
        .partner-track:hover .partner-logos {
            animation-play-state: paused;
        }

        @keyframes marqueeScroll {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        .partner-logos i {
            font-size: 2.2rem;
            color: var(--text-gray);
            opacity: 0.45;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .partner-logos i:hover {
            color: var(--accent-color);
            opacity: 1;
            transform: scale(1.12);
            filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
        }

        /* --- NEW RELEASES SECTION --- */
        .new-releases {
            background: var(--bg-section);
            position: relative;
            overflow: hidden;
        }

        .slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 25px 0;
        }

        /* Edge masks for premium marquee fade */
        .slider-container::before, .slider-container::after {
            content: "";
            position: absolute;
            top: 0;
            width: 12%;
            height: 100%;
            z-index: 5;
            pointer-events: none;
        }
        .slider-container::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-section) 0%, transparent 100%);
        }
        .slider-container::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-section) 0%, transparent 100%);
        }

        .slider-track {
            display: flex;
            gap: 25px;
            width: max-content;
            animation: marqueeScrollReleases 40s linear infinite;
        }

        .slider-container:hover .slider-track {
            animation-play-state: paused;
        }

        @keyframes marqueeScrollReleases {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }
        
        .release-card {
            width: 220px; /* Precise uniform card width for marquee math */
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(22, 22, 26, 0.6);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .release-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        /* Elegant Play Overlay on Hover */
        .release-card::after {
            content: "\f04b";
            font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
            font-weight: 900;
            font-size: 2.2rem;
            color: white;
            position: absolute;
            top: 0; left: 0; width: 100%; height: 220px;
            background: rgba(138, 43, 226, 0.35);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 2;
        }

        .release-card:hover img {
            transform: scale(1.08);
        }

        .release-card:hover::after {
            opacity: 1;
        }

        .release-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
            border-color: var(--primary-color);
        }

        .release-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(10, 10, 12, 0.95), rgba(10, 10, 12, 0.4));
            padding: 15px;
            z-index: 3;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .release-title {
            font-weight: 700;
            font-size: 0.95rem;
            color: white;
        }
        .artist-name {
            font-size: 0.8rem;
            color: var(--accent-color);
            margin-top: 2px;
        }

        /* --- SERVICES (FEATURES GRID) --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: rgba(22, 22, 26, 0.5);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 40px 30px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        /* Subtle icon glow backplate */
        .feature-card::before {
            content: '';
            position: absolute;
            top: -40px; right: -40px;
            width: 110px; height: 110px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            transition: all 0.4s ease;
        }
        
        .feature-card:hover::before {
            background: radial-gradient(circle, rgba(138, 43, 226, 0.22) 0%, transparent 70%);
            width: 130px; height: 130px;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-color);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
        }
        
        .feature-icon {
            font-size: 2.6rem;
            color: var(--accent-color);
            margin-bottom: 22px;
            display: inline-block;
            transition: transform 0.4s ease;
        }
        .feature-card:hover .feature-icon {
            transform: scale(1.15) rotate(5deg);
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: white;
            font-weight: 600;
        }
        .feature-card p {
            color: var(--text-gray);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        /* --- TRUST SECTION --- */
        .trust-section {
            background-color: var(--bg-dark);
            border-top: 1px solid var(--border-color);
        }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .trust-card {
            background: rgba(22, 22, 26, 0.5);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 40px 30px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }
        .trust-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 35px rgba(138, 43, 226, 0.12);
        }
        .trust-icon {
            font-size: 2.8rem;
            margin-bottom: 20px;
            transition: transform 0.4s ease;
        }
        .trust-card:hover .trust-icon {
            transform: scale(1.15) rotate(5deg);
        }
        .trust-card h3 {
            color: white;
            margin-bottom: 12px;
            font-size: 1.25rem;
            font-weight: 600;
        }
        .trust-card p {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.65;
        }
        .trust-badge-mini {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* --- STATS SECTION --- */
        .stats-section {
            padding: 75px 5%;
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.06) 0%, rgba(10, 10, 10, 0.95) 100%);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .stat-box {
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.01);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.02);
            border-color: rgba(0, 212, 255, 0.1);
        }
        .stat-box h3 {
            font-size: 2.6rem;
            font-weight: 800;
            color: white;
            margin-bottom: 8px;
            background: linear-gradient(to right, #ffffff, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            white-space: nowrap;
        }
        .stat-box p {
            color: var(--text-gray);
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        @media (max-width: 768px) {
            .stat-box h3 {
                font-size: 2.1rem;
            }
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }
        }

        /* --- TESTIMONIALS (AUTO SLIDER) --- */
        .testimonials {
            background: var(--bg-section);
            text-align: center;
        }
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }
        .testimonial-track {
            display: flex;
            width: 100%;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }
        .testimonial-card {
            flex: 0 0 100%;
            min-width: 0;
            background: rgba(22, 22, 26, 0.5);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 45px;
            border-radius: 20px;
            border-left: 5px solid var(--primary-color);
            border-top: 1px solid rgba(255,255,255,0.03);
            border-right: 1px solid rgba(255,255,255,0.03);
            border-bottom: 1px solid rgba(255,255,255,0.03);
            box-sizing: border-box;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        .testimonial-text {
            font-style: italic;
            font-size: 1.15rem;
            color: var(--text-light);
            margin-bottom: 25px;
            line-height: 1.7;
        }
        .artist-profile {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        .artist-img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            border: 2px solid var(--accent-color);
        }
        .artist-profile h4 {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            text-align: left;
        }
        .artist-profile span {
            color: var(--accent-color);
            font-size: 0.8rem;
            text-align: left;
            display: block;
        }

        /* --- PRICING SECTION --- */
        .pricing-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .pricing-card {
            background: rgba(22, 22, 26, 0.5);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 45px 35px;
            border-radius: 24px;
            width: 100%;
            max-width: 350px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            text-align: center;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
        }

        .pricing-card.popular {
            border: 2.5px solid var(--primary-color);
            box-shadow: 0 0 35px rgba(138, 43, 226, 0.15);
        }
        .pricing-card.popular:hover {
            box-shadow: 0 0 45px rgba(138, 43, 226, 0.35), 0 20px 45px rgba(0, 0, 0, 0.5);
        }
        
        .popular-badge {
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .discount-badge {
            position: absolute;
            top: 15px;
            right: -32px;
            background: #ff0000;
            color: white;
            width: 120px;
            padding: 5px 0;
            text-align: center;
            font-weight: 700;
            font-size: 0.75rem;
            transform: rotate(45deg);
            box-shadow: 0 5px 10px rgba(0,0,0,0.3);
            z-index: 10;
        }

        .pricing-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: white;
            margin-top: 10px;
        }

        .price {
            font-size: 2.8rem;
            font-weight: 700;
            margin: 20px 0;
            color: white;
            background: linear-gradient(to right, #ffffff, var(--text-gray));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .features-list {
            margin-bottom: 35px;
            text-align: left;
        }
        .features-list li {
            margin-bottom: 12px;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }
        .features-list li i {
            color: var(--accent-color);
            margin-right: 12px;
            font-size: 0.95rem;
        }

        /* --- FAQs SECTION --- */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: rgba(22, 22, 26, 0.5);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            margin-bottom: 15px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-item:hover {
            border-color: rgba(0, 212, 255, 0.15);
            background: rgba(22, 22, 26, 0.7);
        }
        .faq-question {
            padding: 22px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            align-items: center;
            color: white;
            font-size: 1.05rem;
        }
        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--text-gray);
        }
        .faq-answer {
            padding: 0 22px 22px;
            color: var(--text-gray);
            display: none;
            line-height: 1.65;
            font-size: 0.95rem;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
            color: var(--accent-color);
        }

        /* --- Responsive updates --- */
        @media (max-width: 992px) {
            .hero-1 {
                height: auto;
                min-height: 100vh;
                padding: 130px 0 70px 0;
            }
            .hero-container {
                flex-direction: column;
                justify-content: center;
                gap: 55px;
                text-align: center;
            }
            .hero-content-left {
                align-items: center;
                text-align: center;
                flex: unset;
                width: 100%;
            }
            .hero-content-left h1 {
                font-size: 2.8rem;
            }
            .hero-content-left p {
                margin: 0 auto 30px auto;
            }
            .hero-showcase-right {
                width: 100%;
                max-width: 400px;
                flex: unset;
            }
            .hero-mockup-wrapper {
                height: 340px;
            }
        }

        @media (max-width: 576px) {
            .hero-content-left h1 {
                font-size: 2.3rem;
            }
            .hero-showcase-right {
                max-width: 320px;
            }
            .hero-mockup-wrapper {
                height: 280px;
            }
            .card-analytics {
                padding: 16px;
            }
            .card-player {
                padding: 16px;
            }
            .revenue-val {
                font-size: 1.8rem;
            }
            .player-top {
                margin-bottom: 12px;
            }
            .playback-bar {
                margin-bottom: 10px;
            }
        }

        
        .contact { background: var(--bg-section); }
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }
        .contact-info, .contact-form { flex: 1; min-width: 300px; }
        .contact-info h3 { font-size: 1.5rem; margin-bottom: 20px; }
        .contact-item { display: flex; align-items: center; margin-bottom: 20px; gap: 15px; }
        .contact-item i { width: 40px; height: 40px; background: var(--bg-card); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--accent-color); }
        
        .form-group { margin-bottom: 20px; }
        .form-control {
            width: 100%;
            padding: 12px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: white;
            border-radius: 8px;
        }
        .form-control:focus { outline: none; border-color: var(--primary-color); }
        textarea.form-control { resize: vertical; height: 120px; }
        
        /* --- FOOTER --- */
        footer {
            background: #050505;
            padding: 60px 5% 20px;
            border-top: 1px solid var(--border-color);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h3 { font-size: 1.2rem; margin-bottom: 20px; color: white; }
        .footer-about p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 20px; }
        .social-links { display: flex; gap: 15px; }
        .social-links a {
            width: 35px; height: 35px; background: rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%; transition: var(--transition);
        }
        .social-links a:hover { background: var(--primary-color); }
        
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: var(--text-gray); }
        .footer-links a:hover { color: var(--accent-color); padding-left: 5px; }
        
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--border-color); font-size: 0.8rem; color: var(--text-gray); }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; right: 0; width: 100%; background: var(--bg-card); padding: 20px; text-align: center; }
            .nav-links.active { display: flex; }
            .mobile-menu-icon { display: block; }
            .hero-content h1 { font-size: 2.5rem; }
        }

