.elementor-5 .elementor-element.elementor-element-c2b51b9{--display:flex;}.elementor-5 .elementor-element.elementor-element-3aa8651{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-3aa8651 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #002147;
        }

        .hero-section {
            position: relative;
            min-height: 100vh;
            background: #000000;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 80px 20px 60px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 20%, rgba(218, 165, 32, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
            opacity: 0;
            animation: fadeInBackground 1.5s ease-out forwards;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(218, 165, 32, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(218, 165, 32, 0.03) 1px, transparent 1px),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><filter id="glow"><feGaussianBlur stdDeviation="3.5" result="coloredBlur"/><feMerge><feMergeNode in="coloredBlur"/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs><g fill="%23DAA520" opacity="0.4"><circle cx="100" cy="100" r="2"><animate attributeName="opacity" values="0.3;1;0.3" dur="4s" repeatCount="indefinite"/></circle><circle cx="300" cy="200" r="1.5"><animate attributeName="opacity" values="0.2;0.8;0.2" dur="5s" repeatCount="indefinite"/></circle><circle cx="500" cy="150" r="2"><animate attributeName="opacity" values="0.4;1;0.4" dur="3s" repeatCount="indefinite"/></circle><circle cx="700" cy="300" r="1"><animate attributeName="opacity" values="0.3;0.9;0.3" dur="6s" repeatCount="indefinite"/></circle><circle cx="900" cy="250" r="2.5"><animate attributeName="opacity" values="0.2;1;0.2" dur="4.5s" repeatCount="indefinite"/></circle><circle cx="1100" cy="180" r="1.5"><animate attributeName="opacity" values="0.4;0.8;0.4" dur="5.5s" repeatCount="indefinite"/></circle><circle cx="200" cy="400" r="2"><animate attributeName="opacity" values="0.3;1;0.3" dur="3.5s" repeatCount="indefinite"/></circle><circle cx="450" cy="500" r="1"><animate attributeName="opacity" values="0.2;0.9;0.2" dur="4.8s" repeatCount="indefinite"/></circle><circle cx="650" cy="550" r="2"><animate attributeName="opacity" values="0.4;1;0.4" dur="5.2s" repeatCount="indefinite"/></circle><circle cx="850" cy="600" r="1.5"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="4.2s" repeatCount="indefinite"/></circle><circle cx="1050" cy="480" r="2"><animate attributeName="opacity" values="0.2;1;0.2" dur="6.5s" repeatCount="indefinite"/></circle></g></svg>');
            background-size: 50px 50px, 50px 50px, cover;
            background-position: 0 0, 0 0, center;
            pointer-events: none;
            opacity: 0;
            animation: fadeInParticles 2s ease-out 0.5s forwards;
        }

        @keyframes fadeInBackground {
            to { opacity: 1; }
        }

        @keyframes fadeInParticles {
            to { opacity: 0.6; }
        }

        .hero-blur-effect {
            position: absolute;
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(218, 165, 32, 0.12) 0%, rgba(218, 165, 32, 0.04) 40%, transparent 70%);
            filter: blur(150px);
            pointer-events: none;
            opacity: 0;
            animation: blurAppear 2s ease-out forwards, floatBlur 20s ease-in-out infinite;
        }

        @keyframes blurAppear {
            to { opacity: 1; }
        }

        @keyframes floatBlur {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(50px, -50px) scale(1.1); }
            50% { transform: translate(-30px, 30px) scale(0.9); }
            75% { transform: translate(40px, 50px) scale(1.05); }
        }

        .blur-1 {
            top: -300px;
            right: -300px;
            animation-delay: 0s;
        }

        .blur-2 {
            bottom: -300px;
            left: -300px;
            animation-delay: 0.5s;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .hero-text {
            color: white;
        }

        .hero-badge {
            display: inline-block;
            color: #DAA520;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            padding: 8px 20px;
            background: rgba(218, 165, 32, 0.08);
            border: 1px solid rgba(218, 165, 32, 0.2);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            opacity: 0;
            animation: slideUp 0.8s ease-out 0.3s forwards;
            position: relative;
            overflow: hidden;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.3), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 200%; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h1 {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -2px;
            opacity: 0;
            animation: slideUp 0.8s ease-out 0.5s forwards;
        }

        .hero-highlight {
            color: #DAA520;
            background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-description {
            font-size: 22px;
            line-height: 1.5;
            margin-bottom: 48px;
            opacity: 0;
            font-weight: 400;
            max-width: 540px;
            animation: slideUp 0.8s ease-out 0.7s forwards;
        }

        .hero-features {
            display: flex;
            gap: 32px;
            margin-bottom: 48px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            opacity: 0;
            animation: slideUp 0.8s ease-out forwards;
        }

        .feature-item:nth-child(1) { animation-delay: 0.9s; }
        .feature-item:nth-child(2) { animation-delay: 1.0s; }
        .feature-item:nth-child(3) { animation-delay: 1.1s; }

        .feature-item svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: #DAA520;
            filter: drop-shadow(0 0 8px rgba(218, 165, 32, 0.4));
        }

        .cta-group {
            display: flex;
            flex-direction: column;
            gap: 16px;
            opacity: 0;
            animation: slideUp 0.8s ease-out 1.3s forwards;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 18px 40px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            font-family: inherit;
            position: relative;
            overflow: hidden;
        }

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

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
            color: #000000;
            box-shadow: 0 8px 24px rgba(218, 165, 32, 0.4), 0 0 40px rgba(218, 165, 32, 0.15);
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 16px 40px rgba(218, 165, 32, 0.5), 0 0 60px rgba(218, 165, 32, 0.2);
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        .btn-primary svg {
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .btn-primary:hover svg {
            transform: translateX(5px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .btn svg {
            width: 20px;
            height: 20px;
        }

        .trust-indicators {
            display: flex;
            align-items: center;
            gap: 32px;
            margin-top: 40px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            opacity: 0;
            animation: slideUp 0.8s ease-out forwards;
            transition: all 0.3s ease;
        }

        .trust-item:nth-child(1) { animation-delay: 1.5s; }
        .trust-item:nth-child(2) { animation-delay: 1.6s; }
        .trust-item:nth-child(3) { animation-delay: 1.7s; }

        .trust-item:hover {
            transform: translateY(-2px);
            opacity: 1 !important;
        }

        .trust-item svg {
            width: 18px;
            height: 18px;
            color: #DAA520;
            filter: drop-shadow(0 0 6px rgba(218, 165, 32, 0.3));
        }

        .hero-visual {
            position: relative;
            opacity: 0;
            animation: fadeInScale 1s ease-out 0.8s forwards;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .mockup-container {
            position: relative;
            animation: float 6s ease-in-out infinite;
            filter: drop-shadow(0 30px 60px rgba(218, 165, 32, 0.15));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .tv-mockup {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(218, 165, 32, 0.15);
            border-radius: 20px;
            padding: 20px;
            backdrop-filter: blur(40px);
            box-shadow:
                0 30px 90px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(218, 165, 32, 0.1) inset,
                0 0 100px rgba(218, 165, 32, 0.1);
            position: relative;
        }

        .tv-mockup::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), transparent, rgba(218, 165, 32, 0.2));
            border-radius: 20px;
            opacity: 0;
            z-index: -1;
            animation: borderGlow 3s ease-in-out infinite;
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 0; }
            50% { opacity: 0.5; }
        }

        .tv-screen {
            width: 100%;
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(218, 165, 32, 0.1);
        }

        .tv-screen::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 30% 30%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(218, 165, 32, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .screen-content {
            position: absolute;
            inset: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            padding: 20px;
        }

        .channel-tile {
            background: rgba(218, 165, 32, 0.08);
            border: 1px solid rgba(218, 165, 32, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            opacity: 0;
            animation: tileAppear 0.5s ease-out forwards;
            backdrop-filter: blur(10px);
        }

        .channel-tile:nth-child(1) { animation-delay: 1.2s; }
        .channel-tile:nth-child(2) { animation-delay: 1.3s; }
        .channel-tile:nth-child(3) { animation-delay: 1.4s; }
        .channel-tile:nth-child(4) { animation-delay: 1.5s; }
        .channel-tile:nth-child(5) { animation-delay: 1.6s; }
        .channel-tile:nth-child(6) { animation-delay: 1.7s; }

        @keyframes tileAppear {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .channel-tile:hover {
            background: rgba(218, 165, 32, 0.2);
            border-color: rgba(218, 165, 32, 0.4);
            transform: scale(1.08);
            box-shadow: 0 8px 20px rgba(218, 165, 32, 0.2);
        }

        .quality-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
            color: #000000;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
            border: 1px solid rgba(255, 215, 0, 0.3);
            opacity: 0;
            animation: slideDown 0.6s ease-out 1.0s forwards;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stats-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(30px);
            padding: 20px;
            border-radius: 12px;
            display: flex;
            justify-content: space-around;
            border: 1px solid rgba(218, 165, 32, 0.2);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            opacity: 0;
            animation: slideUp 0.6s ease-out 1.8s forwards;
        }

        .stat-item {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-3px);
        }

        .stat-number {
            font-size: 20px;
            font-weight: 800;
            background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.3));
        }

        .stat-label {
            font-size: 10px;
            color: white;
            opacity: 0.7;
            letter-spacing: 1px;
            margin-top: 4px;
        }

        @media (max-width: 968px) {

            .hero-section{
                min-height: 90vh !important;
                padding: 100px 20px 60px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            h1 {
                font-size: 42px;
                text-align: start;
            }

            .hero-badge {
                margin: 0 auto 20px;
            }

            .hero-description {
                font-size: 18px;
                text-align: start;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-features {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .cta-group {
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 400px;
            }

            .trust-indicators {
                justify-content: center;
                flex-wrap: wrap;
                align-items: center;
            }

            .hero-visual {
                display: none !important;
            }
        }

        @media (max-width: 640px) {
            h1 {
                font-size: 36px;
            }

            .savings-highlight span {
                font-size: 24px;
            }

            .btn {
                width: 100%;
            }
        }


        /* Smooth page transition overlay */
.page-transition {
    position: fixed;
    top: 80px; /* SAME as header height */
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(0px);

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.4s ease, backdrop-filter 0.6s ease;

    z-index: 9999;
}


.page-transition.active {
    opacity: 1;
    backdrop-filter: blur(10px);
}

/* Zoom effect for the whole page */
body.animate-zoom .page-wrapper {
    transform: scale(0.97);
    transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
    transform-origin: top center;
}


.content-section {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px;
    align-items: center;
}

.content-text {
    color: white;
}

.content-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #DAA520;
}

.content-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.7;
}

.content-visuals {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Scroll container fix for mobile overflow */
.scroll-container {
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    width: 100%;
}

.channels-scroll {
    height: 120px;
}


.scroll-track {
    display: flex;
    gap: 16px;
    padding: 16px;
    width: max-content;
}

.channels-scroll .scroll-track {
    animation: scrollLeft 25s linear infinite;
}

.movies-scroll .scroll-track {
    animation: scrollRight 30s linear infinite;
}

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

.channels-scroll .scroll-track img {
    height: 80px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(50%) brightness(0.9);
    transition: all 0.3s ease;
}

.channels-scroll .scroll-track img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.movies-scroll .scroll-track img {
    height: 100%;
    width: 240px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.movies-scroll .scroll-track img:hover {
    transform: scale(1.05);
    border-color: rgba(218, 165, 32, 0.3);
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ============= TABLETS ============= */
@media (max-width: 968px) {
    .content-section {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 80px 20px;
    }

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

    .content-description {
        font-size: 16px;
    }

    .channels-scroll {
        height: 100px;
    }

    .movies-scroll {
        height: 150px;
    }

    .channels-scroll .scroll-track img {
        height: 60px;
    }

    .movies-scroll .scroll-track img {
        height: 110px;
        width: 180px;
    }
}

/* ============= MOBILE PHONES ============= */
@media (max-width: 640px) {
    .content-section {
        padding: 80px 0;
        gap: 32px;
    }

    .content-text {
        padding: 0 20px;
    }

    .content-visuals {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .scroll-container {
        border-radius: 0;
    }

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

    .channels-scroll {
        height: 80px;
    }

    .movies-scroll {
        height: 200px;
    }

    .movies-scroll .scroll-track img {
        height: 170px;
        width: auto;
    }

    .title-push {
        padding-left: 0 !important;
        text-align: left;
    }

    .cta-button-content {
        margin-top: 18px;
    }
}

/* Custom additions */
.title-push {
    color: wheat;
}

.cta-button-content {
    margin-top: 18px;
}



        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 80px;
        }

        .header {
            text-align: center;
            margin-bottom: 60px;
        }
        .pricing-header{
            padding: 15px;
            justify-content: center;
            text-align: center;
        }

        h1 {
            font-size: 56px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .subtitle {
            font-size: 18px;
            color: #999;
            margin-bottom: 40px;
        }

        /* Tab Navigation */
        .tab-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 32px;
            background: #1a1a1a;
            color: #999;
            border: 2px solid #333;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn:hover {
            border-color: #555;
        }

        .tab-btn.active {
            background: #fbbf24;
            color: #fff;
            border-color: #fbbf24;
        }

        .tab-content {
            display: none;
            padding: 15px;
        }

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

        /* Plan Type Switch */
        .plan-type-switch {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .plan-type-btn {
            padding: 12px 32px;
            background: #1a1a1a;
            color: #999;
            border: 2px solid #333;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .plan-type-btn:hover {
            border-color: #555;
        }

        .plan-type-btn.active {
            background: #fbbf24;
            color: #fff;
            border-color: #fbbf24;
        }

        .pricing-grid {
            display: none;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pricing-grid.active {
            display: grid;
        }

        /* Gold VIP Plan Styling */
        .gold-plan .card {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 100%);
            border: 2px solid #fbbf24;
            box-shadow: 0 4px 20px rgba(251, 191, 36, 0.15);
            position: relative;
        }

        .gold-plan .card:hover {
            border-color: #fbbf24;
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3);
        }

        .gold-plan .plan-name {
            color: #fbbf24;
            font-size: 22px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .gold-plan .price {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 52px;
        }

        .gold-plan .get-started-btn {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #000;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }

        .gold-plan .get-started-btn:hover {
            background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
        }

        .gold-plan .features li::before {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #000;
        }

        .gold-plan .card.featured {
            border-color: #fbbf24;
            transform: scale(1.05);
            box-shadow: 0 8px 40px rgba(251, 191, 36, 0.4);
        }

        .gold-plan .card.featured:hover {
            transform: scale(1.05) translateY(-8px);
            box-shadow: 0 12px 50px rgba(251, 191, 36, 0.5);
        }

        .gold-plan .best-seller-badge {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #000;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
        }

        .card {
            background: black;
            border: 2px solid #333;
            border-radius: 16px;
            padding: 40px;
            position: relative;
            transition: all 0.3s ease;
        }

        .card:hover {
            border-color: #555;
            transform: translateY(-5px);
        }

        .best-seller-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #fbbf24;
            color: #000;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .card.featured {
            border-color: #fbbf24;
            transform: scale(1.05);
            box-shadow: 0 2px 40px #fbbf24;
        }

        .card.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .plan-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #e5e7eb;
        }

        .price {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .billing-period {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 25px;
        }

        .get-started-btn {
            width: 100%;
            padding: 14px;
            background: #fff;
            color: #000;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 25px;
        }

        .get-started-btn:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
        }

        .features {
            list-style: none;
        }

        .features li {
            padding: 10px 0;
            font-size: 13px;
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.8);
        }

        .features li:before {
            content: "✓";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            background: #4ade80;
            border-radius: 50%;
            margin-right: 10px;
            font-size: 11px;
            color: #000;
            font-weight: bold;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .card.featured {
                transform: scale(1);
            }

            .card.featured:hover {
                transform: scale(1) translateY(-5px);
            }

            .tab-buttons {
                gap: 10px;
            }

            .tab-btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .plan-type-switch {
                gap: 10px;
            }

            .plan-type-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }


.test-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    margin: 0 auto;
}

.test-container {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: black;
    width: 100%;
    max-width: 800px;
    padding: 40px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.3);
}

.test-header {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.test-description {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    max-width: 600px;
}

.test-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.test-button:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.test-button svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .test-container {
        padding: 30px 20px;
    }

    .test-header {
        font-size: 1.5rem;
    }

    .test-description {
        font-size: 1rem;
    }

    .test-button {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}


        .devices-section {
            position: relative;
            padding: 50px 20px;
            padding-bottom: 90px;
            overflow: hidden;
            background-color: black;
        }

        .devices-blur {
            position: absolute;
            width: 600px;
            height: 600px;
            filter: blur(100px);
            pointer-events: none;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-label {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #DAA520;
            margin-bottom: 16px;
            opacity: 0.9;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }

        .section-description {
            font-size: 18px;
            opacity: 0.7;
            max-width: 600px;
            margin: 0 auto;
        }

        .devices-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .device-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 48px 32px;
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .device-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.3), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .device-card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(218, 165, 32, 0.3);
            transform: translateY(-8px);
        }

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

        .device-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(218, 165, 32, 0.08);
            border-radius: 20px;
            transition: all 0.4s ease;
        }

        .device-card:hover .device-icon {
            background: rgba(218, 165, 32, 0.15);
            transform: scale(1.1);
        }

        .device-icon svg {
            width: 40px;
            height: 40px;
            stroke: #DAA520;
        }

        .device-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .device-description {
            font-size: 14px;
            opacity: 0.6;
            line-height: 1.6;
        }

        .device-platforms {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 12px;
            opacity: 0.5;
            line-height: 1.8;
        }

        @media (max-width: 968px) {
            .devices-section{
                padding: 20px 20px !important;
                padding-bottom: 40px !important;
            }
            .devices-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

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

            .device-card {
                padding: 40px 24px;
            }
        }

        @media (max-width: 640px) {
            .devices-section {
                padding: 80px 20px;
            }

            .section-header {
                margin-bottom: 48px;
            }

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

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

            .device-card {
                padding: 32px 24px;
            }

            .device-icon {
                width: 64px;
                height: 64px;
                margin-bottom: 24px;
            }

            .device-icon svg {
                width: 32px;
                height: 32px;
            }
        }



















        .scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.scroll-down svg {
    width: 22px;
    height: 22px;
    animation: bounceDown 1.6s infinite;
}

.scroll-down:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(-50%) translateY(2px);
}

