/* Additional Conversion Optimization Styles */

/* Social Proof Stats */
.social-proof-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.stat-icon {
    font-size: 1.3rem;
}

.stat-text strong {
    color: var(--primary-color);
}

/* Store Badges - Enhanced Prominence */
.store-badges {
    display: flex;
    gap: 1rem;
    margin: 2.5rem 0;  /* Increased spacing */
    padding: 1.5rem;
    background: rgba(230, 57, 70, 0.03);  /* Subtle highlight */
    border-radius: 12px;
    border: 2px dashed var(--border-variant);
    flex-wrap: wrap;
    justify-content: center;
}

.store-badge {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-badge:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.store-badge:active {
    transform: translateY(-1px);  /* Subtle press effect */
}

.store-badge:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.store-badge img {
    height: 70px;  /* Fixed height for consistency */
    width: auto;
    display: block;
    margin: 0 auto;
}

.download-hint {
    color: #94A3B8;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;  /* Tighter spacing */
}

/* Hero Pricing with Tag */
.hero-pricing {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.price-tag {
    background: rgba(230, 57, 70, 0.1);
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--bg-color);  /* White background */
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-secondary);  /* Gray text */
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-card {
    background: var(--card-bg);  /* White cards */
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-variant);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.1);  /* Red shadow */
}

.price-card.featured {
    border: 2px solid var(--primary-color);  /* Solid red border */
    background: rgba(230, 57, 70, 0.03);  /* Flat subtle red tint, no gradient */
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);  /* Solid red, no gradient */
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-name {
    font-size: 1.5rem;
    color: var(--text-color);  /* Dark text */
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 8px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);  /* Dark text */
    line-height: 1;
}

.price-period {
    color: var(--text-secondary);  /* Gray text */
    margin-bottom: 2rem;
    font-size: 1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.6rem 0;
    color: var(--text-secondary);  /* Gray text */
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-variant);
}

.features-list li:last-child {
    border-bottom: none;
}

.btn-price {
    display: block;
    text-align: center;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-price:hover {
    border-color: var(--primary-color);
    background: rgba(230, 57, 70, 0.1);  /* Red tint */
    color: var(--primary-color);
}

.btn-price.primary {
    background: var(--primary-color);  /* Solid red, no gradient */
    border: none;
    color: white;
}

.btn-price.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    background: #D22532;  /* Darker red on hover */
}

.price-note {
    text-align: center;
    color: var(--text-secondary);  /* Gray text */
    font-size: 0.85rem;
    margin-top: 1rem;
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-variant);
}

.payment-methods, .guarantee {
    color: var(--text-secondary);  /* Gray text */
    margin: 0.5rem 0;
}

.payment-methods strong, .guarantee {
    color: var(--accent-color);
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
    .social-proof-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Store Badges - Stack Vertically */
    .store-badges {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .store-badge {
        width: 100%;
        text-align: center;
    }
    
    .store-badge img {
        height: 60px !important;
        width: auto !important;
        max-width: 100% !important;
        display: block !important;
        margin: 0 auto;
    }
    
    /* Value Highlights */
    .value-highlights {
        padding: 1.25rem;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
    
    /* Hero Text */
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-pricing {
        font-size: 0.95rem;
    }
    
    .price-tag {
        display: inline-block;
        margin-top: 0.25rem;
    }
    
    /* Pricing Cards */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: none;  /* No scale on mobile */
    }
    
    .amount {
        font-size: 2.5rem;
    }
}
