* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #000;
            color: #fff;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Utility Classes */
        .text-center { text-align: center; }
        .flex { display: flex; }
        .items-center { align-items: center; }
        .justify-center { justify-content: center; }
        .grid { display: grid; }
        .gap-8 { gap: 2rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mb-12 { margin-bottom: 3rem; }
        .mb-16 { margin-bottom: 4rem; }
        .mr-3 { margin-right: 0.75rem; }
        .mr-4 { margin-right: 1rem; }
        .py-4 { padding: 1rem 0; }
        .py-12 { padding: 3rem 0; }
        .py-24 { padding: 6rem 0; }
        .px-4 { padding: 0 1rem; }
        .px-6 { padding: 0 1.5rem; }
        .px-8 { padding: 0 2rem; }
        .px-10 { padding: 0 2.5rem; }
        .p-4 { padding: 1rem; }
        .p-8 { padding: 2rem; }

        /* Badge */
        .badge {
            display: inline-flex;
            align-items: center;
            background: rgba(249, 115, 22, 0.2);
            color: rgb(253, 186, 116);
            border: 1px solid rgba(249, 115, 22, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
            padding: 5rem 0 8rem;
            background: linear-gradient(to right, rgba(249, 115, 22, 0.1), #000);
        }

        .hero h1 {
            font-size: clamp(2.1rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .gradient-text {
            background: linear-gradient(to right, rgb(249, 115, 22), rgb(251, 146, 60));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.25rem;
            color: rgb(209, 213, 219);
            margin-bottom: 3rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }

        .price-container {
            margin-bottom: 2rem;
        }

        .old-price {
            font-size: 1.25rem;
            color: rgb(156, 163, 175);
            text-decoration: line-through;
        }

        .current-price {
            font-size: 3.75rem;
            font-weight: 700;
            color: #fff;
        }

        /* Button */
        .btn {
            display: inline-flex;
            align-items: center;
            background: rgb(249, 115, 22);
            color: #000;
            padding: 1rem 2.5rem;
            font-size: 1.125rem;
            font-weight: 700;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.25);
        }

        .btn:hover {
            background: rgb(234, 88, 12);
            transform: scale(1.05);
        }

        .btn-full {
            width: 100%;
            justify-content: center;
        }

        /* Cards */
        .card {
            background: rgb(17, 24, 39);
            border: 1px solid rgba(55, 65, 81, 0.5);
            border-radius: 0.75rem;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            height: 100%;
        }

        .card:hover {
            background: rgba(55, 65, 81, 0.7);
            transform: scale(1.05);
        }

        .card-content {
            padding: 2rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 4rem 0;
            background: rgba(3, 7, 18, 0.5);
        }

        .benefits h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 80rem;
            margin: 0 auto;
        }

        .benefit-icon {
            background: rgba(249, 115, 22, 0.1);
            border-radius: 0.75rem;
            padding: 1rem;
            width: fit-content;
            margin-bottom: 1.5rem;
        }

        .benefit-icon svg {
            width: 2rem;
            height: 2rem;
            color: rgb(251, 146, 60);
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 72rem;
            margin: 0 auto;
        }

        .stars {
            display: flex;
            margin-bottom: 1rem;
        }

        .star {
            width: 1.25rem;
            height: 1.25rem;
            color: rgb(251, 191, 36);
            fill: currentColor;
        }

        .testimonial-content {
            color: rgb(209, 213, 219);
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            margin-right: 1rem;
        }

        .author-name {
            font-weight: 600;
            color: #fff;
        }

        .author-role {
            font-size: 0.875rem;
            color: rgb(156, 163, 175);
        }

        /* Pricing Section */
        .pricing {
            padding: 3rem 0;
            background: rgba(3, 7, 18, 0.5);
        }

        .pricing-card {
            max-width: 32rem;
            margin: 0 auto;
        }

        .pricing-price {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-old-price {
            color: rgb(156, 163, 175);
            font-size: 1.5rem;
            text-decoration: line-through;
            margin-bottom: 0.5rem;
        }

        .pricing-current-price {
            font-size: 4.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .pricing-subtitle {
            color: rgb(251, 146, 60);
            font-weight: 600;
            font-size: 1.125rem;
        }

        .features-list {
            max-width: 28rem;
            margin: 0 auto 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .check-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: rgb(249, 115, 22);
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

        .feature-text {
            color: rgb(209, 213, 219);
        }

        .guarantee {
            text-align: center;
            margin-top: 1rem;
        }

        .guarantee-text {
            font-size: 0.875rem;
            color: rgb(156, 163, 175);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
        }

        .clock-icon {
            width: 1rem;
            height: 1rem;
            margin-right: 0.5rem;
        }

        /* Footer */
        footer {
            padding: 3rem 0;
            border-top: 1px solid rgb(55, 65, 81);
            text-align: center;
        }

        .footer-text {
            color: rgb(156, 163, 175);
            margin-bottom: 1rem;
        }

        .footer-disclaimer {
            font-size: 0.875rem;
            color: rgb(107, 114, 128);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        .animate-delay-1 {
            animation-delay: 0.1s;
            animation-fill-mode: both;
        }

        .animate-delay-2 {
            animation-delay: 0.2s;
            animation-fill-mode: both;
        }

        .animate-delay-3 {
            animation-delay: 0.3s;
            animation-fill-mode: both;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 3rem 0 6rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.125rem;
            }
            
            .current-price {
                font-size: 3rem;
            }
            
            .pricing-current-price {
                font-size: 3.5rem;
            }
            
            .py-24 {
                padding: 4rem 0;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }