        /* Upcoming Consoles Section */
        .upcoming-consoles-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            margin-top: 0;
            margin-bottom: 0;
            padding: 80px 20px;
            background: linear-gradient(180deg, #0a0118 0%, #120525 30%, #1a0a35 60%, #0d0520 100%);
            overflow: hidden;
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }

        .upcoming-consoles-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(ellipse at center,
                    rgba(139, 92, 246, 0.15) 0%,
                    rgba(236, 72, 153, 0.1) 30%,
                    rgba(251, 146, 60, 0.08) 50%,
                    transparent 70%);
            animation: pulse-glow-premium 20s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes pulse-glow-premium {

            0%,
            100% {
                opacity: 0.4;
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1.06);
            }
        }

        @keyframes float-sparkle-premium {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.4;
            }

            50% {
                transform: translateY(-10px) rotate(180deg);
                opacity: 0.8;
            }
        }

        .upcoming-consoles-title {
            font-family: 'Red Hat Display', sans-serif;
            font-size: clamp(48px, 6vw, 68px);
            font-weight: 800;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 60px;
            color: #f5f5f5;
            text-shadow: 0 0 12px rgba(255, 255, 255, 0.15),
                0 0 24px rgba(255, 255, 255, 0.08);
            max-width: 1600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .upcoming-consoles-title strong {
            text-decoration: underline;
            font-weight: 800;
        }

        .upcoming-consoles-subtitle {
            text-align: center;
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 50px;
            font-weight: 500;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .upcoming-consoles-subtitle a {
            color: #c084fc;
            text-decoration: underline;
            transition: color 0.3s ease;
            font-weight: 600;
        }

        .upcoming-consoles-subtitle a:hover {
            color: #d8b4fe;
            text-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
        }

        .upcoming-consoles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .upcoming-console-card {
            background: rgba(15, 15, 25, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 15px rgba(139, 92, 246, 0.1);
        }

        .upcoming-console-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(139, 92, 246, 0.7);
            box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 45px rgba(139, 92, 246, 0.3), 0 0 70px rgba(139, 92, 246, 0.15);
        }

        .upcoming-console-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
            opacity: 0.6;
            transition: opacity 0.3s ease, background 0.3s ease;
        }

        .upcoming-console-card:hover::after {
            opacity: 0.8;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
        }

        .upcoming-console-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }

        .upcoming-console-name {
            font-size: 28px;
            font-weight: 700;
            color: #a78bfa;
            margin-bottom: 10px;
            text-transform: uppercase;
            text-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
        }

        .upcoming-console-availability {
            font-size: 14px;
            color: #c084fc;
            font-weight: 600;
            margin-top: 10px;
            text-shadow: 0 0 6px rgba(139, 92, 246, 0.2);
        }

        .upcoming-console-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .upcoming-notify-btn,
        .upcoming-buy-btn {
            padding: 14px 28px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
            cursor: pointer;
            border: 2px solid;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .upcoming-notify-btn {
            background: rgba(139, 92, 246, 0.15);
            color: #c084fc;
            border-color: rgba(139, 92, 246, 0.4);
        }

        .upcoming-notify-btn:hover {
            background: rgba(139, 92, 246, 0.3);
            border-color: rgba(139, 92, 246, 0.8);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), 0 6px 20px rgba(139, 92, 246, 0.2);
            transform: translateY(-3px);
        }

        .upcoming-buy-btn {
            background: rgba(139, 92, 246, 0.15);
            color: #c084fc;
            border-color: rgba(139, 92, 246, 0.4);
        }

        .upcoming-buy-btn:hover {
            background: rgba(139, 92, 246, 0.3);
            border-color: rgba(139, 92, 246, 0.8);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), 0 6px 20px rgba(139, 92, 246, 0.2);
            transform: translateY(-3px);
        }

        .upcoming-add-to-basket {
            background: rgba(34, 197, 94, 0.12) !important;
            color: #4ade80 !important;
            border-color: rgba(34, 197, 94, 0.35) !important;
        }

        .upcoming-add-to-basket:hover {
            background: rgba(34, 197, 94, 0.22) !important;
            border-color: rgba(34, 197, 94, 0.6) !important;
            box-shadow: 0 0 12px rgba(34, 197, 94, 0.3) !important;
        }

        .upcoming-buy-btn.shine {
            animation: shine-glow 0.8s ease-in-out;
        }

        @media (max-width: 768px) {
            .upcoming-consoles-section {
                padding: 40px 16px;
                margin-top: 0;
                margin-bottom: 0;
                margin-left: -50vw;
                margin-right: -50vw;
                min-height: 100vh;
            min-height: 100svh;
                box-sizing: border-box;
            }

            .upcoming-consoles-title {
                font-size: 42px;
                letter-spacing: 2px;
            }

            .upcoming-consoles-subtitle {
                font-size: 16px;
                padding: 0 10px;
            }

            .upcoming-consoles-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 10px;
            }

            .upcoming-console-name {
                font-size: 24px;
            }

            .upcoming-notify-btn,
            .upcoming-buy-btn {
                padding: 12px 20px;
                font-size: 14px;
            }
        }

        /* Newsletter Section */
        .newsletter-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            padding: 80px 20px;
            margin-top: 0;
            margin-bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.4) 100%);
            border-top: none;
            border-bottom: 1px solid rgba(139, 92, 246, 0.3);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.3),
                0 0 60px rgba(139, 92, 246, 0.2),
                inset 0 0 40px rgba(139, 92, 246, 0.08);
            text-align: center;
            box-sizing: border-box;
        }

        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            width: 100%;
            text-align: center;
        }

        .newsletter-title {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
        }

        .newsletter-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
            font-weight: 400;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
            max-width: 700px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 16px 20px;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(139, 92, 246, 0.4);
            border-radius: 12px;
            color: #ffffff;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .newsletter-input:focus {
            border-color: rgba(139, 92, 246, 0.8);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
            background: rgba(0, 0, 0, 0.5);
        }

        .newsletter-submit {
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 700;
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
            color: #ffffff;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }

        .newsletter-submit:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.7),
                0 0 55px rgba(139, 92, 246, 0.5),
                0 8px 25px rgba(139, 92, 246, 0.3);
        }

        .newsletter-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .newsletter-submit.shine {
            animation: shine-glow 0.8s ease-in-out;
        }

        .newsletter-message {
            margin-top: 16px;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            display: none;
        }

        .newsletter-message.success {
            background: rgba(34, 197, 94, 0.2);
            border: 1px solid rgba(34, 197, 94, 0.5);
            color: #22c55e;
            display: block;
        }

        .newsletter-message.error {
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid rgba(239, 68, 68, 0.5);
            color: #ef4444;
            display: block;
        }

        @media (max-width: 768px) {
            .newsletter-section {
                padding: 40px 16px;
                margin-top: 0;
                margin-bottom: 0;
                margin-left: -50vw;
                margin-right: -50vw;
                box-sizing: border-box;
            }

            .newsletter-title {
                font-size: 24px;
            }

            .newsletter-subtitle {
                font-size: 14px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-submit {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .upcoming-consoles-title {
                font-size: 34px;
                letter-spacing: 1.5px;
            }

            .upcoming-consoles-subtitle {
                font-size: 14px;
            }

            .upcoming-console-card::before {
                font-size: 10px;
                padding: 5px 50px;
                right: -40px;
            }
        }

        /* Vertical Testimonials Carousel */
        .vertical-testimonials-section {
            width: 100%;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(236, 72, 153, 0.35) 100%);
            padding: 80px 0;
            overflow: hidden;
            position: relative;
            box-shadow: 0 0 80px rgba(139, 92, 246, 0.6), 0 0 120px rgba(139, 92, 246, 0.4), inset 0 0 100px rgba(139, 92, 246, 0.2);
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }

        .vertical-testimonials-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-family: 'Oxanium', sans-serif;
            font-size: 52px;
            font-weight: 700;
            color: #fbbf24;
            letter-spacing: 2px;
            margin-bottom: 80px;
            text-shadow: 0 0 40px rgba(251, 191, 36, 0.8), 0 0 60px rgba(139, 92, 246, 0.6);
        }

        .vertical-testimonials-carousel {
            width: 90vw;
            max-width: 1200px;
            height: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
        }

        .vertical-testimonials-track {
            display: flex;
            flex-direction: column;
            gap: 40px;
            animation: scrollVertical 60s linear infinite;
            will-change: transform;
        }

        .vertical-testimonials-track:hover {
            animation-play-state: paused;
        }

        @keyframes scrollVertical {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-50%);
            }
        }

        .vertical-testimonial-card {
            background: rgba(15, 15, 25, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(139, 92, 246, 0.25);
            border-radius: 24px;
            padding: 60px;
            min-height: 360px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.4s ease;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 92, 246, 0.15);
        }

        /* Color variants for testimonial cards */
        .vertical-testimonial-card.variant-purple {
            background: rgba(15, 15, 25, 0.7);
            border-color: rgba(139, 92, 246, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 92, 246, 0.15);
        }

        .vertical-testimonial-card.variant-pink {
            background: rgba(15, 15, 25, 0.7);
            border-color: rgba(236, 72, 153, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(236, 72, 153, 0.15);
        }

        .vertical-testimonial-card.variant-green {
            background: rgba(15, 15, 25, 0.7);
            border-color: rgba(34, 197, 94, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(34, 197, 94, 0.15);
        }

        .vertical-testimonial-card.variant-blue {
            background: rgba(15, 15, 25, 0.7);
            border-color: rgba(96, 165, 250, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(96, 165, 250, 0.15);
        }

        .vertical-testimonial-card.variant-amber {
            background: rgba(15, 15, 25, 0.7);
            border-color: rgba(251, 191, 36, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(251, 191, 36, 0.15);
        }

        .vertical-testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
            opacity: 0.8;
            transition: opacity 0.3s ease, background 0.3s ease;
            z-index: 1;
        }

        .vertical-testimonial-card:hover::before {
            opacity: 1;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
        }

        .vertical-testimonial-card.variant-pink::before { background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.5), transparent); }
        .vertical-testimonial-card.variant-green::before { background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent); }
        .vertical-testimonial-card.variant-blue::before { background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent); }
        .vertical-testimonial-card.variant-amber::before { background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5), transparent); }

        .vertical-testimonial-card.variant-pink:hover::before { background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.8), transparent); }
        .vertical-testimonial-card.variant-green:hover::before { background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.8), transparent); }
        .vertical-testimonial-card.variant-blue:hover::before { background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.8), transparent); }
        .vertical-testimonial-card.variant-amber:hover::before { background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.8), transparent); }

        .vertical-testimonial-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
            will-change: transform;
        }

        .vertical-testimonial-card:hover::after {
            transform: translateX(100%);
        }

        .vertical-testimonial-card:hover {
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(139, 92, 246, 0.4), 0 0 120px rgba(139, 92, 246, 0.15);
            transform: scale(1.04) translateX(12px);
        }

        .vertical-testimonial-card.variant-purple:hover {
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 60px rgba(139, 92, 246, 0.3);
        }

        .vertical-testimonial-card.variant-pink:hover {
            border-color: rgba(236, 72, 153, 0.6);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 60px rgba(236, 72, 153, 0.3);
        }

        .vertical-testimonial-card.variant-green:hover {
            border-color: rgba(34, 197, 94, 0.6);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 60px rgba(34, 197, 94, 0.3);
        }

        .vertical-testimonial-card.variant-blue:hover {
            border-color: rgba(96, 165, 250, 0.6);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 60px rgba(96, 165, 250, 0.3);
        }

        .vertical-testimonial-card.variant-amber:hover {
            border-color: rgba(251, 191, 36, 0.6);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 60px rgba(251, 191, 36, 0.3);
        }

        .vertical-testimonial-quote {
            font-size: 36px;
            font-style: italic;
            font-weight: 400;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(139, 92, 246, 0.5);
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .vertical-testimonial-quote::before {
            content: '\201C';
            position: absolute;
            top: -30px;
            left: -20px;
            font-size: 100px;
            color: rgba(139, 92, 246, 0.3);
            font-family: Georgia, serif;
            z-index: -1;
        }

        .vertical-testimonial-author {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }

        .vertical-testimonial-profile {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .vertical-testimonial-avatar {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(139, 92, 246, 0.6);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
            transition: all 0.3s ease;
        }

        .vertical-testimonial-card:hover .vertical-testimonial-avatar {
            border-color: rgba(139, 92, 246, 1);
            box-shadow: 0 14px 40px rgba(139, 92, 246, 0.9), 0 0 50px rgba(139, 92, 246, 0.4);
            transform: scale(1.08);
        }

        .vertical-testimonial-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .vertical-testimonial-name {
            font-family: 'Oxanium', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #a78bfa;
            letter-spacing: 0.5px;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
        }

        .vertical-testimonial-location {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-shadow: 0 0 16px rgba(255, 255, 255, 0.35),
                0 0 30px rgba(139, 92, 246, 0.25);
        }

        .vertical-testimonial-stars {
            color: #fbbf24;
            font-size: 36px;
            letter-spacing: 4px;
            filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.8));
        }

        @media (max-width: 768px) {
            .vertical-testimonials-section {
                padding: 40px 0;
            }

            .vertical-testimonials-label {
                font-size: 40px;
                margin-bottom: 60px;
            }

            .vertical-testimonials-carousel {
                height: 700px;
            }

            .vertical-testimonial-card {
                padding: 40px;
                min-height: 320px;
            }

            .vertical-testimonial-quote {
                font-size: 32px;
            }

            .vertical-testimonial-name {
                font-size: 28px;
            }

            .vertical-testimonial-location {
                font-size: 12px;
            }

            .vertical-testimonial-stars {
                font-size: 32px;
            }

            .vertical-testimonial-avatar {
                width: 80px;
                height: 80px;
            }
        }

        .testimonials-disclaimer {
            text-align: center;
            padding: 20px 20px 40px 20px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            font-style: italic;
            background: transparent;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
                0 0 12px rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .testimonials-disclaimer {
                font-size: 12px;
                padding: 15px 15px 30px 15px;
            }
        }

        .profile {
            position: relative;
            text-align: center;
            padding: 20px 20px 40px;
            z-index: 2;
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
        }

        .profile h1 {
            margin-bottom: 5px;
        }

        /* Hero Navigation Bar */
        .hero-nav {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            background: linear-gradient(135deg, rgba(26, 10, 46, 0.95) 0%, rgba(42, 23, 70, 0.95) 100%);
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
            backdrop-filter: blur(10px);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .hero-nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 60px;
        }

        .hero-nav-link {
            flex: 1;
            text-align: center;
            padding: 24px 20px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-family: 'Oxanium', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            position: relative;
        }

        .hero-nav-link:hover {
            color: #ffffff;
            background: rgba(139, 92, 246, 0.15);
            border-bottom-color: #8b5cf6;
            text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
        }

        .hero-nav-link.active {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
            background: rgba(251, 191, 36, 0.05);
        }

        @media (max-width: 768px) {
            .hero-nav-container {
                padding: 0 20px;
                flex-wrap: wrap;
            }

            .hero-nav-link {
                padding: 18px 12px;
                font-size: 13px;
                flex: 1 1 50%;
            }
        }

        @media (max-width: 480px) {
            .hero-nav-link {
                padding: 16px 8px;
                font-size: 11px;
                letter-spacing: 0.5px;
            }
        }

        /* Product Story Section */
        .product-story {
            margin: 0 auto;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
            width: 100%;
            max-width: 1200px;
        }

        .story-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 80px 20px;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            margin-top: 0;
            margin-bottom: 0;
            box-sizing: border-box;
            min-height: 70vh;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.4) 100%);
            backdrop-filter: blur(10px);
            border-top: 3px solid rgba(139, 92, 246, 0.6);
            border-bottom: 3px solid rgba(139, 92, 246, 0.6);
        }

        .quick-pitch-image {
            width: 100%;
            max-width: 300px;
            height: auto;
            margin: 0 auto;
            border-radius: 16px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
            animation: float-gentle 6s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .quick-pitch-image:hover {
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 16px 50px rgba(139, 92, 246, 0.35), 0 0 35px rgba(139, 92, 246, 0.2);
            transform: translateY(-4px) scale(1.02);
        }

        @keyframes float-gentle {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-16px);
            }
        }

        .quick-pitch-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: #22c55e;
            text-align: center;
            margin: 0 0 16px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .quick-pitch-desc {
            font-size: 16px;
            line-height: 1.6;
            color: #ffffff;
            margin: 0 0 16px 0;
            text-align: center;
        }

        .quick-pitch-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .quick-pitch-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #d1d5db;
            padding: 8px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            border: 1px solid rgba(34, 197, 94, 0.2);
            box-shadow: 0 4px 20px rgba(34, 197, 94, 0.08);
            transition: all 0.3s ease;
        }

        .quick-pitch-features li:hover {
            border-color: rgba(34, 197, 94, 0.6);
            box-shadow: 0 10px 35px rgba(34, 197, 94, 0.25), 0 0 25px rgba(34, 197, 94, 0.15);
            transform: translateY(-2px);
        }

        .quick-pitch-features li::before {
            content: "✓";
            color: #22c55e;
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
            border: 2px solid rgba(34, 197, 94, 0.3);
            border-radius: 16px;
            padding: 32px 24px;
            margin: 32px auto;
            width: 90vw;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .testimonials-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #22c55e;
            margin: 0 0 8px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(34, 197, 94, 0.8),
                0 0 40px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(34, 197, 94, 0.4);
        }

        .testimonials-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3),
                0 0 20px rgba(255, 255, 255, 0.2);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes starPulse {

            0%,
            100% {
                transform: scale(1);
                filter: brightness(1);
            }

            50% {
                transform: scale(1.2);
                filter: brightness(1.5);
            }
        }

        .testimonial-card {
            background: rgba(15, 15, 25, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(34, 197, 94, 0.25);
            border-radius: 14px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease backwards;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(34, 197, 94, 0.1);
        }

        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 6px;
            left: 12px;
            font-size: 60px;
            color: rgba(34, 197, 94, 0.12);
            font-family: Georgia, serif;
            line-height: 1;
            pointer-events: none;
        }

        .testimonial-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.6), transparent);
            opacity: 0.8;
            transition: opacity 0.3s ease, background 0.3s ease;
            z-index: 1;
        }

        .testimonial-card:hover::after {
            opacity: 1;
            background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.8), transparent);
        }

        .testimonial-card:nth-child(6n+2)::after { background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent); }
        .testimonial-card:nth-child(6n+3)::after { background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.5), transparent); }
        .testimonial-card:nth-child(6n+4)::after { background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent); }
        .testimonial-card:nth-child(6n+5)::after { background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent); }
        .testimonial-card:nth-child(6n+6)::after { background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5), transparent); }

        .testimonial-card:nth-child(6n+2):hover::after { background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent); }
        .testimonial-card:nth-child(6n+3):hover::after { background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.8), transparent); }
        .testimonial-card:nth-child(6n+4):hover::after { background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.8), transparent); }
        .testimonial-card:nth-child(6n+5):hover::after { background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.8), transparent); }
        .testimonial-card:nth-child(6n+6):hover::after { background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.8), transparent); }

        /* Purple variant */
        .testimonial-card:nth-child(6n+2) {
            border-color: rgba(139, 92, 246, 0.25);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(139, 92, 246, 0.1);
        }

        .testimonial-card:nth-child(6n+2)::before {
            color: rgba(139, 92, 246, 0.15);
        }

        /* Pink variant */
        .testimonial-card:nth-child(6n+3) {
            border-color: rgba(236, 72, 153, 0.25);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(236, 72, 153, 0.1);
        }

        .testimonial-card:nth-child(6n+3)::before {
            color: rgba(236, 72, 153, 0.15);
        }

        /* Blue variant */
        .testimonial-card:nth-child(6n+4) {
            border-color: rgba(59, 130, 246, 0.25);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(59, 130, 246, 0.1);
        }

        .testimonial-card:nth-child(6n+4)::before {
            color: rgba(59, 130, 246, 0.15);
        }

        /* Orange variant */
        .testimonial-card:nth-child(6n+5) {
            border-color: rgba(249, 115, 22, 0.25);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(249, 115, 22, 0.1);
        }

        .testimonial-card:nth-child(6n+5)::before {
            color: rgba(249, 115, 22, 0.15);
        }

        /* Amber variant */
        .testimonial-card:nth-child(6n+6) {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.18) 0%, rgba(0, 0, 0, 0.5) 100%);
            border-color: rgba(251, 191, 36, 0.4);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 25px rgba(251, 191, 36, 0.2);
        }

        .testimonial-card:nth-child(6n+6)::before {
            color: rgba(251, 191, 36, 0.15);
        }

        .testimonial-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .testimonial-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .testimonial-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .testimonial-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .testimonial-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .testimonial-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5), 0 0 30px rgba(34, 197, 94, 0.3);
            border-color: rgba(34, 197, 94, 0.7);
        }

        .testimonial-card:nth-child(6n+2):hover {
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5), 0 0 30px rgba(139, 92, 246, 0.3);
            border-color: rgba(139, 92, 246, 0.7);
        }

        .testimonial-card:nth-child(6n+3):hover {
            box-shadow: 0 10px 30px rgba(236, 72, 153, 0.5), 0 0 30px rgba(236, 72, 153, 0.3);
            border-color: rgba(236, 72, 153, 0.7);
        }

        .testimonial-card:nth-child(6n+4):hover {
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5), 0 0 30px rgba(59, 130, 246, 0.3);
            border-color: rgba(59, 130, 246, 0.7);
        }

        .testimonial-card:nth-child(6n+5):hover {
            box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5), 0 0 30px rgba(249, 115, 22, 0.3);
            border-color: rgba(249, 115, 22, 0.7);
        }

        .testimonial-card:nth-child(6n+6):hover {
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5), 0 0 30px rgba(251, 191, 36, 0.3);
            border-color: rgba(251, 191, 36, 0.7);
        }

        .testimonial-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .testimonial-name {
            font-family: 'Oxanium', sans-serif;
            font-weight: 600;
            color: #ffffff;
            font-size: 14px;
            letter-spacing: 0.3px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .testimonial-rating {
            display: flex;
            gap: 2px;
            color: #fbbf24;
            font-size: 13px;
            filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
        }

        .testimonial-card:hover .testimonial-rating {
            animation: starPulse 0.6s ease;
        }

        .testimonial-quote {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.88);
            font-style: italic;
            position: relative;
            z-index: 1;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .testimonial-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Red Hat Display', sans-serif;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.55);
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .testimonial-location {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 500;
        }

        .testimonial-platform {
            display: inline-block;
            padding: 4px 10px;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.15));
            border: 1px solid rgba(34, 197, 94, 0.4);
            border-radius: 20px;
            font-family: 'Red Hat Display', sans-serif;
            font-size: 10px;
            font-weight: 700;
            color: #22c55e;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .testimonial-card:nth-child(6n+2) .testimonial-platform {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.15));
            border-color: rgba(139, 92, 246, 0.4);
            color: #a78bfa;
            box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
        }

        .testimonial-card:nth-child(6n+3) .testimonial-platform {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(236, 72, 153, 0.15));
            border-color: rgba(236, 72, 153, 0.4);
            color: #f472b6;
            box-shadow: 0 2px 8px rgba(236, 72, 153, 0.2);
        }

        .testimonial-card:nth-child(6n+4) .testimonial-platform {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.15));
            border-color: rgba(59, 130, 246, 0.4);
            color: #60a5fa;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
        }

        .testimonial-card:nth-child(6n+5) .testimonial-platform {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(249, 115, 22, 0.15));
            border-color: rgba(249, 115, 22, 0.4);
            color: #fb923c;
            box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
        }

        .testimonial-card:nth-child(6n+6) .testimonial-platform {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(251, 191, 36, 0.15));
            border-color: rgba(251, 191, 36, 0.4);
            color: #fbbf24;
            box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
        }

        .testimonial-platform:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
        }

        a.testimonial-platform {
            text-decoration: none;
            cursor: pointer;
        }

        a.testimonial-platform:hover {
            text-decoration: none;
        }

        @media (max-width: 480px) {
            .testimonials-section {
                padding: 24px 16px;
                margin: 24px auto;
                width: 90vw;
                margin-left: auto;
                margin-right: auto;
            }

            .testimonials-title {
                font-size: 22px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        .story-image {
            width: 100%;
            max-width: 550px;
            height: auto;
            border-radius: 24px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15), 0 0 15px rgba(139, 92, 246, 0.08);
            animation: float-gentle 6s ease-in-out infinite;
            object-fit: contain;
            display: block;
            justify-self: center;
            transition: all 0.3s ease;
        }

        .story-image:hover {
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25), 0 0 20px rgba(139, 92, 246, 0.1);
        }

        .story-content {
            display: flex;
            flex-direction: column;
            gap: 28px;
            justify-content: center;
            justify-self: center;
        }

        .story-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 44px;
            font-weight: 800;
            color: #ffffff;
            margin: 0;
            line-height: 1.15;
            background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6)) drop-shadow(0 0 40px rgba(139, 92, 246, 0.4)) drop-shadow(0 0 60px rgba(236, 72, 153, 0.3));
        }

        .story-desc {
            font-size: 20px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
            font-style: italic;
        }

        .story-sections-wrapper {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin: 0;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            padding: 0;
            box-sizing: border-box;
            background: rgba(10, 0, 20, 1);
        }

        .story-sections-wrapper.section-has-chars {
            overflow: clip;
        }

        /* Remove bottom gap on benefits section directly above the features marquee */
        .story-sections-wrapper:has(+ .features-marquee-container) .story-benefits {
            border-bottom: none;
            padding-bottom: 0;
        }

        .story-sections-wrapper + .story-sections-wrapper {
            margin-top: -2px;
        }

        .story-sections-wrapper:last-of-type {
            background: linear-gradient(180deg, rgba(10, 0, 20, 1) 0%, rgba(25, 15, 45, 1) 100%);
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .story-sections-wrapper:has(.story-closer) {
            background: linear-gradient(180deg, rgba(25, 15, 45, 1) 0%, rgba(30, 20, 55, 1) 50%, rgba(25, 15, 45, 1) 100%);
        }

        .story-benefits {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
            border-radius: 0;
            border: none;
            border-top: 2px solid rgba(139, 92, 246, 0.2);
            border-bottom: 2px solid rgba(139, 92, 246, 0.2);
            min-height: auto;
            box-sizing: border-box;
        }

        .story-benefits > .benefits-title {
            grid-column: 1 / -1;
            margin-bottom: 20px;
        }

        /* Unique background for testimonials section - negative margins absorb parent .product-story gap */
        #testimonials.story-sections-wrapper {
            background: linear-gradient(180deg, #0d0520 0%, #130828 40%, #1a0a35 70%, #0d0520 100%);
            margin-top: 0;
            margin-bottom: 0;
            padding: 0;
        }

        #testimonials .story-benefits {
            background: transparent;
            border-top: 2px solid rgba(255, 255, 255, 0.08);
            border-bottom: 2px solid rgba(255, 255, 255, 0.08);
            padding-top: 60px;
            padding-bottom: 60px;
        }

        #testimonials .benefits-image {
            order: 1;
        }

        #testimonials .benefits-content {
            order: 2;
        }

        #testimonials .benefits-title {
            margin-top: 40px;
        }

        .benefits-content {
            order: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            justify-self: center;
            max-width: 700px;
            width: 100%;
            margin: 0 auto;
        }

        .benefits-image {
            order: 2;
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15), 0 0 15px rgba(139, 92, 246, 0.08);
            justify-self: center;
            align-self: center;
            transition: all 0.3s ease;
        }

        .benefits-image:hover {
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25), 0 0 20px rgba(139, 92, 246, 0.1);
        }

        .benefits-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
            margin: 0 0 40px 0;
            letter-spacing: -0.5px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .benefit-item {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(139, 92, 246, 0.2);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15), 0 0 15px rgba(139, 92, 246, 0.08);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            width: 100%;
            min-width: 0;
            box-sizing: border-box;
        }

        .benefit-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
            opacity: 0.8;
            transition: opacity 0.3s ease, background 0.3s ease;
        }

        .benefit-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25), 0 0 20px rgba(139, 92, 246, 0.1);
        }

        .benefit-item:hover::before {
            opacity: 1;
        }

        .benefit-item:nth-child(1) { transition-delay: 0s; border-color: rgba(34, 197, 94, 0.2); box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15), 0 0 15px rgba(34, 197, 94, 0.08); }
        .benefit-item:nth-child(2) { transition-delay: 0.05s; border-color: rgba(251, 191, 36, 0.2); box-shadow: 0 4px 20px rgba(251, 191, 36, 0.15), 0 0 15px rgba(251, 191, 36, 0.08); }
        .benefit-item:nth-child(3) { transition-delay: 0.1s; border-color: rgba(59, 130, 246, 0.2); box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15), 0 0 15px rgba(59, 130, 246, 0.08); }
        .benefit-item:nth-child(4) { transition-delay: 0.15s; border-color: rgba(236, 72, 153, 0.2); box-shadow: 0 4px 20px rgba(236, 72, 153, 0.15), 0 0 15px rgba(236, 72, 153, 0.08); }

        .benefit-item:nth-child(1)::before { background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.6), transparent); }
        .benefit-item:nth-child(2)::before { background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.6), transparent); }
        .benefit-item:nth-child(3)::before { background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent); }
        .benefit-item:nth-child(4)::before { background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.6), transparent); }

        .benefit-item:nth-child(1):hover { border-color: rgba(34, 197, 94, 0.5); box-shadow: 0 12px 40px rgba(34, 197, 94, 0.25), 0 0 20px rgba(34, 197, 94, 0.1); }
        .benefit-item:nth-child(1):hover::before { background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.8), transparent); }
        .benefit-item:nth-child(2):hover { border-color: rgba(251, 191, 36, 0.5); box-shadow: 0 12px 40px rgba(251, 191, 36, 0.25), 0 0 20px rgba(251, 191, 36, 0.1); }
        .benefit-item:nth-child(2):hover::before { background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.8), transparent); }
        .benefit-item:nth-child(3):hover { border-color: rgba(59, 130, 246, 0.5); box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25), 0 0 20px rgba(59, 130, 246, 0.1); }
        .benefit-item:nth-child(3):hover::before { background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.8), transparent); }
        .benefit-item:nth-child(4):hover { border-color: rgba(236, 72, 153, 0.5); box-shadow: 0 12px 40px rgba(236, 72, 153, 0.25), 0 0 20px rgba(236, 72, 153, 0.1); }
        .benefit-item:nth-child(4):hover::before { background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.8), transparent); }

        .benefit-icon {
            font-size: 36px;
            line-height: 1;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        .benefit-text {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
            overflow: hidden;
        }

        .benefit-text strong {
            font-family: 'Oxanium', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: 0.2px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .benefit-text span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .story-closer {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(236, 72, 153, 0.04) 100%);
            border-radius: 0;
            border: none;
            border-top: 2px solid rgba(139, 92, 246, 0.2);
            border-bottom: 2px solid rgba(139, 92, 246, 0.2);
            min-height: 100vh;
            min-height: 100svh;
            box-sizing: border-box;
        }

        .closer-content {
            order: 1;
            justify-self: center;
            padding: 40px 24px;
        }

        .closer-image {
            order: 2;
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
            animation: float-gentle 6s ease-in-out infinite;
            justify-self: center;
            transition: all 0.3s ease;
        }

        .closer-image:hover {
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25), 0 0 20px rgba(139, 92, 246, 0.1);
        }

        .closer-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 20px 0;
            line-height: 1.2;
            text-shadow: 0 0 20px rgba(236, 72, 153, 0.8),
                0 0 30px rgba(139, 92, 246, 0.7),
                0 0 40px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(251, 191, 36, 0.5),
                0 0 80px rgba(6, 182, 212, 0.4);
        }

        .closer-desc {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 24px 0;
        }

        .closer-cta-button {
            display: inline-block;
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            color: #1a1a1a;
            font-size: 16px;
            font-weight: 800;
            padding: 14px 32px;
            border-radius: 10px;
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                0 0 30px rgba(251, 191, 36, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
            text-decoration: none;
            margin-top: 8px;
            border: none;
            cursor: pointer;
        }

        @keyframes cta-glow {

            0%,
            100% {
                box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset,
                    0 6px 15px rgba(251, 191, 36, 0.7),
                    0 0 40px rgba(251, 191, 36, 0.5),
                    0 0 60px rgba(251, 191, 36, 0.3);
            }

            50% {
                box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset,
                    0 6px 20px rgba(251, 191, 36, 0.9),
                    0 0 60px rgba(251, 191, 36, 0.7),
                    0 0 90px rgba(251, 191, 36, 0.5);
            }
        }

        .closer-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            will-change: transform;
        }

        .closer-cta-button.shine::before {
            animation: button-shine 0.8s ease-in-out;
        }

        .closer-cta-button:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(251, 191, 36, 0.6),
                0 0 50px rgba(251, 191, 36, 0.35),
                0 0 80px rgba(251, 191, 36, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .closer-cta-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                0 0 30px rgba(251, 191, 36, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .emulated-cta-button {
            display: inline-block;
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            color: #1a1a1a;
            font-size: 24px;
            font-weight: 900;
            padding: 22px 50px;
            border-radius: 12px;
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                0 0 30px rgba(251, 191, 36, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
            text-decoration: none;
            border: none;
            cursor: pointer;
        }

        @keyframes cta-mega-pulse {

            0%,
            100% {
                box-shadow: 0 2px 0 rgba(255, 255, 255, 0.6) inset,
                    0 8px 20px rgba(251, 191, 36, 0.8),
                    0 0 50px rgba(251, 191, 36, 0.6),
                    0 0 80px rgba(251, 191, 36, 0.4);
                transform: scale(1);
            }

            50% {
                box-shadow: 0 2px 0 rgba(255, 255, 255, 0.7) inset,
                    0 10px 30px rgba(251, 191, 36, 1),
                    0 0 70px rgba(251, 191, 36, 0.8),
                    0 0 120px rgba(251, 191, 36, 0.6);
                transform: scale(1.03);
            }
        }

        .emulated-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            will-change: transform;
        }

        .emulated-cta-button.shine::before {
            animation: button-shine 0.8s ease-in-out;
        }

        .emulated-cta-button:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(251, 191, 36, 0.6),
                0 0 50px rgba(251, 191, 36, 0.35),
                0 0 80px rgba(251, 191, 36, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .emulated-cta-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                0 0 30px rgba(251, 191, 36, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        /* Video Carousel Section */
        .video-carousel-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(96, 165, 250, 0.05) 100%);
            border-top: 2px solid rgba(139, 92, 246, 0.3);
            border-bottom: 2px solid rgba(139, 92, 246, 0.3);
            margin: 0;
        }

        .video-carousel-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 52px;
            font-weight: 800;
            text-align: center;
            color: #ffffff;
            margin: 0 0 20px 0;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.8),
                0 0 30px rgba(96, 165, 250, 0.7),
                0 0 40px rgba(139, 92, 246, 0.6);
            letter-spacing: 2px;
        }

        .video-carousel-desc {
            font-size: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.85);
            margin: 0 0 60px 0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .video-carousel-container {
            position: relative;
            width: 75vw;
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .video-carousel-wrapper {
            flex: 1;
            overflow: hidden;
            border-radius: 20px;
            position: relative;
        }

        .video-carousel-container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 180%;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.47) 0%, rgba(251, 191, 36, 0.26) 20%, rgba(251, 191, 36, 0.13) 40%, rgba(251, 191, 36, 0.05) 60%, rgba(251, 191, 36, 0.013) 80%, transparent 100%);
            border-radius: 50%;
            z-index: -1;
            pointer-events: none;
            filter: blur(40px);
        }

        .video-carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            border-radius: 20px;
        }

        .video-slide {
            min-width: 100%;
            flex-shrink: 0;
        }

        .video-embed-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 20px;
            border: 1px solid rgba(139, 92, 246, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 92, 246, 0.15);
            animation: video-glow-pulse 2s ease-out 1;
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .video-embed-container:hover {
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(139, 92, 246, 0.25), 0 0 20px rgba(139, 92, 246, 0.15);
        }

        @keyframes video-glow-pulse {
            0% {
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(139, 92, 246, 0.4), 0 0 100px rgba(139, 92, 246, 0.2);
                border-color: rgba(139, 92, 246, 0.6);
            }
            50% {
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 80px rgba(139, 92, 246, 0.5), 0 0 120px rgba(139, 92, 246, 0.3);
                border-color: rgba(139, 92, 246, 0.7);
            }
            100% {
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 92, 246, 0.15);
                border-color: rgba(139, 92, 246, 0.3);
            }
        }

        .video-embed-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 17px;
        }

        .video-nav-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.2);
            border: 2px solid rgba(139, 92, 246, 0.5);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            flex-shrink: 0;
        }

        .video-nav-btn:hover {
            background: rgba(139, 92, 246, 0.4);
            border-color: rgba(139, 92, 246, 0.8);
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
        }

        .video-nav-btn:active {
            transform: scale(0.95);
        }

        .video-nav-btn svg {
            width: 28px;
            height: 28px;
        }

        .video-nav-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .video-nav-subtext {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 500;
            color: rgba(160, 160, 160, 0.8);
            text-align: center;
            max-width: 80px;
            line-height: 1.2;
            transition: color 0.3s ease;
        }

        .video-nav-wrapper:hover .video-nav-subtext {
            color: rgba(139, 92, 246, 0.9);
        }

        /* Video Title and Navigation Hints */
        .video-title-container {
            text-align: center;
            margin-top: 25px;
            padding: 0 20px;
        }

        .video-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.6),
                0 0 30px rgba(139, 92, 246, 0.4);
            transition: opacity 0.3s ease;
        }

        .video-nav-hints {
            position: absolute;
            top: 50%;
            left: -120px;
            right: -120px;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0;
            z-index: 10;
            pointer-events: none;
        }

        .prev-hint,
        .next-hint {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 14px 20px;
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid rgba(139, 92, 246, 0.4);
            backdrop-filter: blur(10px);
            pointer-events: auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            border-radius: 12px;
            max-width: 100px;
            text-align: center;
            line-height: 1.3;
        }

        .prev-hint {
            border-radius: 12px;
        }

        .next-hint {
            border-radius: 12px;
        }

        .prev-hint:hover,
        .next-hint:hover {
            color: rgba(255, 255, 255, 1);
            background: rgba(139, 92, 246, 0.9);
            border-color: rgba(139, 92, 246, 0.8);
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6),
                0 0 30px rgba(139, 92, 246, 0.4);
        }

        @media (max-width: 768px) {
            .video-title {
                font-size: 18px;
            }

            .video-nav-hints {
                left: -80px;
                right: -80px;
            }

            .prev-hint,
            .next-hint {
                font-size: 11px;
                padding: 10px 12px;
                max-width: 70px;
            }

            .video-nav-btn {
                width: 45px;
                height: 45px;
            }

            .video-nav-btn svg {
                width: 22px;
                height: 22px;
            }

            .video-nav-subtext {
                font-size: 9px;
                max-width: 60px;
            }
        }

        .video-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .video-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.3);
            border: 2px solid rgba(139, 92, 246, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .video-dot:hover {
            background: rgba(139, 92, 246, 0.5);
            border-color: rgba(139, 92, 246, 0.8);
            transform: scale(1.2);
        }

        .video-dot.active {
            background: rgba(139, 92, 246, 0.8);
            border-color: rgba(139, 92, 246, 1);
            box-shadow: 0 0 12px rgba(139, 92, 246, 0.8);
            transform: scale(1.3);
        }

        @media (max-width: 480px) {
            .quick-pitch {
                padding: 20px;
                margin: 24px 0;
                width: 100%;
                margin-left: 0;
                margin-right: 0;
            }

            .quick-pitch-title {
                font-size: 18px;
            }

            .quick-pitch-desc {
                font-size: 14px;
            }

            .quick-pitch-features {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .quick-pitch-features li {
                font-size: 13px;
            }

            .product-story {
                gap: 0;
                margin: 0;
                padding: 0;
                width: 100%;
                max-width: 100%;
            }

            .story-intro {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 50px 20px;
                width: 100vw;
                margin-left: -50vw;
                margin-right: -50vw;
                min-height: auto;
            }

            .story-image {
                width: 100%;
                max-width: 100%;
                border-radius: 16px;
            }

            .story-title {
                font-size: 30px;
                text-align: center;
                line-height: 1.3;
            }

            .story-desc {
                font-size: 18px;
                text-align: center;
                line-height: 1.7;
                padding: 0 10px;
            }

            .story-sections-wrapper {
                gap: 0;
                width: 100vw;
                margin-left: -50vw;
                margin-right: -50vw;
                left: 50%;
                right: auto;
                position: relative;
                overflow-x: hidden;
                background: rgba(10, 0, 20, 1);
            }

            .story-sections-wrapper:has(.story-closer) {
                background: linear-gradient(180deg, rgba(25, 15, 45, 1) 0%, rgba(30, 20, 55, 1) 50%, rgba(25, 15, 45, 1) 100%);
            }

            .story-benefits {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
                gap: 0;
                padding: 30px 20px 20px;
                min-height: auto;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                overflow-x: hidden;
                align-items: center;
            }

            .story-benefits > .benefits-title {
                margin-bottom: 10px;
            }

            #testimonials.story-sections-wrapper {
                margin-top: 0;
                margin-bottom: 0;
                padding: 0;
            }

            #testimonials .story-benefits {
                padding-top: 0;
                padding-bottom: 0;
            }

            #testimonials .benefits-title {
                margin-top: 16px;
            }

            .benefits-content {
                order: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: stretch;
                min-height: auto;
                padding: 20px 0;
                width: 100%;
                max-width: 100%;
                margin: 0 auto;
                box-sizing: border-box;
            }

            .benefits-image {
                order: 2;
                width: 100%;
                max-width: 100%;
                max-height: 80vh;
                max-height: 80svh;
                object-fit: contain;
                justify-self: center;
                align-self: center;
                box-sizing: border-box;
                border-radius: 16px;
            }

            .story-closer {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
                gap: 0;
                padding: 40px 20px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                overflow-x: hidden;
                align-items: center;
            }

            .closer-content {
                order: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                min-height: auto;
                padding: 20px 0;
                box-sizing: border-box;
            }

            .closer-image {
                order: 2;
                width: 100%;
                max-width: 100%;
                max-height: 80vh;
                max-height: 80svh;
                object-fit: contain;
                justify-self: center;
                align-self: center;
                box-sizing: border-box;
                border-radius: 16px;
            }

            .closer-cta-button {
                padding: 16px 36px;
                font-size: 15px;
                width: 100%;
                max-width: 280px;
                text-align: center;
                margin: 20px auto 0;
                display: block;
                min-height: 48px;
            }

            .benefits-title {
                font-size: 22px;
                margin-bottom: 24px;
                line-height: 1.3;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                width: 100%;
                max-width: 100%;
            }

            .benefit-item {
                padding: 14px;
                gap: 8px;
                width: 100%;
                min-width: 0;
                box-sizing: border-box;
            }

            .benefit-item:hover {
                transform: none;
            }

            .benefit-icon {
                font-size: 24px;
            }

            .benefit-text strong {
                font-size: 12px;
                line-height: 1.3;
            }

            .benefit-text span {
                font-size: 10px;
                line-height: 1.4;
            }

            .closer-title {
                font-size: 26px;
                line-height: 1.3;
                margin-bottom: 20px;
            }

            .video-carousel-section {
                padding: 40px 16px;
            }

            .referral-section {
                min-height: auto;
                display: flex;
                flex-direction: column;
                justify-content: center;
                box-sizing: border-box;
                padding: 40px 16px !important;
            }
        }

        /* Tablet: 85vw video width */
        @media (min-width: 769px) and (max-width: 1024px) {
            .video-carousel-container {
                width: 85vw;
            }
        }

        @media (max-width: 768px) {
            .story-benefits {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
                gap: 0;
                padding: 30px 20px 20px;
                min-height: auto;
            }

            .benefits-content {
                min-height: auto;
                padding: 20px 0;
            }

            .story-closer {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
                gap: 0;
                padding: 40px 20px;
                min-height: auto;
            }

            .closer-content {
                min-height: auto;
                padding: 20px 0;
            }

            .benefits-image {
                width: 100%;
                max-width: 100%;
                margin: 0 auto;
                border-radius: 12px;
            }

            .closer-image {
                width: 100%;
                max-width: 100%;
                margin: 0 auto;
                border-radius: 12px;
            }

            .referral-section {
                min-height: auto;
                padding: 40px 16px !important;
            }

            .video-carousel-section {
                padding: 40px 16px;
            }

            .video-carousel-title {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .video-carousel-desc {
                font-size: 16px;
                margin-bottom: 40px;
                padding: 0 10px;
            }

            .video-carousel-container {
                width: 100%;
                max-width: 100vw;
                gap: 0;
                position: relative;
                justify-content: center;
                overflow: visible;
            }

            .video-nav-wrapper {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 10;
            }

            .video-nav-wrapper:first-child {
                left: 5px;
            }

            .video-nav-wrapper:last-child {
                right: 5px;
            }

            .video-nav-subtext {
                display: none;
            }

            .video-nav-btn {
                width: 40px;
                height: 40px;
                background: rgba(0, 0, 0, 0.5);
            }

            .video-nav-btn svg {
                width: 20px;
                height: 20px;
            }

            .video-carousel-wrapper {
                width: 90%;
                max-width: 90%;
                margin: 0 auto;
                overflow: hidden;
            }

            .video-carousel-container::before {
                width: 120%;
                height: 180%;
                filter: blur(30px);
            }

            .video-carousel-dots {
                gap: 8px;
                margin-top: 20px;
            }

            .video-dot {
                width: 10px;
                height: 10px;
            }

            .closer-desc {
                font-size: 17px;
                line-height: 1.7;
            }

            .closer-cta-button {
                font-size: 16px;
                padding: 14px 28px;
                width: 100%;
                text-align: center;
                margin-top: 30px;
            }
        }

        /* Tablet styles for story section */
        @media (min-width: 769px) and (max-width: 1200px) {
            .story-intro {
                gap: 40px;
                padding: 80px 20px;
                width: 100vw;
                margin-left: -50vw;
                margin-right: -50vw;
                min-height: 60vh;
            }

            .story-title {
                font-size: 36px;
            }

            .story-desc {
                font-size: 18px;
            }

            .story-image {
                max-width: 100%;
                height: auto;
                object-fit: contain;
            }
        }

/* ==========================================
   SUPPORTED CONSOLES GRID
   ========================================== */

.console-systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.console-system-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 16px 18px;
    text-align: center;
    cursor: default;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease,
                background 0.35s ease;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.console-system-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.console-system-card:hover {
    transform: translateY(-6px) scale(1.04);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--card-accent, rgba(139, 92, 246, 0.5));
    box-shadow: 0 12px 40px var(--card-glow, rgba(139, 92, 246, 0.15)),
                0 0 0 1px var(--card-accent, rgba(139, 92, 246, 0.3));
}