/* Bounce animation */
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Make sure the section can hold positioned elements */
.devices-section {
    position: relative;
}



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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #000000;
            color: white;
        }

        .features-section {
            position: relative;
            padding: 120px 20px;
            background: #000000;
            overflow: hidden;
        }

        .features-blur-1 {
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
            filter: blur(120px);
            pointer-events: none;
            top: 10%;
            right: -200px;
        }

        .features-blur-2 {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(218, 165, 32, 0.04) 0%, transparent 70%);
            filter: blur(100px);
            pointer-events: none;
            bottom: 10%;
            left: -150px;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-label {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #DAA520;
            margin-bottom: 16px;
            opacity: 0.9;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }

        .section-description {
            font-size: 18px;
            opacity: 0.7;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 48px 36px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #DAA520, transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(218, 165, 32, 0.2);
            transform: translateY(-4px);
        }

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

        .feature-icon {
            width: 56px;
            height: 56px;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(218, 165, 32, 0.08);
            border-radius: 14px;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            background: rgba(218, 165, 32, 0.15);
            transform: scale(1.05);
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            stroke: #DAA520;
        }

        .feature-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .feature-description {
            font-size: 15px;
            opacity: 0.7;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            font-size: 14px;
            opacity: 0.6;
            padding-left: 24px;
            position: relative;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .feature-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            background: #DAA520;
            border-radius: 50%;
            opacity: 0.6;
        }

        @media (max-width: 968px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

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

            .feature-card {
                padding: 40px 28px;
            }
        }

        @media (max-width: 640px) {
            .features-section {
                padding: 80px 20px;
            }

            .section-header {
                margin-bottom: 48px;
            }

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

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

            .feature-card {
                padding: 36px 24px;
            }

            .feature-icon {
                width: 48px;
                height: 48px;
                margin-bottom: 20px;
            }

            .feature-icon svg {
                width: 24px;
                height: 24px;
            }
        }


.how-to-use-section {
    position: relative;
    padding: 120px 20px;
    background: #000000;
    overflow: hidden;
}

.how-to-use-blur {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.04) 0%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.how-to-use-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.how-to-use-header {
    text-align: center;
    margin-bottom: 80px;
}

.how-to-use-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #DAA520;
    margin-bottom: 16px;
    opacity: 0.9;
}

.how-to-use-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: white;
}

.how-to-use-description {
    font-size: 18px;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    color: white;
    line-height: 1.6;
}

.how-to-use-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
}

.how-to-use-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.how-to-use-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.how-to-use-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(218, 165, 32, 0.2);
    transform: translateY(-8px);
}

.how-to-use-step:hover::before {
    opacity: 1;
}

.how-to-use-step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(218, 165, 32, 0.08);
    border: 2px solid rgba(218, 165, 32, 0.2);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
    color: #DAA520;
    transition: all 0.4s ease;
}

.how-to-use-step:hover .how-to-use-step-number {
    background: rgba(218, 165, 32, 0.15);
    border-color: rgba(218, 165, 32, 0.4);
    transform: scale(1.1);
}

.how-to-use-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(218, 165, 32, 0.08);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.how-to-use-step:hover .how-to-use-step-icon {
    background: rgba(218, 165, 32, 0.15);
    transform: scale(1.1);
}

