
        /* Tabbed Resources Section */
        .resources-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            padding: 40px 40px 60px 40px;
            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: 3px solid rgba(139, 92, 246, 0.6);
            border-bottom: none;
            backdrop-filter: blur(10px);
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.3),
                inset 0 0 60px rgba(139, 92, 246, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .resources-section>* {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .resources-section .section-header {
            margin-top: 0;
        }

        .resources-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 24px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(139, 92, 246, 0.12);
            border-radius: 14px;
            padding: 5px;
        }

        .resources-tabs::-webkit-scrollbar {
            display: none;
        }

        .tab-button {
            flex: 1;
            min-width: fit-content;
            padding: 12px 20px;
            background: transparent;
            border: 1px solid transparent;
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
            position: relative;
        }

        .tab-button:hover {
            background: rgba(168, 85, 247, 0.1);
            color: rgba(255, 255, 255, 0.9);
            border-color: rgba(168, 85, 247, 0.2);
        }

        .tab-button.active {
            background: rgba(168, 85, 247, 0.25);
            border-color: rgba(168, 85, 247, 0.5);
            color: #ffffff;
            box-shadow: 0 2px 12px rgba(168, 85, 247, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .tab-content-container {
            background: transparent;
            border: none;
            border-radius: 16px;
            padding: 20px;
            min-height: 200px;
        }

        .tab-content {
            display: none;
            gap: 12px;
            grid-template-columns: repeat(2, 1fr);
        }

        .tab-content.active {
            display: grid;
        }

        .resource-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: rgba(15, 15, 25, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(139, 92, 246, 0.2);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
            border-radius: 12px;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            font: inherit;
            text-align: left;
            width: 100%;
        }

        .resource-card:hover {
            transform: translateY(-4px);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
        }

        .resource-icon {
            font-size: 28px;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(138, 43, 226, 0.2);
            border-radius: 10px;
            flex-shrink: 0;
        }

        .resource-info {
            flex: 1;
            min-width: 0;
        }

        .resource-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                0 0 20px rgba(139, 92, 246, 0.3);
        }

        .resource-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.4;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
                0 0 12px rgba(255, 255, 255, 0.1);
        }

        .resource-arrow {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.25s ease;
        }

        .resource-card:hover .resource-arrow {
            color: #a855f7;
            transform: translateX(8px);
        }

        @media (max-width: 768px) {
            .tab-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .resources-tabs {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 4px;
                padding: 5px;
                overflow-x: visible;
            }

            .tab-button {
                min-width: 0;
                padding: 10px 8px;
                font-size: 12px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .resources-tabs {
                gap: 4px;
                padding: 4px;
            }

            .tab-button {
                padding: 10px 6px;
                font-size: 11px;
                border-radius: 8px;
            }

            .resource-card {
                padding: 14px;
                gap: 12px;
            }

            .resource-icon {
                width: 40px;
                height: 40px;
                font-size: 22px;
            }

            .resource-title {
                font-size: 14px;
            }

            .resource-desc {
                font-size: 12px;
            }
        }

        /* Reviews Tab */
        .reviews-tab-wrapper {
            grid-column: 1 / -1;
        }

        .reviews-tab-controls {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 16px;
        }

        .reviews-search {
            flex: 1;
            min-width: 200px;
            padding: 10px 14px;
            background: rgba(15, 15, 25, 0.7);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 10px;
            color: #fff;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s;
        }

        .reviews-search::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }

        .reviews-search:focus {
            border-color: rgba(139, 92, 246, 0.7);
            box-shadow: 0 0 12px rgba(139, 92, 246, 0.2);
        }

        .reviews-filters {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .reviews-filter-select {
            padding: 10px 12px;
            background: rgba(15, 15, 25, 0.7);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 10px;
            color: #fff;
            font-size: 13px;
            outline: none;
            cursor: pointer;
            transition: border-color 0.2s;
        }

        .reviews-filter-select:focus {
            border-color: rgba(139, 92, 246, 0.7);
        }

        .reviews-filter-select option {
            background: #1a0a2e;
            color: #fff;
        }

        .reviews-tab-summary {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin-bottom: 16px;
        }

        .reviews-summary-stars {
            color: #fbbf24;
            font-size: 16px;
            letter-spacing: 1px;
        }

        /* Desktop: grid layout for reviews */
        .reviews-scroll-container {
            width: 100%;
        }

        .reviews-scroll-track {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 14px;
            padding-right: 4px;
            overflow: hidden;
        }

        .reviews-scroll-track.collapsed {
            max-height: var(--collapsed-height, 660px);
            position: relative;
        }

        .reviews-scroll-track.collapsed::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, transparent, rgba(15, 15, 25, 0.98));
            pointer-events: none;
        }

        .reviews-tab-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 14px;
            overflow: hidden;
            padding-right: 4px;
        }

        .reviews-tab-grid.collapsed {
            max-height: 680px;
            position: relative;
        }

        .reviews-tab-grid.collapsed::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, transparent, rgba(15, 15, 25, 0.95));
            pointer-events: none;
        }

        .reviews-show-all-btn {
            display: block;
            margin: 20px auto 0;
            padding: 12px 32px;
            background: rgba(139, 92, 246, 0.15);
            border: 2px solid rgba(139, 92, 246, 0.4);
            border-radius: 12px;
            color: #a78bfa;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .reviews-show-all-btn:hover {
            background: rgba(139, 92, 246, 0.25);
            border-color: rgba(139, 92, 246, 0.6);
            transform: translateY(-1px);
        }

        .reviews-show-all-btn.hidden {
            display: none;
        }

        .reviews-more-subtext {
            text-align: center;
            color: rgba(255, 255, 255, 0.3);
            font-size: 13px;
            margin-top: 12px;
            font-style: italic;
        }

        .reviews-more-subtext a {
            color: rgba(139, 92, 246, 0.5);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .reviews-more-subtext a:hover {
            color: rgba(139, 92, 246, 0.8);
        }

        /* Floating "Hide Reviews" button - appears after expanding reviews */
        .reviews-hide-floating-btn {
            position: fixed;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%) translateY(80px);
            padding: 12px 28px;
            background: rgba(15, 15, 25, 0.95);
            border: 2px solid rgba(139, 92, 246, 0.5);
            border-radius: 30px;
            color: #a78bfa;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            z-index: 99990;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3), 0 0 40px rgba(139, 92, 246, 0.15), 0 8px 32px rgba(0, 0, 0, 0.5);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, background 0.2s ease, border-color 0.2s ease;
            opacity: 0;
            pointer-events: none;
        }

        .reviews-hide-floating-btn.visible {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .reviews-hide-floating-btn:hover {
            background: rgba(139, 92, 246, 0.25);
            border-color: rgba(139, 92, 246, 0.7);
        }

        .reviews-tab-grid::-webkit-scrollbar {
            width: 6px;
        }

        .reviews-tab-grid::-webkit-scrollbar-track {
            background: rgba(139, 92, 246, 0.05);
            border-radius: 3px;
        }

        .reviews-tab-grid::-webkit-scrollbar-thumb {
            background: rgba(139, 92, 246, 0.3);
            border-radius: 3px;
        }

        .review-tab-card {
            background: rgba(15, 15, 25, 0.6);
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: 14px;
            padding: 18px;
            transition: all 0.3s ease;
        }

        .review-tab-card:hover {
            border-color: rgba(139, 92, 246, 0.45);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
            transform: translateY(-2px);
        }

        .review-tab-top {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .review-tab-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6 0%, #6a1bb2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .review-tab-meta {
            flex: 1;
            min-width: 0;
        }

        .review-tab-meta strong {
            display: block;
            color: #fff;
            font-size: 14px;
        }

        .review-tab-loc {
            color: #a78bfa;
            font-size: 12px;
        }

        .review-tab-rating {
            text-align: right;
            flex-shrink: 0;
        }

        .review-tab-stars {
            display: block;
            color: #fbbf24;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .review-tab-date {
            display: block;
            color: rgba(255, 255, 255, 0.35);
            font-size: 11px;
        }

        .review-tab-text {
            font-size: 13px;
            line-height: 1.55;
            color: #d0d0d0;
            font-style: italic;
            margin: 0 0 12px;
        }

        .review-tab-footer {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            font-size: 11px;
        }

        .review-tab-product {
            background: rgba(139, 92, 246, 0.15);
            color: #a78bfa;
            padding: 3px 10px;
            border-radius: 12px;
            font-weight: 600;
        }

        .review-platform-link {
            color: #22c55e;
            text-decoration: none;
            font-weight: 600;
        }

        .review-platform-link:hover {
            text-decoration: underline;
        }

        .review-tab-helpful {
            color: rgba(255, 255, 255, 0.4);
            margin-left: auto;
        }

        .reviews-tab-count {
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 12px;
            margin-top: 14px;
        }

        @media (max-width: 768px) {
            .reviews-tab-controls {
                flex-direction: column;
            }

            .reviews-search {
                min-width: 0;
            }

            .reviews-filters {
                flex-direction: column;
            }

            .reviews-filter-select {
                width: 100%;
            }

            .reviews-tab-grid {
                grid-template-columns: 1fr;
            }

            .reviews-tab-grid.collapsed {
                max-height: 500px;
            }

            /* Mobile horizontal scroll carousel for reviews */
            .reviews-scroll-container {
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                scroll-padding: 0 20px;
                padding: 0 20px;
                margin: 0 -20px;
            }

            .reviews-scroll-container::-webkit-scrollbar {
                display: none;
            }

            .reviews-scroll-container {
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .reviews-scroll-track {
                display: flex;
                gap: 14px;
                padding: 4px 0;
                max-height: none;
                overflow: visible;
            }

            .reviews-scroll-track.collapsed {
                max-height: none;
            }

            .reviews-scroll-track.collapsed::after {
                display: none;
            }

            .reviews-scroll-track .review-tab-card {
                min-width: 280px;
                max-width: 300px;
                flex-shrink: 0;
                scroll-snap-align: center;
            }
        }

        /* Full-width Reviews Section */
        .reviews-section-full {
            padding: 80px 60px 60px;
            background: linear-gradient(180deg, rgba(139, 92, 246, 0.12) 0%, rgba(88, 40, 180, 0.08) 30%, rgba(251, 191, 36, 0.04) 70%, rgba(139, 92, 246, 0.1) 100%);
            border-top: 1px solid rgba(139, 92, 246, 0.35);
            border-bottom: 1px solid rgba(251, 191, 36, 0.2);
            box-sizing: border-box;
            box-shadow: inset 0 0 80px rgba(139, 92, 246, 0.06), inset 0 -40px 80px rgba(251, 191, 36, 0.03);
            position: relative;
        }

        .reviews-section-full .benefits-title {
            margin-bottom: 10px;
        }

        .reviews-section-full .reviews-tab-controls {
            max-width: 960px;
            margin: 0 auto 24px;
            gap: 14px;
        }

        .reviews-section-full .reviews-tab-summary {
            margin-bottom: 24px;
            font-size: 15px;
        }

        .reviews-section-full .reviews-tab-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            padding: 4px;
        }

        .reviews-section-full .reviews-tab-grid.collapsed {
            max-height: 700px;
        }

        .reviews-section-full .reviews-scroll-track {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            padding: 4px;
        }

        .reviews-section-full .reviews-scroll-track.collapsed {
            max-height: var(--collapsed-height, 660px);
        }

        .reviews-section-full .review-tab-card {
            padding: 22px;
        }

        .reviews-section-full .review-tab-top {
            margin-bottom: 16px;
        }

        .reviews-section-full .review-tab-text {
            font-size: 14px;
            line-height: 1.65;
            margin-bottom: 16px;
        }

        .reviews-section-full .review-tab-footer {
            padding-top: 12px;
            border-top: 1px solid rgba(139, 92, 246, 0.1);
        }

        .reviews-section-full .reviews-tab-count {
            margin-top: 20px;
        }

        .reviews-section-full .testimonials-feedback-subtext {
            margin-top: 24px;
        }

        .reviews-section-full .reviews-search {
            background: rgba(15, 15, 25, 0.5);
            padding: 12px 16px;
            font-size: 15px;
        }

        .reviews-section-full .reviews-filter-select {
            background: rgba(15, 15, 25, 0.5);
            padding: 12px 14px;
        }

        @media (max-width: 768px) {
            .reviews-section-full {
                padding: 50px 0 40px;
            }

            .reviews-section-full .benefits-title,
            .reviews-section-full > p,
            .reviews-section-full .reviews-tab-summary,
            .reviews-section-full .testimonials-feedback-subtext {
                padding-left: 20px;
                padding-right: 20px;
            }

            .reviews-section-full .reviews-tab-grid {
                grid-template-columns: 1fr;
            }

            .reviews-section-full .reviews-tab-grid.collapsed {
                max-height: 500px;
            }

            .reviews-section-full .reviews-tab-controls {
                flex-direction: column;
            }

            .reviews-section-full .reviews-filters {
                flex-direction: column;
            }

            .reviews-section-full .reviews-filter-select {
                width: 100%;
            }

            .reviews-section-full .reviews-scroll-container {
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                scroll-padding: 0 20px;
                padding: 0 20px;
            }

            .reviews-section-full .reviews-scroll-track {
                display: flex;
                gap: 16px;
                padding: 4px 0;
            }

            .reviews-section-full .reviews-scroll-track .review-tab-card {
                min-width: 280px;
                max-width: 300px;
                flex-shrink: 0;
                scroll-snap-align: center;
            }
        }

        /* Contact Tab - Customers Section */
        .contact-customers {
            grid-column: 1 / -1;
            margin-top: 20px;
        }

        .contact-customers-title {
            text-align: center;
            color: #ffffff;
            font-size: 24px;
            margin: 0 0 8px;
        }

        .contact-customers-subtitle {
            text-align: center;
            color: #a0a0a0;
            margin: 0 0 24px;
            font-size: 14px;
        }

        .contact-reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 16px;
        }

        .contact-review-card {
            display: flex;
            gap: 14px;
            padding: 18px;
            background: rgba(26, 10, 46, 0.6);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .contact-review-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
            transform: translateY(-2px);
        }

        .contact-review-avatar {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6 0%, #6a1bb2 100%);
            border: 2px solid rgba(139, 92, 246, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .contact-review-body {
            min-width: 0;
        }

        .contact-review-header {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 4px;
        }

        .contact-review-header strong {
            color: #fff;
            font-size: 15px;
        }

        .contact-review-loc {
            color: #a78bfa;
            font-size: 12px;
        }

        .contact-review-stars {
            color: #fbbf24;
            font-size: 13px;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .contact-review-quote {
            font-size: 13px;
            line-height: 1.5;
            color: #d0d0d0;
            font-style: italic;
            margin: 0 0 10px;
        }

        @media (max-width: 768px) {
            .contact-reviews-grid {
                grid-template-columns: 1fr;
            }

            .contact-customers-title {
                font-size: 20px;
            }
        }

        /* Testimonials Carousel Styles */
        .testimonials-carousel-section {
            margin: 0;
            padding: 16px 0;
            overflow-x: hidden;
            overflow-y: visible;
            width: 100%;
            max-width: 100%;
            position: relative;
            box-sizing: border-box;
            background: transparent;
        }

        /* Move runner character down to the testimonial card border */
        .testimonials-carousel-section > .retro-runner-track [class*="retro-"] {
            top: 30px;
        }

        .testimonials-carousel-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
            padding: 40px 60px 12px;
            overflow: hidden;
        }

        .testimonials-carousel-container::before,
        .testimonials-carousel-container::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 150px;
            pointer-events: none;
            z-index: 10;
        }

        .testimonials-carousel-container::before {
            left: 0;
            background: linear-gradient(to right, rgba(15, 10, 30, 0.98) 0%, transparent 100%);
        }

        .testimonials-carousel-container::after {
            right: 0;
            background: linear-gradient(to left, rgba(15, 10, 30, 0.98) 0%, transparent 100%);
        }

        .testimonials-carousel-track {
            display: flex;
            gap: 20px;
            animation: scroll-testimonials 20s linear infinite;
        }

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

        @keyframes scroll-testimonials {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-25%);
            }
        }

        .testimonial-card {
            position: relative;
            min-width: 350px;
            background: rgba(15, 15, 25, 0.6);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
        }

        .testimonial-card:hover {
            background: rgba(139, 92, 246, 0.18);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.3);
            transform: translateY(-8px) scale(1.02);
        }

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

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(138, 43, 226, 0.5);
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
        }

        .testimonial-location {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
        }

        .testimonial-rating {
            color: #fbbf24;
            font-size: 16px;
            letter-spacing: 2px;
        }

        .testimonial-quote {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.6;
            font-style: italic;
        }

        .carousel-button {
            display: none;
        }

        @media (max-width: 768px) {
            .testimonials-carousel-container {
                padding: 15px 15px;
            }

            .testimonials-carousel-track {
                animation: scroll-testimonials 15s linear infinite;
                gap: 10px;
            }

            .testimonial-card {
                min-width: 180px;
                padding: 12px;
                gap: 8px;
                border-radius: 12px;
            }

            .testimonial-header {
                gap: 8px;
            }

            .testimonial-avatar {
                width: 32px;
                height: 32px;
            }

            .testimonial-name {
                font-size: 12px;
            }

            .testimonial-location {
                font-size: 10px;
            }

            .testimonial-rating {
                font-size: 12px;
                letter-spacing: 1px;
            }

            .testimonial-quote {
                font-size: 11px;
                line-height: 1.4;
            }

            .carousel-button {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .testimonials-carousel-container {
                padding: 10px 10px;
            }

            .testimonials-carousel-track {
                animation: scroll-testimonials 12s linear infinite;
                gap: 8px;
            }

            .testimonial-card {
                min-width: 150px;
                padding: 10px;
                gap: 6px;
                border-radius: 10px;
            }

            .testimonial-avatar {
                width: 28px;
                height: 28px;
            }

            .testimonial-name {
                font-size: 11px;
            }

            .testimonial-location {
                font-size: 9px;
            }

            .testimonial-rating {
                font-size: 10px;
            }

            .testimonial-quote {
                font-size: 10px;
                line-height: 1.3;
            }

            .carousel-button {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }

            .carousel-button.prev {
                left: 5px;
            }

            .carousel-button.next {
                right: 5px;
            }
        }

        @media (max-width: 480px) {
            .cta-cards-hero {
                flex-direction: column;
                gap: 12px;
                align-items: stretch;
            }

            .featured-product .cta-cards-hero {
                padding: 12px 12px 0;
            }

            /* Make TikTok and eBay cards same size as PayPal on mobile */
            .featured-product .cta-card-hero:nth-child(3),
            .featured-product .cta-card-hero.ebay-option {
                transform: scale(1);
            }

            .featured-product .cta-card-hero:nth-child(3):hover,
            .featured-product .cta-card-hero.ebay-option:hover {
                transform: scale(1) translateY(-2px);
            }

            .cta-card-hero {
                padding: 14px 16px;
                gap: 12px;
                flex-direction: row;
                text-align: left;
                margin-top: 0;
            }

            .cta-card-best {
                padding: 20px 16px;
                transform: scale(1);
            }

            .cta-card-best:hover {
                transform: scale(1) translateY(-2px);
            }

            .cta-card-icon {
                width: 48px;
                height: 48px;
            }

            .cta-card-title {
                font-size: 15px;
            }

            .cta-card-desc {
                font-size: 12px;
            }

            .cta-card-badge {
                font-size: 9px;
                padding: 3px 8px;
                right: 12px;
            }
        }

        /* Affiliates Section Styles */
        .affiliates-section {
            background: linear-gradient(180deg, #0a0118 0%, #1a0a2e 50%, #0a0118 100%);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .affiliates-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .affiliates-title {
            font-size: 48px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 15px;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .affiliates-subtitle {
            font-size: 18px;
            text-align: center;
            color: #a0a0a0;
            margin-bottom: 60px;
            position: relative;
        }

        .affiliates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .affiliate-card {
            background: linear-gradient(145deg, rgba(42, 23, 70, 0.6) 0%, rgba(26, 10, 46, 0.8) 100%);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid rgba(139, 92, 246, 0.2);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
            position: relative;
            overflow: hidden;
        }

        .affiliate-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .affiliate-card:hover {
            transform: translateY(-8px);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow:
                0 10px 30px rgba(139, 92, 246, 0.3),
                0 0 40px rgba(251, 191, 36, 0.2);
        }

        .affiliate-card:hover::before {
            opacity: 1;
        }

        .affiliate-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid rgba(139, 92, 246, 0.3);
            transition: all 0.4s ease;
            background: linear-gradient(135deg, #8b5cf6 0%, #6a1bb2 100%);
            padding: 5px;
        }

        .affiliate-card:hover .affiliate-avatar {
            border-color: rgba(251, 191, 36, 0.6);
            transform: scale(1.05) rotate(5deg);
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
        }

        .affiliate-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .affiliate-info {
            position: relative;
            z-index: 1;
        }

        .affiliate-name {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 5px;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.4),
                0 0 30px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(34, 197, 94, 0.4);
        }

        .affiliate-location {
            font-size: 14px;
            color: #a78bfa;
            margin-bottom: 10px;
        }

        .affiliate-rating {
            color: #fbbf24;
            font-size: 18px;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .affiliate-quote {
            font-size: 15px;
            line-height: 1.6;
            color: #d0d0d0;
            font-style: italic;
            margin-bottom: 20px;
            min-height: 80px;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
                0 0 12px rgba(255, 255, 255, 0.1);
        }

        .affiliate-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(106, 27, 178, 0.3) 100%);
            color: #a78bfa;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid rgba(139, 92, 246, 0.4);
        }

        @media (max-width: 768px) {
            .affiliates-section {
                padding: 60px 15px;
            }

            .affiliates-title {
                font-size: 32px;
            }

            .affiliates-subtitle {
                font-size: 16px;
                margin-bottom: 40px;
            }

            .affiliates-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .affiliate-card {
                padding: 25px;
            }

            .affiliate-avatar {
                width: 100px;
                height: 100px;
            }

            .affiliate-name {
                font-size: 20px;
            }

            .affiliate-quote {
                font-size: 14px;
                min-height: auto;
            }
        }

        /* Rotating Testimonials Carousel */
        .rotating-testimonials-section {
            background: transparent;
            width: 100vw;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin: 0 !important;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
        }

        .rotating-testimonials-title {
            font-size: 32px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 8px;
            color: #ffffff;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1200px;
        }

        .rotating-testimonials-subtitle {
            font-size: 15px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1200px;
        }

        .rotating-testimonials-carousel {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            min-height: 520px;
            z-index: 1;
            background: transparent;
            border-radius: 28px;
            padding: 0;
            border: none;
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }

            100% {
                background-position: 1000px 0;
            }
        }

        .rotating-testimonial-card {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 15, 25, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 28px;
            padding: 50px 80px;
            text-align: center;
            border: 1px solid rgba(255, 215, 0, 0.5);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.25), 0 0 60px rgba(255, 215, 0, 0.1);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }

        .rotating-testimonial-card.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        @keyframes bump {
            0% {
                transform: translateY(30px) scale(0.95);
            }

            50% {
                transform: translateY(-10px) scale(1.02);
            }

            100% {
                transform: translateY(0) scale(1);
            }
        }

        .rotating-testimonial-card.exit {
            opacity: 0;
            transform: translateY(-30px) scale(0.95);
        }

        .rotating-testimonial-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: linear-gradient(135deg,
                    rgba(255, 215, 0, 0.35),
                    rgba(255, 193, 7, 0.2),
                    rgba(255, 215, 0, 0.1),
                    rgba(255, 193, 7, 0.2),
                    rgba(255, 215, 0, 0.35));
            background-size: 300% 300%;
            border-radius: 25px;
            z-index: -1;
            animation: testimonial-golden-glow 6s ease infinite;
        }

        .rotating-testimonial-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: 0;
            width: 40%;
            height: 200%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 215, 0, 0.06),
                rgba(255, 235, 59, 0.15),
                rgba(255, 215, 0, 0.06),
                transparent
            );
            transform: rotate(25deg) translateX(-125%);
            will-change: transform, opacity;
            animation: golden-shine-sweep 4s ease-in-out infinite;
            pointer-events: none;
            z-index: 1;
        }

        @keyframes testimonial-golden-glow {
            0%, 100% { background-position: 0% 50%; }
            33% { background-position: 100% 50%; }
            66% { background-position: 50% 100%; }
        }

        @keyframes golden-shine-sweep {
            0% {
                transform: rotate(25deg) translateX(-125%);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            50% {
                transform: rotate(25deg) translateX(275%);
                opacity: 1;
            }
            60% {
                opacity: 0;
            }
            100% {
                transform: rotate(25deg) translateX(275%);
                opacity: 0;
            }
        }

        .rotating-testimonial-card:hover {
            transform: translateY(-4px) scale(1.02);
            border-color: rgba(255, 215, 0, 0.5);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(255, 215, 0, 0.25),
                0 0 80px rgba(255, 215, 0, 0.1);
        }

        .rotating-testimonial-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-bottom: 28px;
            position: relative;
            z-index: 2;
        }

        .rotating-testimonial-avatar {
            width: 68px;
            height: 68px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgba(251, 191, 36, 0.5);
            box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
            flex-shrink: 0;
        }

        .rotating-testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .rotating-testimonial-info {
            text-align: center;
        }

        .rotating-testimonial-name {
            font-size: 26px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 4px;
            font-family: 'Oxanium', sans-serif;
            letter-spacing: 0.3px;
        }

        .rotating-testimonial-location {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 14px;
        }

        .rotating-testimonial-stars {
            color: #FFD700;
            font-size: 28px;
            letter-spacing: 6px;
            margin-bottom: 33px;
            filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.9));
            animation: stars-pulse 3s ease-in-out infinite;
        }

        @keyframes stars-pulse {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        .rotating-testimonial-quote {
            font-size: 28px;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.9);
            font-style: italic;
            font-weight: 400;
            margin-bottom: 38px;
            flex-grow: 1;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
            letter-spacing: 0.2px;
            position: relative;
            z-index: 2;
        }

        .rotating-testimonial-quote::before {
            content: '"';
            color: rgba(255, 215, 0, 0.45);
            font-size: 56px;
            font-family: Georgia, serif;
            line-height: 0;
            display: block;
            margin-bottom: 21px;
            filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
        }

        .rotating-testimonial-platform {
            display: inline-block;
            background: rgba(255, 215, 0, 0.08);
            color: #FFD700;
            font-size: 14px;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: 8px;
            border: 1px solid rgba(255, 215, 0, 0.25);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            transition: all 0.2s ease;
            position: relative;
            white-space: nowrap;
            backdrop-filter: blur(10px);
            z-index: 2;
        }

        .rotating-testimonial-platform::before {
            content: '✓ ';
            font-weight: 700;
        }

        .rotating-testimonial-platform:hover {
            background: rgba(255, 215, 0, 0.15);
            border-color: rgba(255, 215, 0, 0.5);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }

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

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

        .testimonials-feedback-subtext {
            text-align: center;
            margin-top: 28px;
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .testimonials-feedback-subtext a {
            color: #8B5CF6;
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-thickness: 1px;
            font-weight: 700;
            transition: all 0.3s ease;
            position: relative;
            padding: 2px 6px;
            border-radius: 4px;
        }

        .testimonials-feedback-subtext a:hover {
            color: #fff;
            background: rgba(139, 92, 246, 0.25);
            text-decoration-color: #8B5CF6;
            text-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
        }

        .rotating-testimonials-navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            margin-top: 33px;
            position: relative;
            z-index: 1;
        }

        .rotating-testimonials-nav-btn {
            background: rgba(255, 215, 0, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            color: rgba(255, 215, 0, 0.7);
            width: 47px;
            height: 47px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 19px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rotating-testimonials-nav-btn:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: rgba(255, 215, 0, 0.4);
            color: #FFD700;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
        }

        .rotating-testimonials-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .rotating-testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .rotating-testimonials-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .rotating-testimonials-dot.active {
            background: #FFD700;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
        }

        .rotating-testimonials-dot:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        @media (max-width: 768px) {
            .rotating-testimonials-section {
                width: 100%;
                margin-left: 0;
                margin-right: 0;
                padding: 40px 15px;
                overflow: hidden;
                box-sizing: border-box;
            }

            .rotating-testimonials-title {
                font-size: 26px;
            }

            .rotating-testimonials-subtitle {
                font-size: 14px;
                margin-bottom: 24px;
            }

            .rotating-testimonials-carousel {
                min-height: 400px;
                max-width: 100%;
                width: 100%;
                padding: 10px 0 0 0;
                box-sizing: border-box;
                overflow: hidden;
            }

            .rotating-testimonial-card {
                height: auto;
                min-height: 370px;
                left: 0;
                right: 0;
                margin: 0 auto;
                width: 100%;
                max-width: 100%;
                padding: 28px 16px;
                box-sizing: border-box;
                border-radius: 18px;
            }

            .rotating-testimonials-page {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .rotating-testimonial-header {
                margin-bottom: 18px;
            }

            .rotating-testimonial-avatar {
                width: 52px;
                height: 52px;
            }

            .rotating-testimonial-name {
                font-size: 19px;
            }

            .rotating-testimonial-location {
                font-size: 14px;
            }

            .rotating-testimonial-quote {
                font-size: 18px;
                line-height: 1.5;
            }

            .rotating-testimonial-quote::before {
                font-size: 36px;
                margin-bottom: 12px;
            }

            .rotating-testimonial-stars {
                font-size: 18px;
                letter-spacing: 4px;
                margin-bottom: 20px;
            }

            .rotating-testimonial-platform {
                font-size: 12px;
                padding: 8px 16px;
            }

            .rotating-testimonials-navigation {
                margin-top: 20px;
                gap: 12px;
            }

            .rotating-testimonials-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .rotating-testimonials-section {
                padding: 30px 10px;
            }

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

            .rotating-testimonials-carousel {
                min-height: 340px;
                padding: 10px 0 0 0;
                width: 100%;
                max-width: 100%;
            }

            .rotating-testimonial-card {
                padding: 20px 12px;
                height: auto;
                min-height: 310px;
                left: 0;
                right: 0;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                border-radius: 14px;
            }

            .rotating-testimonial-header {
                margin-bottom: 14px;
            }

            .rotating-testimonial-avatar {
                width: 44px;
                height: 44px;
            }

            .rotating-testimonial-quote {
                font-size: 16px;
                line-height: 1.45;
            }

            .rotating-testimonial-quote::before {
                font-size: 28px;
                margin-bottom: 8px;
            }

            .rotating-testimonial-name {
                font-size: 15px;
            }

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

            .rotating-testimonial-stars {
                font-size: 16px;
                letter-spacing: 3px;
                margin-bottom: 16px;
            }

            .rotating-testimonial-platform {
                font-size: 11px;
                padding: 7px 14px;
            }

            .rotating-testimonials-nav-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .rotating-testimonials-dot {
                width: 8px;
                height: 8px;
            }
        }

        /* Final CTA Section */
        .final-cta-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            text-align: center;
            padding: 60px 40px;
            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: 3px solid rgba(139, 92, 246, 0.6);
            border-bottom: 3px solid rgba(139, 92, 246, 0.6);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.3),
                inset 0 0 60px rgba(139, 92, 246, 0.1);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .final-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .final-cta-content {
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .final-cta-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 20px 0;
            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);
            line-height: 1.2;
        }

        .final-cta-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 40px 0;
            line-height: 1.6;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3),
                0 0 20px rgba(255, 255, 255, 0.2);
        }

        .final-cta-button {
            display: inline-block;
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            color: #1a1a1a;
            font-size: 24px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            padding: 22px 50px;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.2s ease;
            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);
            border: none;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        @keyframes cta-super-glow {

            0%,
            100% {
                box-shadow: 0 2px 0 rgba(255, 255, 255, 0.6) inset,
                    0 10px 25px rgba(251, 191, 36, 0.9),
                    0 0 60px rgba(251, 191, 36, 0.7),
                    0 0 100px rgba(251, 191, 36, 0.5);
                transform: scale(1);
            }

            50% {
                box-shadow: 0 2px 0 rgba(255, 255, 255, 0.7) inset,
                    0 12px 35px rgba(251, 191, 36, 1),
                    0 0 80px rgba(251, 191, 36, 0.9),
                    0 0 140px rgba(251, 191, 36, 0.7);
                transform: scale(1.04);
            }
        }

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

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

        .final-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);
        }

        .final-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);
        }

        .final-cta-urgency {
            display: block;
            margin-top: 20px;
            font-size: 16px;
            color: #22c55e;
            font-weight: 600;
            animation: pulse-text 2s ease-in-out infinite;
            text-shadow: 0 0 15px rgba(34, 197, 94, 0.6),
                0 0 30px rgba(34, 197, 94, 0.4);
            text-align: center;
            width: 100%;
        }

        @media (max-width: 768px) {
            .final-cta-section {
                padding: 60px 20px;
                margin-left: -50vw;
                margin-right: -50vw;
            }

            .final-cta-title {
                font-size: 32px;
            }

            .final-cta-subtitle {
                font-size: 18px;
                margin-bottom: 30px;
            }

            .final-cta-button {
                font-size: 20px;
                padding: 20px 40px;
            }

            .final-cta-urgency {
                font-size: 14px;
            }
        }

        /* Coming Soon Section */
        .coming-soon-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            padding: 60px 40px 30px 40px;
            margin-top: 0;
            margin-bottom: 0;
            background: linear-gradient(135deg, #1a1a1e 0%, #242428 30%, #1a1a1e 60%, #141416 100%);
            border-top: 2px solid rgba(34, 197, 94, 0.6);
            border-bottom: 2px solid rgba(34, 197, 94, 0.6);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 50px rgba(34, 197, 94, 0.25),
                0 0 100px rgba(34, 197, 94, 0.1),
                inset 0 0 80px rgba(34, 197, 94, 0.05);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            min-height: 100svh;
            box-sizing: border-box;
        }

        .coming-soon-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .coming-soon-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .coming-soon-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .coming-soon-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 42px;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 15px 0;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(34, 197, 94, 0.6),
                0 0 40px rgba(34, 197, 94, 0.4),
                0 0 60px rgba(34, 197, 94, 0.3);
        }

        .coming-soon-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .coming-soon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .coming-soon-card {
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(34, 197, 94, 0.3);
            border-radius: 16px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(34, 197, 94, 0.08);
        }

        .coming-soon-card::before {
            content: '';
            position: absolute;
            top: -2px;
            right: -2px;
            padding: 6px 20px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #ffffff;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom-left-radius: 12px;
            content: 'Landing in the UK soon';
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }

        .coming-soon-card:hover {
            border-color: rgba(34, 197, 94, 0.6);
            background: rgba(0, 0, 0, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
        }

        .coming-soon-card-image {
            width: 100%;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 5px;
            margin-bottom: 15px;
        }

        .coming-soon-card-image img {
            max-width: 100%;
            max-height: 260px;
            object-fit: contain;
            border-radius: 12px;
            filter: drop-shadow(0 4px 15px rgba(34, 197, 94, 0.3)) drop-shadow(0 0 30px rgba(34, 197, 94, 0.4));
        }

        .coming-soon-card-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 26px;
            font-weight: 700;
            color: #22c55e;
            margin: 0;
            letter-spacing: 1px;
            text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
        }

        .coming-soon-card-specs {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .coming-soon-spec {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
        }

        .coming-soon-spec-icon {
            color: #22c55e;
            font-size: 16px;
            flex-shrink: 0;
        }

        .coming-soon-card-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.75);
            margin-top: 5px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            flex-grow: 1;
        }

        .coming-soon-notify-btn {
            padding: 12px 24px;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
            border: 2px solid rgba(34, 197, 94, 0.4);
            border-radius: 8px;
            color: #22c55e;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .coming-soon-notify-btn:hover {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(22, 163, 74, 0.3) 100%);
            border-color: rgba(34, 197, 94, 0.6);
            color: #ffffff;
            transform: scale(1.02);
        }

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

            .coming-soon-header {
                margin-bottom: 30px;
            }

            .coming-soon-title {
                font-size: 26px;
                letter-spacing: 1px;
            }

            .coming-soon-subtitle {
                font-size: 16px;
            }

            .coming-soon-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0;
                max-width: 400px;
                margin: 0 auto;
            }

            .coming-soon-card {
                padding: 20px;
                gap: 10px;
            }

            .coming-soon-card-image {
                height: 180px;
                margin-top: 0;
                margin-bottom: 10px;
            }

            .coming-soon-card-image img {
                max-height: 160px;
            }

            .coming-soon-card-title {
                font-size: 22px;
            }

            .coming-soon-card-description {
                font-size: 13px;
                padding-top: 10px;
                margin-top: 0;
            }

            .coming-soon-notify-btn {
                padding: 10px 20px;
            }
        }

