/* ===========================================
   CONVERSION OPTIMIZATION STYLES
   =========================================== */

/* Trust Signals Section */
.trust-signals {
    padding: 4rem 0;
    background: transparent;
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Urgency Section */
.urgency-section {
    padding: 5rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.urgency-section::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 1000 1000"><circle cx="200" cy="200" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="800" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="500" cy="300" r="1" fill="rgba(255,255,255,0.15)"/></svg>');
    opacity: 0.3;
}

.urgency-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.urgency-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.urgency-section p {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgent {
    animation: pulse 2s infinite;
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.urgency-note {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2rem;
    font-style: italic;
}

/* Enhanced Reviews */
.review-stars {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
}

.author-verified {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 500;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.badge-item img {
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

.badge-item span {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Enhanced CTA Buttons */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.cta-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.5s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

/* Pricing Psychology */
.pricing-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.price-original {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    margin-right: 1rem;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.price-period {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        padding: 1.5rem;
        min-width: 80px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .urgency-section h2 {
        font-size: 2.8rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .badge-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.8rem;
    }

    .urgency-section h2 {
        font-size: 2.5rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .countdown-item {
        flex: 1;
        min-width: 60px;
        padding: 1rem;
    }
}