.how-to-use-step-icon svg {
    width: 40px;
    height: 40px;
    stroke: #DAA520;
}

.how-to-use-step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: white;
}

.how-to-use-step-text {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.7;
    color: white;
}

.how-to-use-connector {
    position: absolute;
    top: 50%;
    left: 33.33%;
    width: 33.33%;
    height: 2px;
    background: linear-gradient(90deg, rgba(218, 165, 32, 0.3), rgba(218, 165, 32, 0.1));
    transform: translateY(-50%);
    pointer-events: none;
    z-index: -1;
}

.how-to-use-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #DAA520;
    border-radius: 50%;
    transform: translate(4px, -50%);
    opacity: 0.5;
}

@media (max-width: 968px) {
    .how-to-use-section {
        padding: 80px 20px;
    }

    .how-to-use-header {
        margin-bottom: 60px;
    }

    .how-to-use-title {
        font-size: 36px;
    }

    .how-to-use-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .how-to-use-connector {
        display: none;
    }

    .how-to-use-step {
        padding: 40px 28px;
    }
}

@media (max-width: 640px) {
    .how-to-use-title {
        font-size: 32px;
    }

    .how-to-use-description {
        font-size: 16px;
    }

    .how-to-use-step {
        padding: 36px 24px;
    }

    .how-to-use-step-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .how-to-use-step-icon svg {
        width: 32px;
        height: 32px;
    }

    .how-to-use-step-number {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 24px;
    }
}

