* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    min-height: 100vh;
    overflow-x: hidden;
    color: #FFFFFF;
    text-align: center;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glass {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin: 0 auto;
}

.glass-strong {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.cta-button {
    background: linear-gradient(135deg, #7C3AED, #EC4899, #8B5CF6);
    background-size: 200% 200%;
    animation: gradientButton 3s ease infinite;
    color: #FFFFFF;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 
        0 8px 25px rgba(124, 58, 237, 0.4),
        0 0 20px rgba(236, 72, 153, 0.3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@keyframes gradientButton {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(124, 58, 237, 0.6),
        0 0 30px rgba(236, 72, 153, 0.5);
}

/* --- Enhancement: Top Banner Styles --- */
.top-banner {
    background: linear-gradient(90deg, #EF4444, #F59E0B, #10B981, #3B82F6, #8B5CF6);
    background-size: 300% 100%;
    animation: rainbow-slide 6s linear infinite;
    padding: 8px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
}

@keyframes rainbow-slide {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.banner-content {
    position: relative;
}

.banner-text {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: 
        radial-gradient(circle at center, 
            rgba(168, 85, 247, 0.15) 0%, 
            rgba(219, 39, 119, 0.2) 20%,
            transparent 25%,
            transparent 30%,
            rgba(147, 51, 234, 0.1) 35%,
            rgba(168, 85, 247, 0.15) 40%,
            transparent 45%,
            transparent 50%,
            rgba(219, 39, 119, 0.1) 55%,
            transparent 60%,
            transparent 65%,
            rgba(147, 51, 234, 0.08) 70%,
            transparent 100%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
    animation: rotateRings 20s linear infinite;
}

@keyframes rotateRings {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: #F1F5F9;
    margin-bottom: 40px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

/* Hero Bonus Offer Styles */
.hero-bonus-offer {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(139, 92, 246, 0.15));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-bonus-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(16, 185, 129, 0.6); }
}

.hero-bonus-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.hero-bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-bonus-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.bonus-emoji {
    font-size: 1.5rem;
}

.bonus-text {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
}

.hero-bonus-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #10B981;
    margin-top: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: #FFFFFF;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
}

.stat-label {
    font-size: 0.9rem;
    color: #E2E8F0;
    margin-top: 5px;
}

.hero-cta {
    margin-top: 50px;
}

.hero-cta .cta-button {
    font-size: 1.2rem;
    padding: 18px 40px;
    margin-right: 20px;
    margin-bottom: 20px;
}

/* Hero CTA microcopy */
.hero-cta .cta-microcopy {
    margin-top: 10px;
    color: #9CA3AF;
    font-size: 0.95rem;
}

.price-highlight {
    display: inline-block;
    margin: 20px auto 0 auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    border-radius: 30px;
    color: #FFFFFF;
    font-weight: 600;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    text-align: center;
}

/* Trust badges under pricing CTA */
.trust-badges {
    margin-top: 14px;
    color: #9CA3AF;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.trust-badges .dot { color: #6B7280; }

/* Features Grid */
.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 60px;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    padding: 35px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.feature-description {
    color: #F1F5F9;
    line-height: 1.6;
}

/* Workflow Categories */
.categories {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.5);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.category-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.category-count {
    color: #E2E8F0;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 35px;
    text-align: center;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7C3AED, #EC4899, #A855F7);
    background-size: 200% 200%;
    animation: gradientButton 3s ease infinite;
    color: #FFFFFF;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.price-display {
    font-size: 4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 20px 0;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

.price-original {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #94A3B8;
    margin-right: 10px;
}

.price-note {
    color: #F1F5F9;
    margin-bottom: 40px;
}

.pricing-features {
    text-align: left;
    margin: 40px 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #F1F5F9;
}

.pricing-feature::before {
    content: '✓';
    background: linear-gradient(135deg, #7C3AED, #8B5CF6, #EC4899);
    color: #FFFFFF;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.pricing-feature.bonus-highlight {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    border-radius: 12px;
    padding: 15px;
    margin: 8px 0;
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.pricing-feature.bonus-highlight::before {
    content: '🎁';
    background: linear-gradient(135deg, #10B981, #059669);
    font-size: 0.9rem;
}

.pricing-feature.bonus-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid #10B981;
    border-bottom: 15px solid transparent;
}

@keyframes glow-green {
    from { box-shadow: 0 0 5px rgba(16, 185, 129, 0.2); }
    to { box-shadow: 0 0 15px rgba(16, 185, 129, 0.4), 0 0 25px rgba(16, 185, 129, 0.2); }
}

.pricing-feature.bonus-highlight {
    animation: glow-green 2s ease-in-out infinite;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    padding: 35px 25px;
    position: relative;
    text-align: center;
}

.testimonial-quote {
    color: #F1F5F9;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #8B5CF6, #EC4899);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.author-info h4 {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: #E2E8F0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-item {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.5);
}

.faq-question h3 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin: 0;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 25px 25px;
    color: #F1F5F9;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding-top: 15px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #E2E8F0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-copyright {
    color: #CBD5E1;
    font-size: 0.9rem;
}

/* --- Contact Section --- */
.contact {
    padding: 90px 0;
}

.contact .section-title {
    margin-bottom: 14px;
}

.contact-text {
    color: #E5E7EB;
    font-size: 1.1rem;
}

.contact a {
    color: #10B981;
    font-weight: 700;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* --- Sticky CTA --- */
.sticky-cta {
    position: fixed;
    left: 50%;
    transform: translate(-50%, 120%);
    bottom: 16px;
    width: min(960px, 92%);
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(139,92,246,0.35);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(139,92,246,0.25);
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    z-index: 1002;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.35s ease;
}

.sticky-cta.visible {
    transform: translate(-50%, 0%);
}

.sticky-cta .sticky-text {
    color: #E5E7EB;
    font-weight: 600;
    font-size: 0.95rem;
}

.sticky-cta .cta-button {
    padding: 10px 16px;
    font-size: 0.95rem;
}

.sticky-cta .contact-link {
    color: #9CA3AF;
    font-size: 0.9rem;
    text-decoration: none;
}

.sticky-cta .contact-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero::before {
        width: 400px;
        height: 400px;
        filter: blur(15px);
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-bonus-offer {
        padding: 20px;
        margin: 20px 0;
    }
    
    .bonus-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    
    .hero-bonus-grid {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-bonus-item {
        padding: 10px 15px;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .bonus-text {
        font-size: 0.9rem;
    }
    
    .hero-bonus-value {
        font-size: 1rem;
        margin-top: 10px;
    }

    .hero-stats {
        gap: 15px;
        flex-direction: row;
        justify-content: center;
        margin: 30px 0;
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }

    .hero-cta {
        margin-top: 40px;
    }

    .hero-cta .cta-button {
        display: block;
        margin: 15px auto;
        width: 100%;
        max-width: 280px;
        font-size: 1.1rem;
        padding: 16px 30px;
    }

    .price-highlight {
        display: block;
        margin: 20px auto 0 auto;
        max-width: 280px;
        font-size: 0.9rem;
        padding: 12px 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 40px 25px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero::before {
        width: 300px;
        height: 300px;
        filter: blur(12px);
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        gap: 10px;
        margin: 25px 0;
    }
    
    .stat-item {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .feature-card, .category-card, .testimonial-card {
        padding: 25px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price-display {
        font-size: 3rem;
    }
    
    .nav {
        gap: 10px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .header .cta-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Large Screens */
@media (min-width: 1200px) {
    .hero::before {
        width: 1000px;
        height: 1000px;
        filter: blur(25px);
    }
    
    .container {
        max-width: 1100px;
    }
    
    .categories-grid {
        max-width: 1400px;
    }
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Glow Effect */
.glow {
    box-shadow: 
        0 0 30px rgba(124, 58, 237, 0.4),
        0 0 60px rgba(236, 72, 153, 0.3),
        0 0 90px rgba(139, 92, 246, 0.2);
}

/* Additional gradient animations */
@keyframes colorShift {
    0%, 100% { 
        filter: hue-rotate(0deg) saturate(1.2); 
    }
    33% { 
        filter: hue-rotate(120deg) saturate(1.4); 
    }
    66% { 
        filter: hue-rotate(240deg) saturate(1.3); 
    }
}

.feature-card:hover {
    animation: colorShift 2s ease infinite;
}

/* Bonus Offer Section */
.bonus-offer {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    position: relative;
}

.bonus-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    pointer-events: none;
}

.bonus-content {
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.bonus-header {
    margin-bottom: 50px;
}

.bonus-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-subtitle {
    font-size: 1.3rem;
    color: #E5E7EB;
    font-weight: 500;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-item {
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.bonus-item:hover::before {
    left: 100%;
}

.bonus-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.bonus-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.bonus-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 15px;
}

.bonus-description {
    font-size: 0.95rem;
    color: #D1D5DB;
    line-height: 1.5;
}

.bonus-cta {
    text-align: center;
}

.total-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.value-label {
    font-size: 1.2rem;
    color: #E5E7EB;
    font-weight: 500;
}

.value-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #EF4444;
    text-decoration: line-through;
}

.your-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10B981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-button {
    font-size: 1.4rem !important;
    padding: 20px 40px !important;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.bonus-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.bonus-button:hover::before {
    left: 100%;
}

.bonus-urgency {
    font-size: 1.1rem;
    color: #F59E0B;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive Design for Bonus Section */
@media (max-width: 768px) {
    .bonus-offer {
        padding: 60px 0;
    }
    
    .bonus-content {
        padding: 40px 20px;
    }
    
    .bonus-header h3 {
        font-size: 1.8rem;
    }
    
    .bonus-subtitle {
        font-size: 1.1rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .total-value {
        flex-direction: column;
        gap: 10px;
    }
    
    .value-amount {
        font-size: 1.6rem;
    }
    
    .your-price {
        font-size: 1.5rem;
    }
    
    .bonus-button {
        font-size: 1.2rem !important;
        padding: 18px 30px !important;
    }
}

/* --- Enhancement: Hero Bonus Emphasis --- */
.bonus-main-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 8px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-main-subtitle {
    color: #E5E7EB;
    font-weight: 600;
    margin-top: 6px;
}

.scarcity-alert, .urgency-counter {
    color: #F59E0B;
    font-weight: 700;
    margin-top: 6px;
}

.mega-cta {
    font-size: 1.05rem !important;
    padding: 18px 28px !important;
}

.mega-pricing-button {
    font-size: 1.05rem !important;
}

.mega-flash {
    animation: megaPulse 1.8s ease-in-out infinite;
}

@keyframes megaPulse {
    0%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.04);
    }
}

.mega-bonus-highlight {
    border-color: rgba(16,185,129,0.4) !important;
    box-shadow: 0 0 0 2px rgba(16,185,129,0.15) inset;
}

.new-bonus-highlight {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #FBBF24;
    font-weight: 700;
}

/* Responsive Design for Enhancements */
@media (max-width: 640px) {
  .bonus-main-title {
    font-size: 1.4rem;
  }
  .sticky-cta {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }
  .sticky-cta .cta-button {
    width: 100%;
    text-align: center;
  }
}
