/* ============================================
           SCROLL REVEAL ANIMATIONS
           ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 2s cubic-bezier(0.2, 0.8, 0.2, 1);
            visibility: hidden;
            filter: blur(5px);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
            filter: blur(0);
        }

        /* RESET & BASE - Dark Theme Foundation */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', 'Urbanist', sans-serif;
            background-color: #080808;
            background-image: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 40%, #0d0d0d 100%);
            background-attachment: fixed;
            color: #d9d9d9;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            animation: ambientShift 80s ease-in-out infinite;
        }


        img {
            max-width: 260px;
            width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ============================================
           ANIMATIONS - Subtle & Professional
           ============================================ */
        @keyframes floatSubtle {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-3px);
            }
        }

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

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

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes softGlow {
            0%, 100% {
                text-shadow: 0 0 8px rgba(212, 175, 55, 0.5), 0 0 16px rgba(212, 175, 55, 0.25);
            }
            50% {
                text-shadow: 0 0 14px rgba(212, 175, 55, 0.7), 0 0 28px rgba(212, 175, 55, 0.35);
            }
        }

        @keyframes shimmer {
            0%, 100% {
                box-shadow: 0 0 10px rgba(212, 175, 55, 0.25), 0 8px 20px rgba(0, 0, 0, 0.55);
            }
            50% {
                box-shadow: 0 0 18px rgba(212, 175, 55, 0.4), 0 8px 20px rgba(0, 0, 0, 0.55);
            }
        }

        @keyframes redGlow {
            0%, 100% {
                box-shadow: 0 0 12px rgba(212, 175, 55, 0.3), 0 8px 24px rgba(0, 0, 0, 0.5);
                border-color: rgba(212, 175, 55, 0.5);
            }
            50% {
                box-shadow: 0 0 22px rgba(212, 175, 55, 0.5), 0 8px 24px rgba(0, 0, 0, 0.5);
                border-color: rgba(212, 175, 55, 0.8);
            }
        }

        @keyframes checkmarkFade {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Ambient Animations - Slow Environmental Movement */
        @keyframes ambientShift {
            0%, 100% {
                background-position: 0% 0%;
                filter: brightness(1);
            }
            50% {
                background-position: 10% 10%;
                filter: brightness(1.08);
            }
        }

        @keyframes environmentalGlow {
            0%, 100% {
                box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.05), inset 0 0 40px rgba(212, 175, 55, 0.04), 0 20px 50px rgba(0, 0, 0, 0.5);
            }
            50% {
                box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.08), inset 0 0 60px rgba(212, 175, 55, 0.07), 0 20px 50px rgba(0, 0, 0, 0.5);
            }
        }

        @keyframes floatingCloud {
            0%, 100% { transform: translate(-50%, 0); }
            50% { transform: translate(-50%, -12px); }
        }

        @keyframes badgeShimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        .premium .badge {
            position: absolute;
            top: 22px;
            font-size: 0.75rem;
            background: linear-gradient(90deg, #d4af37, #fff, #d4af37);
            background-size: 200% auto;
            animation: floatingCloud 4s ease-in-out infinite, badgeShimmer 3s linear infinite !important;
            left: 50%;
            transform: translateX(-50%);
            padding: 4px 12px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
        }

        .premium .current-price {
            font-size: 3.2rem;
            animation: textGlow 2.5s ease-in-out infinite;
        }

        @keyframes textGlow {
            0%, 100% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.55); }
            50% { text-shadow: 0 0 25px rgba(212, 175, 55, 0.9), 0 0 35px rgba(212, 175, 55, 0.35); }
        }


        @keyframes logoReveal {
            0% { opacity: 0; transform: scale(0.9) translateX(40px); filter: blur(10px); }
            100% { opacity: 0.4; transform: scale(1) translateX(0); filter: blur(1px); }
        }

        @keyframes depthOscillation {
            0%, 100% {
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
            }
            50% {
                box-shadow: 0 15px 45px rgba(0, 0, 0, 0.75);
            }
        }

        @keyframes floatingJump {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-8px) scale(1.02); }
        }

        @keyframes shimmerSlow {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .btn-catchy {
            background: linear-gradient(90deg, #d4af37, #f1c40f, #d4af37);
            background-size: 200% auto;
            animation: floatingJump 4s ease-in-out infinite, shimmerSlow 6s linear infinite !important;
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.55), 0 12px 30px rgba(0,0,0,0.5) !important;
            transition: all 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        }

        .btn-catchy:hover {
            transform: translateY(-12px) scale(1.08) !important;
            box-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 15px 40px rgba(212, 175, 55, 0.28) !important;
        }

        /* ============================================
           UTILITIES
           ============================================ */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .section {
            padding: 80px 0;
            position: relative;
            z-index: 1;
            animation: fadeIn 0.8s ease-out;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #d4af37 0%, #aa8c2a 100%);
            background-color: #d4af37;
            color: #0a0e27;
            font-weight: 700;
            padding: 18px 32px;
            border-radius: 8px;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            transition: all 2s ease;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.35), 0 8px 20px rgba(0, 0, 0, 0.5);
            width: 100%;
            max-width: 350px;
            cursor: pointer;
            border: none;
            font-family: 'Montserrat', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.3s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.55), 0 12px 30px rgba(212, 175, 55, 0.18);
        }

        .btn-secondary {
            background: linear-gradient(135deg, #4a6fa5 0%, #2d4a6f 100%);
            color: #ffffff;
            box-shadow: 0 0 20px rgba(74, 111, 165, 0.3), 0 8px 20px rgba(0, 0, 0, 0.5);
        }

        .btn-secondary:hover {
            background: linear-gradient(135deg, #5a7fb5 0%, #3d5a7f 100%);
            box-shadow: 0 0 25px rgba(74, 111, 165, 0.5), 0 12px 25px rgba(74, 111, 165, 0.15);
            transform: translateY(-3px) scale(1.03);
        }

        .highlight {
            color: #d4af37;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.55);
        }

        .logo-marca {
            max-width: 140px;
            width: 100%;
            height: auto;
            display: block;
        }

        h1, h2, h3 {
            line-height: 1.2;
            margin-bottom: 20px;
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: -0.5px;
            animation: fadeInUp 0.8s ease-out;
        }

        h1 { 
            font-size: 2.8rem; 
            font-weight: 800; 
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.22), 0 0 60px rgba(212, 175, 55, 0.12);
        }
        
        h2 { 
            font-size: 2rem; 
            font-weight: 700;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
        }
        
        h3 { 
            font-size: 1.6rem; 
            font-weight: 700;
            color: #d4af37;
        }
        
        p { 
            margin-bottom: 15px; 
            font-size: 1.05rem; 
            color: #b0b0b0;
            font-weight: 400;
        }

        strong {
            color: #d4af37;
            font-weight: 600;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            padding: 100px 0 80px;
            background: linear-gradient(180deg, 
                rgba(212, 175, 55, 0.08) 0%,
                rgba(180, 20, 20, 0.06) 25%, 
                rgba(74, 111, 165, 0.04) 60%, 
                #080808 100%);
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            position: relative;
            z-index: 1;
            animation: environmentalGlow 12s ease-in-out infinite;
        }

        .hero-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
            color: #a0aec0;
            font-weight: 700;
            letter-spacing: 2px;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-logo-box {
            padding: 12px 24px;
            border: 2px solid rgba(212, 175, 55, 0.35);
            border-radius: 8px;
            text-transform: uppercase;
            font-size: 0.9rem;
            background: rgba(212, 175, 55, 0.06);
            transition: all 2s ease;
            color: #d4af37;
        }

        .hero-logo-box:hover {
            border-color: #d4af37;
            background: rgba(212, 175, 55, 0.12);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.28);
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease-out, depthOscillation 10s ease-in-out infinite 1s;
        }

        .hero .subheadline {
            font-size: 1.2rem;
            color: #a8a8a8;
            max-width: 800px;
            margin: 0 auto 20px;
            animation: fadeInUp 0.9s ease-out 0.1s both;
        }

        /* ============================================
           PAIN BLOCK
           ============================================ */
        .pain {
            background: linear-gradient(180deg, #0f0f0f 0%, #1a1010 60%, #1a1a1a 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .pain-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 900px;
            margin: 0 auto;
            text-align: left;
        }

        .pain-item {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.07) 0%, rgba(40, 20, 20, 0.1) 100%);
            padding: 16px 20px;
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-left: 4px solid #d4af37;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
            display: flex;
            align-items: center;
            gap: 14px;
            animation: floatDelicate 5s ease-in-out infinite, redGlow 6s ease-in-out infinite;
            transition: all 2s ease;
        }

        .pain-item:hover {
            border-color: #d4af37;
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
        }

        .pain-icon {
            font-size: 1.4rem;
            color: #d4af37;
            min-width: 36px;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        .pain-item p {
            color: #e0e6ff;
            font-size: 0.95rem;
            font-weight: 500;
            margin: 0;
        }

        /* ============================================
           SOLUTION BLOCK
           ============================================ */
        .solution {
            background: #080808;
        }

        .solution h2 {
            margin-bottom: 10px;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
        }

        .solution > .container > p {
            font-size: 1.15rem;
            margin-bottom: 50px;
            color: #9a9a9a;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .solution-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-box {
            padding: 40px 30px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(74, 111, 165, 0.05) 100%);
            border: 1px solid rgba(212, 175, 55, 0.18);
            transition: all 2s ease;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .feature-box:nth-child(1) { animation-delay: 0.1s; }
        .feature-box:nth-child(2) { animation-delay: 0.2s; }
        .feature-box:nth-child(3) { animation-delay: 0.3s; border-color: rgba(212, 175, 55, 0.2); }
        .feature-box:nth-child(4) { animation-delay: 0.4s; }

        .feature-box:hover {
            transform: translateY(-10px);
            border-color: #d4af37;
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.18), 0 0 30px rgba(212, 175, 55, 0.08);
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(74, 111, 165, 0.1) 100%);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
            animation: floatDelicate 5s ease-in-out infinite;
        }

        .feature-box h3 {
            color: #d4af37;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }

        .feature-box p {
            color: #9a9a9a;
            font-size: 1rem;
            margin: 0;
        }

        /* ============================================
           PRODUCTS SECTION
           ============================================ */
        .products {
            background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.15);
        }

        .product-card {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(74, 111, 165, 0.04) 100%);
            border-radius: 16px;
            padding: 50px 35px;
            margin-bottom: 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.12);
            animation: fadeInUp 0.8s ease-out, environmentalGlow 10s ease-in-out 1s infinite;
            transition: all 2s ease;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 70%);
            pointer-events: none;
        }

        .product-card:hover {
            transform: translateY(-8px);
            border-color: #d4af37;
            box-shadow: 0 30px 60px rgba(212, 175, 55, 0.12), 0 0 40px rgba(212, 175, 55, 0.08);
        }

        .product-card.premium {
            border: 2px solid #d4af37;
            animation: fadeInUp 0.8s ease-out, floatSubtle 5s ease-in-out infinite;
        }

        .product-card.premium::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.04), transparent);
            pointer-events: none;
        }

        .badge {
            background: linear-gradient(135deg, #d4af37 0%, #c29c1f 100%);
            color: #080808;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 20px;
            letter-spacing: 1px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
        }

        .product-card h3 {
            color: #ffffff;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .product-card > p:first-of-type {
            color: #b8c5d6;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            color: #d4af37;
            margin: 30px 0;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
            position: relative;
            z-index: 1;
        }

        .price .old-price {
            font-size: 1.1rem;
            color: rgba(122, 139, 160, 0.6);
            font-weight: 400;
            text-decoration: line-through;
            display: block;
            margin-bottom: -5px;
        }

        .price .current-price {
            display: block;
            color: #d4af37;
        }

        .product-card.premium .price .current-price {
            color: #e5c158; /* Destaque dourado queimado */
            text-shadow: 0 0 40px rgba(212, 175, 55, 0.55);
            font-size: 2.8rem;
        }

        .product-card.premium {
            border: 2px solid #d4af37;
            animation: fadeInUp 0.8s ease-out, floatSubtle 5s ease-in-out infinite;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(74, 111, 165, 0.06) 100%);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 50px rgba(212, 175, 55, 0.12);
            transform: scale(1.02);
            z-index: 2;
            padding-top: 60px;
        }

        /* Order Bump Styling */
        .order-bump {
            margin: 25px auto 0;
            max-width: 350px;
            background: rgba(25, 25, 25, 0.9);
            border: 2px solid rgba(212, 175, 55, 0.28);
            border-radius: 12px;
            padding: 22px;
            text-align: left;
            animation: fadeIn 0.6s ease-out;
            transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            gap: 15px;
            align-items: flex-start;
            position: relative;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
        }

        .order-bump:hover {
            border-color: #d4af37;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12);
            background: rgba(30, 30, 30, 1);
        }

        .order-bump-checkbox {
            -moz-appearance: none;
                 appearance: none;
            -webkit-appearance: none;
            width: 24px;
            height: 24px;
            border: 2px solid rgba(212, 175, 55, 0.45);
            border-radius: 6px;
            cursor: pointer;
            position: relative;
            flex-shrink: 0;
            margin-top: 2px;
            transition: all 2s ease;
            background: rgba(0,0,0,0.2);
        }

        .order-bump-checkbox:checked {
            background-color: #d4af37;
            border-color: #d4af37;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
        }

        .order-bump-checkbox:checked::after {
            content: "✓";
            position: absolute;
            color: #080808;
            font-size: 16px;
            font-weight: 800;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .order-bump-content {
            flex: 1;
            cursor: pointer;
        }

        .order-bump-title {
            color: #ffffff;
            font-weight: 800;
            font-size: 1rem;
            margin-bottom: 6px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .order-bump-desc {
            color: #b0b0b0;
            font-size: 0.88rem;
            line-height: 1.5;
            display: block;
            margin-bottom: 12px;
        }

        .order-bump-price {
            font-size: 0.85rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .order-bump-price .old {
            text-decoration: line-through;
            color: rgba(122, 139, 160, 0.6);
            font-weight: 400;
        }

        .order-bump-price .new {
            color: #d4af37;
            padding: 2px 6px;
            background: rgba(212, 175, 55, 0.08);
            border-radius: 4px;
            border: 1px solid rgba(212, 175, 55, 0.18);
        }

        .product-features {
            margin: 30px 0 40px;
            text-align: left;
            position: relative;
            z-index: 1;
        }

        .product-features li {
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            color: #d1d8e8;
            font-size: 1.05rem;
            font-weight: 500;
        }

        .product-features li::before {
            content: "✓";
            color: #d4af37;
            font-weight: bold;
            margin-right: 15px;
            font-size: 1.4rem;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.45);
            animation: checkmarkFade 0.7s ease-out forwards;
        }

        .product-features li:nth-child(1)::before { animation-delay: 0.2s; }
        .product-features li:nth-child(2)::before { animation-delay: 0.4s; }
        .product-features li:nth-child(3)::before { animation-delay: 0.6s; }
        .product-features li:nth-child(4)::before { animation-delay: 0.8s; }

        .alert-text {
            background: rgba(212, 175, 55, 0.1);
            color: #e05050;
            padding: 15px;
            border-radius: 8px;
            font-size: 0.95rem;
            margin-bottom: 25px;
            border-left: 4px solid #d4af37;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
            position: relative;
            z-index: 1;
        }

        /* ============================================
           COMPARISON TABLE
           ============================================ */
        .comparison {
            overflow-x: auto;
            margin-top: 40px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(74, 111, 165, 0.02) 100%);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(212, 175, 55, 0.12);
        }

        th, td {
            padding: 20px 15px;
            text-align: center;
            border-bottom: 1px solid rgba(212, 175, 55, 0.08);
            color: #a8a8a8;
        }

        th {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(74, 111, 165, 0.1) 100%);
            font-weight: 700;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.95rem;
        }

        td:first-child, th:first-child {
            text-align: left;
            font-weight: 600;
            color: #d1d1d1;
        }

        /* FAQ Styling */
        .faq {
            background: #080808;
        }

        .faq-grid {
            max-width: 800px;
            margin: 50px auto 0;
            text-align: left;
        }

        .faq-item {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(74, 111, 165, 0.02) 100%);
            border: 1px solid rgba(212, 175, 55, 0.08);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            transition: all 2s ease;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .faq-item:hover {
            border-color: rgba(212, 175, 55, 0.28);
            background: rgba(212, 175, 55, 0.08);
            transform: translateX(5px);
        }

        .faq-question {
            color: #d4af37;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .faq-answer {
            color: #b0b0b0;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* ============================================
           SOCIAL PROOF
           ============================================ */
        .testimonials {
            background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.15);
        }

        .testimonials h2 {
            color: #ffffff;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(74, 111, 165, 0.04) 100%);
            padding: 35px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.12);
            font-style: italic;
            transition: all 2s ease;
            animation: slideInLeft 0.8s ease-out;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
            animation-fill-mode: both;
        }

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

        .testimonial-card:hover {
            transform: translateY(-8px);
            border-color: #d4af37;
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.12), 0 0 30px rgba(212, 175, 55, 0.08);
        }

        .testimonial-card p {
            color: #a8a8a8;
            margin-bottom: 15px;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .testimonial-card span {
            color: #7a8ba0;
            font-size: 0.95rem;
            font-style: normal;
            font-weight: 600;
        }

        /* ============================================
           GUARANTEE
           ============================================ */
        .guarantee {
            background: #080808;
        }

        .guarantee-box {
            border: 2px dashed rgba(212, 175, 55, 0.35);
            padding: 50px;
            border-radius: 16px;
            display: inline-block;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, rgba(74, 111, 165, 0.02) 100%);
            animation: fadeInUp 0.8s ease-out;
            transition: all 2s ease;
        }

        .guarantee-box:hover {
            border-color: #d4af37;
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.18);
        }

        .guarantee-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            display: block;
            animation: floatDelicate 5s ease-in-out infinite;
        }

        .guarantee-box h3 {
            color: #d4af37;
            margin-bottom: 15px;
            font-size: 1.6rem;
        }

        .guarantee-box p {
            color: #9a9a9a;
            font-size: 1.05rem;
            margin-bottom: 15px;
        }

        .guarantee-box small {
            color: #7a7a7a;
            font-size: 0.9rem;
        }

        /* ============================================
           FINAL CTA
           ============================================ */
        .final-cta {
            background: linear-gradient(180deg, #0f0f0f 0%, #140f0f 50%, #1a1a1a 100%);
            padding: 100px 0;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .final-cta h2 {
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.18);
        }

        .final-cta > .container > p {
            font-size: 1.15rem;
            margin-bottom: 50px;
            color: #9a9a9a;
        }

        .cta-group {
            display: flex;
            flex-direction: column;
            gap: 18px;
            align-items: center;
            margin-top: 40px;
            animation: fadeInUp 0.8s ease-out;
        }

        /* ============================================
           AUDIO PREVIEWS SECTION
           ============================================ */
        .audio-previews {
            background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
            padding: 80px 0;
            border-top: 1px solid rgba(212, 175, 55, 0.15);
            border-bottom: 1px solid rgba(212, 175, 55, 0.08);
            pointer-events: auto;
        }

        .audio-previews h2 {
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.18);
            margin-bottom: 15px;
        }

        .audio-previews > .container > p {
            font-size: 1.15rem;
            margin-bottom: 50px;
            color: #9a9a9a;
            animation: fadeInUp 0.8s ease-out 0.1s both;
        }

        .audio-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 50px;
        }
        .audio-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .audio-row-bottom {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            width: 66.66%;
            margin: 0 auto;
        }

        .audio-item {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(74, 111, 165, 0.05) 100%);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.18);
            transition: all 2s ease;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
            pointer-events: auto !important;
        }

        .audio-item:nth-child(1) { animation-delay: 0.1s; }
        .audio-item:nth-child(2) { animation-delay: 0.2s; }
        .audio-item:nth-child(3) { animation-delay: 0.3s; }
        .audio-item:nth-child(4) { animation-delay: 0.4s; }
        .audio-item:nth-child(5) { animation-delay: 0.5s; }
        .audio-item:nth-child(6) { animation-delay: 0.6s; }

        .audio-item:hover {
            transform: translateY(-8px);
            border-color: #d4af37;
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.12);
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(74, 111, 165, 0.08) 100%);
        }

        .audio-title {
            color: #d4af37;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .audio-description {
            color: #b0b0b0;
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .audio-player {
            width: 100%;
            height: 38px;
            border-radius: 6px;
            background: rgba(212, 175, 55, 0.06);
            border: 1px solid rgba(212, 175, 55, 0.28);
            cursor: pointer;
            pointer-events: auto !important;
        }

        .audio-player:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.28);
        }

        .audio-preview-note {
            text-align: center;
            padding: 25px;
            background: rgba(212, 175, 55, 0.06);
            border: 1px solid rgba(212, 175, 55, 0.18);
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .audio-preview-note p {
            color: #d4af37;
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 12px;
        }

        .audio-preview-note small {
            color: #9a9a9a;
            font-size: 0.95rem;
            display: block;
        }

        /* ============================================
           FOOTER
           ============================================ */
        footer {
            background: #050505;
            border-top: 1px solid rgba(212, 175, 55, 0.08);
            color: #707070;
            padding: 50px 0;
            font-size: 0.95rem;
        }

        footer p {
            color: #707070;
            margin-bottom: 10px;
        }

        footer .hero-logos {
            margin-bottom: 20px;
            gap: 15px;
        }

        footer .hero-logo-box {
            padding: 8px 16px;
            border-color: rgba(212, 175, 55, 0.18);
            background: transparent;
            font-size: 0.85rem;
        }

        /* ============================================
           COMPARISON SECTION
           ============================================ */
        .comparison {
            background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.08);
            border-bottom: 1px solid rgba(212, 175, 55, 0.08);
        }

        .comparison h2 {
            color: #ffffff;
            margin-bottom: 50px;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .comparison-column {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(74, 111, 165, 0.04) 100%);
            padding: 40px 30px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.12);
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
            transition: all 2s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
        }

        .comparison-column:nth-child(1) { animation-delay: 0.1s; }
        .comparison-column:nth-child(2) { animation-delay: 0.2s; }

        .comparison-column:hover {
            transform: translateY(-8px);
            border-color: #d4af37;
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.12), 0 0 30px rgba(212, 175, 55, 0.08);
        }

        .comparison-column h3 {
            color: #d4af37;
            font-size: 1.4rem;
            margin-bottom: 30px;
            text-align: center;
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.28);
        }

        .comparison-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .comparison-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.08);
            color: #b0b0b0;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .comparison-item:last-child {
            border-bottom: none;
        }

        .comparison-item-name {
            color: #d9d9d9;
        }

        .comparison-item-count {
            color: #d4af37;
            font-weight: 700;
            font-size: 1rem;
        }

        /* ============================================
           AUDIO SECTION
           ============================================ */
        .audio-preview {
            background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.08);
            border-bottom: 1px solid rgba(212, 175, 55, 0.08);
        }

        .audio-preview h2 {
            color: #ffffff;
            margin-bottom: 40px;
        }

        .audio-player-container {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(74, 111, 165, 0.04) 100%);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.12);
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
            animation: fadeInUp 0.8s ease-out;
        }

        .audio-player-title {
            color: #d4af37;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.28);
        }

        .audio-player {
            width: 100%;
            height: 50px;
            border-radius: 8px;
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.18);
        }

        .audio-player:hover {
            border-color: rgba(212, 175, 55, 0.35);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.08);
        }

        .audio-player-description {
            color: #b0b0b0;
            font-size: 0.95rem;
            margin-top: 15px;
            text-align: center;
            line-height: 1.6;
        }

        /* ============================================
           MOBILE RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .hero h1 { font-size: 2.5rem; }
            .price { font-size: 2.5rem; }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.1rem; font-weight: 800; }
            h2 { font-size: 1.6rem; }
            h3 { font-size: 1.3rem; }
            
            .section { padding: 60px 0; }
            .hero { padding: 70px 0 50px; }
            .hero h1 { font-size: 2.2rem; }
            .hero .subheadline { font-size: 1.1rem; margin-bottom: 35px; }
            
            .btn { width: 100%; padding: 16px 24px; font-size: 1rem; }
            
            .product-card { padding: 35px 20px; }
            .price { font-size: 2.2rem; }
            
            .guarantee-box { padding: 35px 25px; }
            
            .feature-box { padding: 30px 20px; }
            
            .comparison-grid { gap: 18px; }
            .comparison-column { padding: 25px; }
            .comparison-column p { font-size: 0.95rem; }
            
            .audio-previews { padding: 60px 0; }
            .audio-grid { gap: 20px; }
            .audio-row { gap: 20px; }
            .audio-row-bottom { gap: 20px; width: 66.66%; }
            .audio-item { padding: 25px; }
            
            .final-cta { padding: 70px 0; }
            
            footer { padding: 40px 0; }
        }

        @media (max-width: 480px) {
            h1 { font-size: 1.6rem; }
            h2 { font-size: 1.3rem; }
            h3 { font-size: 1.1rem; }
            p { font-size: 0.9rem; }
            
            .container { padding: 0 14px; }
            
            .hero { padding: 38px 0 30px; }
            .hero h1 { font-size: 1.6rem; }
            .hero .subheadline { font-size: 0.9rem; margin-bottom: 24px; }
            [data-testid="img-product-cover-hero"] { max-width: 240px !important; }
            
            .section { padding: 36px 0; }
            
            .btn { padding: 13px 18px; font-size: 0.9rem; letter-spacing: 0.2px; }
            .btn-secondary { white-space: nowrap; font-size: 0.82rem; }
            
            .hero-logos { gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
            .hero-logo-box { padding: 8px 14px; font-size: 0.75rem; }
            
            .pain-item { padding: 15px; gap: 10px; }
            .pain-icon { font-size: 1.4rem; min-width: 36px; }
            
            .product-card { padding: 22px 15px; margin-bottom: 24px; }
            .price { font-size: 1.8rem; margin: 16px 0; }
            .product-features li { margin-bottom: 10px; font-size: 0.9rem; }
            .product-features li::before { font-size: 1.1rem; margin-right: 8px; }
            
            .alert-text { padding: 10px 12px; font-size: 0.85rem; }
            
            .solution-features { gap: 16px; }
            .feature-box { padding: 18px 14px; }
            .feature-icon { font-size: 1.8rem; margin-bottom: 10px; }
            .feature-box h3 { font-size: 1rem; }
            .feature-box p { font-size: 0.88rem; }
            
            .guarantee-box { padding: 24px 16px; }
            .guarantee-icon { font-size: 2.5rem; margin-bottom: 16px; }
            .guarantee-box h3 { font-size: 1.1rem; }
            .guarantee-box p { font-size: 0.9rem; }
            
            .testimonial-grid { gap: 14px; }
            .testimonial-card { padding: 20px; }
            .testimonial-card p { font-size: 0.88rem; }
            
            .faq-item { padding: 18px; }
            .faq-question { font-size: 0.95rem; }
            .faq-answer { font-size: 0.88rem; }
            
            .comparison { margin-top: 20px; }
            th, td { padding: 10px 6px; font-size: 0.78rem; }
            
            .audio-previews { padding: 40px 0; }
            .audio-grid { gap: 14px; }
            .audio-row { grid-template-columns: 1fr; gap: 14px; }
            .audio-row-bottom { grid-template-columns: 1fr; gap: 14px; width: 100%; }
            .audio-item { padding: 16px; }
            .audio-title { font-size: 1rem; }
            .audio-description { font-size: 0.85rem; }
            .audio-preview-note { padding: 12px; }
            .audio-preview-note p { font-size: 0.88rem; }
            
            .final-cta { padding: 40px 0; }
            .cta-group { gap: 10px; }
            
            .order-bump { padding: 16px; }
            .order-bump-title { font-size: 0.9rem; }
            .order-bump-desc { font-size: 0.8rem; }
            
            footer { padding: 24px 0; font-size: 0.85rem; }
        }

        @media (max-width: 375px) {
            h1 { font-size: 1.4rem; }
            h2 { font-size: 1.2rem; }
            h3 { font-size: 1rem; }
            p { font-size: 0.85rem; }

            .hero { padding: 30px 0 24px; }
            .hero h1 { font-size: 1.4rem; }
            [data-testid="img-product-cover-hero"] { max-width: 210px !important; }

            .section { padding: 28px 0; }
            .container { padding: 0 12px; }

            .btn { padding: 12px 14px; font-size: 0.85rem; }
            .btn-secondary { font-size: 0.72rem; white-space: nowrap; letter-spacing: 0.5px; }
            .price { font-size: 1.6rem; }

            th, td { padding: 8px 4px; font-size: 0.72rem; }
        }

        /* ============================================
           ACCESSIBILITY & SMOOTH SCROLLING
           ============================================ */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
        }
        /* WaveSurfer player */
        .ws-player {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(0,0,0,0.35);
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-radius: 8px;
            padding: 10px 14px;
            margin-top: 14px;
        }
        .ws-play-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: #d4af37;
            font-size: 1.1rem;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: color 0.2s;
        }
        .ws-play-btn:hover { color: #fff; }
        .ws-waveform {
            flex: 1;
            height: 48px;
            cursor: pointer;
        }
        .ws-time {
            color: #888;
            font-size: 0.78rem;
            flex-shrink: 0;
            min-width: 36px;
            text-align: right;
        }