/* Supported Apps Mini Section */
.how-to-use-apps {
    max-width: 1200px;
    margin: -40px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.how-to-use-apps-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.how-to-use-apps-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(218, 165, 32, 0.2);
}

.how-to-use-apps-text {
    flex: 1;
}

.how-to-use-apps-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.how-to-use-apps-text p {
    font-size: 15px;
    color: white;
    opacity: 0.7;
    line-height: 1.6;
}

.how-to-use-apps-logos {
    display: flex;
    align-items: center;
    gap: 32px;
}

.how-to-use-app-logo {
    width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.how-to-use-app-logo:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(218, 165, 32, 0.2);
    transform: translateY(-4px);
}

.how-to-use-app-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.how-to-use-app-logo:hover img {
    filter: brightness(1);
}

@media (max-width: 968px) {
    .how-to-use-apps {
        margin-top: -20px;
    }

    .how-to-use-apps-card {
        flex-direction: column;
        padding: 32px 28px;
        gap: 32px;
        text-align: center;
    }

    .how-to-use-apps-logos {
        gap: 20px;
        justify-content: center;
    }

    .how-to-use-app-logo {
        width: 100px;
        height: 70px;
    }
}

@media (max-width: 640px) {
    .how-to-use-apps-card {
        padding: 28px 20px;
        gap: 24px;
    }

    .how-to-use-apps-text h3 {
        font-size: 20px;
    }

    .how-to-use-apps-text p {
        font-size: 14px;
    }

    .how-to-use-apps-logos {
        flex-wrap: wrap;
        gap: 16px;
    }

    .how-to-use-app-logo {
        width: 90px;
        height: 60px;
        padding: 12px;
    }
}


.cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    align-items: center;
}

.cta-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-content {
    color: white;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #DAA520;
}

.cta-description {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #DAA520;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(218, 165, 32, 0.25);
}

.cta-button:hover {
    background: #C89B1A;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(218, 165, 32, 0.35);
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 968px) {
    .cta-section {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 80px 20px;
    }

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

    .cta-description {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 16px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

.support-section {
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
    filter: blur(120px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

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

.support-header {
    text-align: center;
    margin-bottom: 80px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.support-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
}

.support-card.featured {
    background: rgba(218, 165, 32, 0.05);
    border-color: rgba(218, 165, 32, 0.2);
}

.support-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(218, 165, 32, 0.3);
    transform: translateY(-8px);
}

.support-card.featured:hover {
    background: rgba(218, 165, 32, 0.08);
}

.support-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #DAA520;
    color: #000000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.support-icon {
    width: 64px;
    height: 64px;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.support-card:hover .support-icon {
    background: rgba(218, 165, 32, 0.15);
    transform: scale(1.05);
}

.support-icon svg {
    width: 32px;
    height: 32px;
    stroke: #DAA520;
}

.support-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.support-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 24px;
    color: white;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #DAA520;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-link:hover {
    gap: 12px;
}

.support-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.support-link:hover svg {
    transform: translateX(4px);
}

.support-link.primary {
    background: #DAA520;
    color: #000000;
    padding: 12px 24px;
    border-radius: 8px;
    gap: 12px;
}

.support-link.primary:hover {
    background: #C89B1A;
    transform: translateY(-2px);
}

.support-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: #DAA520;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    display: block;
    font-size: 14px;
    opacity: 0.7;
    color: white;
}

@media (max-width: 968px) {
    .support-section {
        padding: 80px 20px;
    }

    .support-header {
        margin-bottom: 48px;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 60px;
    }

    .support-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 40px;
    }
}

