/* WP Free CDN - Conversion Optimization Styles */
/* High-converting design elements and psychological triggers */

/* Urgency and Scarcity Elements */
.urgency-banner {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    animation: urgencyPulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes urgencyPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 12px 35px rgba(239, 68, 68, 0.5);
    }
}

.scarcity-counter {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.scarcity-counter .spots-left {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 15px;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #fbbf24);
    border-radius: 4px;
    transition: width 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Social Proof Enhancements */
.social-proof-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-proof-banner strong {
    font-size: 1.2em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.trust-badge i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 10px;
    display: block;
}

.trust-badge h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.trust-badge p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Risk Reversal Elements */
.guarantee {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: guaranteeShimmer 4s ease-in-out infinite;
}

@keyframes guaranteeShimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.guarantee h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.guarantee p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

/* Enhanced CTA Buttons */
.cta-primary {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6);
    }
}

.cta-primary:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6);
}

.cta-primary::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.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

/* Value Proposition Highlights */
.value-highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.value-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.value-highlight h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.value-highlight p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.95;
}

/* Comparison Table Enhancements */
.comparison-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.comparison-highlight h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.comparison-highlight .savings-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .urgency-banner {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .scarcity-counter {
        padding: 15px;
    }
    
    .scarcity-counter .spots-left {
        font-size: 2rem;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .trust-badge {
        padding: 12px 20px;
    }
    
    .cta-primary {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .value-highlight h3 {
        font-size: 1.5rem;
    }
    
    .value-highlight p {
        font-size: 1rem;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .urgency-banner {
        background: #ff0000;
        border: 3px solid #ffffff;
    }
    
    .scarcity-counter {
        background: #ff8c00;
        border: 3px solid #ffffff;
    }
    
    .social-proof-banner {
        background: #008000;
        border: 3px solid #ffffff;
    }
    
    .guarantee {
        background: #0000ff;
        border: 3px solid #ffffff;
    }
    
    .cta-primary {
        background: #ff0000;
        border: 3px solid #ffffff;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .urgency-banner,
    .cta-primary {
        animation: none;
    }
    
    .guarantee::before {
        animation: none;
    }
    
    .value-highlight::before {
        display: none;
    }
}