.console-system-card:hover .console-system-img {
    transform: scale(1.1) translateY(-4px);
    filter: drop-shadow(0 8px 16px var(--card-glow, rgba(139, 92, 246, 0.3)));
}

.console-system-img {
    width: 80px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 12px;
    display: block;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.35s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.console-system-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--card-accent, #8b5cf6);
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    .console-systems-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .console-system-card {
        padding: 16px 10px 14px;
    }

    .console-system-img {
        width: 60px;
        height: 48px;
    }

    .console-system-name {
        font-size: 12px;
    }
}

/* Referral Section */
.referral-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.referral-section .referral-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.referral-section .referral-step {
    text-align: center;
}

@media (max-width: 768px) {
    .referral-section {
        min-height: auto !important;
        padding: 40px 16px !important;
    }

    .referral-section .referral-title {
        font-size: clamp(22px, 5vw, 32px) !important;
        line-height: 1.3;
    }

    .referral-section > div {
        padding: 0 !important;
    }

    .referral-section > div > p {
        font-size: 15px !important;
        margin-bottom: 28px !important;
    }

    .referral-section > div > div:first-of-type {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-bottom: 28px !important;
    }

    .referral-section .referral-step {
        padding: 20px !important;
    }

    .referral-section .referral-step h3 {
        font-size: 15px !important;
    }

    .referral-section .referral-step p {
        font-size: 13px !important;
    }

    .referral-section .referral-step > div:first-child {
        font-size: 28px !important;
        margin-bottom: 8px !important;
    }

    .referral-section a[href="/referral-signup"] {
        padding: 14px 32px !important;
        font-size: 16px !important;
        width: 100%;
        max-width: 280px;
        text-align: center;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .referral-section {
        padding: 32px 14px !important;
    }

    .referral-section .referral-title {
        font-size: 22px !important;
    }

    .referral-section > div > p {
        font-size: 14px !important;
    }
}

/* FAQ Section */
.faq-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 20px;
    background: linear-gradient(180deg, #0a0118 0%, #0d0520 50%, #0a0118 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
            rgba(139, 92, 246, 0.08) 0%,
            transparent 60%);
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-section .section-header {
    margin-top: 0;
    margin-bottom: 12px;
}

.faq-subtitle {
    text-align: center;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.6;
}

.faq-accordion {
    gap: 14px;
}

.faq-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 14px;
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(139, 92, 246, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.faq-accordion .accordion-item.active {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.06);
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.12);
}

.faq-accordion .accordion-header {
    padding: 20px 22px;
    font-size: 16px;
    font-weight: 600;
}

.faq-accordion .accordion-content p {
    padding: 0 22px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 16px;
        min-height: auto;
    }

    .faq-section .section-header {
        font-size: clamp(22px, 5vw, 28px);
        margin-bottom: 8px;
    }

    .faq-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-accordion {
        gap: 10px;
    }

    .faq-accordion .accordion-item {
        border-radius: 10px;
    }

    .faq-accordion .accordion-header {
        padding: 16px 16px;
        font-size: 15px;
        min-height: 48px;
        gap: 12px;
    }

    .faq-accordion .accordion-header span:first-child {
        line-height: 1.4;
    }

    .faq-accordion .accordion-content p {
        padding: 0 16px 16px;
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 16px;
    }

    .faq-section .section-header {
        font-size: 20px;
    }

    .faq-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .faq-accordion {
        gap: 8px;
    }

    .faq-accordion .accordion-header {
        padding: 14px 14px;
        font-size: 14px;
    }

    .faq-accordion .accordion-content p {
        padding: 0 14px 14px;
        font-size: 13px;
        line-height: 1.55;
    }
}