@media (max-width: 640px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .support-card {
        padding: 32px 24px;
    }

    .support-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 24px;
    }

    .stat-number {
        font-size: 32px;
    }
}


.testimonials-section {
    justify-content: center;
    text-align: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 120px;
    align-items: center;
}

.testimonials-text {
    color: white;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #DAA520;

}

.content-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.7;
}

.content-visuals {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scroll-container {
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    width: 100%;
}


.testimonials-scroll {
    height: 550px;
}

.scroll-track {
    display: flex;
    gap: 16px;
    padding: 16px;
    width: max-content;
}



.testimonials-scroll .scroll-track {
    animation: scrollRight 30s linear infinite;
}

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




.testimonials-scroll .scroll-track img {
    height: 100%;
    width: 240px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-scroll .scroll-track img:hover {
    transform: scale(1.05);
    border-color: rgba(218, 165, 32, 0.3);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@media (max-width: 968px) {
    .testimonials-section {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .testimonials-text{
        text-align: center;
        justify-content: center;
        align-items: center;
    }

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

    .testimonials-description {
        font-size: 16px;
    }


    .testimonials-scroll {
        height: 550px;
        width: 100%;
    }

    .testimonials-scroll .scroll-track img {
        height: 110px;
        
    }
}

@media (max-width: 640px) {
    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-scroll {
        height: 550x;
    }


    .testimonials-scroll .scroll-track img {
        height: 550px;
    }

}

.faq-section {
    padding: 120px 20px;
    background: #000000;
    position: relative;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(218, 165, 32, 0.2);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(218, 165, 32, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #DAA520;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    stroke: #DAA520;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    color: white;
    opacity: 0.7;
    font-size: 16px;
    line-height: 1.7;
}

.faq-cta {
    margin-top: 80px;
    text-align: center;
    padding: 48px;
    background: rgba(218, 165, 32, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 20px;
}

.faq-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.faq-cta p {
    font-size: 16px;
    opacity: 0.7;
    color: white;
    margin-bottom: 24px;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #DAA520;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-contact-btn:hover {
    background: #C89B1A;
    transform: translateY(-2px);
}

.faq-contact-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 640px) {
    .faq-section {
        padding: 80px 20px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-cta {
        padding: 32px 24px;
        margin-top: 60px;
    }

    .faq-cta h3 {
        font-size: 24px;
    }
}/* End custom CSS */