/* ============================================
   HERO CONVERSION OPTIMIZATION
   Expert UX/UI Design for Maximum Sales & Trust
   ============================================ */

/* Enhanced Trust Layer - Left Aligned */
.hero-trust-layer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.hero-security-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.security-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-green, #10b981);
    transition: all 0.3s ease;
}

.security-badge-item:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.security-badge-item i {
    font-size: 14px;
}

.trust-rating .rating-count {
    font-size: 11px;
    color: var(--text-muted, #94a3b8);
    margin-left: 8px;
}

/* Enhanced Trust Tags - Left Aligned */
.hero-trust-tags-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.verified-tag.premium {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--accent-green, #10b981);
}

.verified-tag.guarantee {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--accent-primary, #6366f1);
}

.verified-tag.support {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--accent-gold, #f59e0b);
}

/* Enhanced Features - Left Aligned Horizontal */
.hero-features-left {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.feature-item-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-card, #1e2838);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    padding: 16px 20px;
    border-radius: var(--border-radius, 12px);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.feature-item-left:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md, 0 4px 16px rgba(0, 0, 0, 0.4));
    border-color: var(--accent-primary, #6366f1);
}

.feature-icon-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary, linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%));
    border-radius: 8px;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-content strong {
    color: var(--text-primary, #f8fafc);
    font-size: 15px;
    font-weight: 700;
}

.feature-content span {
    color: var(--text-muted, #94a3b8);
    font-size: 12px;
}

/* Enhanced Social Proof - Left Aligned Horizontal */
.hero-social-proof-left {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.proof-item-left {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card, #1e2838);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    padding: 20px 24px;
    border-radius: var(--border-radius-lg, 16px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 220px;
}

.proof-item-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary, linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.proof-item-left:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg, 0 8px 32px rgba(0, 0, 0, 0.5));
    border-color: var(--accent-primary, #6366f1);
}

.proof-item-left:hover::before {
    transform: scaleY(1);
}

.proof-icon-enhanced {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary, linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%));
    border-radius: 12px;
    color: white;
    font-size: 20px;
    box-shadow: var(--shadow-glow, 0 0 20px rgba(99, 102, 241, 0.3));
    flex-shrink: 0;
}

.proof-content-enhanced {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proof-content-enhanced .proof-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary, #f8fafc);
    line-height: 1.2;
}

.proof-content-enhanced .proof-label {
    font-size: 13px;
    color: var(--text-secondary, #cbd5e1);
    font-weight: 600;
    word-break: break-word;
    hyphens: auto;
}

.proof-content-enhanced .proof-subtext {
    font-size: 11px;
    color: var(--accent-green, #10b981);
    font-weight: 500;
}

/* Mobile/Desktop Text Switching */
.mobile-short {
    display: none;
}

.desktop-full {
    display: inline;
}

@media (max-width: 768px) {
    .mobile-short {
        display: inline;
    }
    
    .desktop-full {
        display: none;
    }
}

/* Enhanced CTA - Left Aligned */
.hero-cta-left {
    margin-top: 48px;
}

.cta-primary-btn-left {
    display: inline-block;
    position: relative;
    background: var(--gradient-primary, linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%));
    color: white;
    padding: 22px 50px;
    border-radius: var(--border-radius, 12px);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
    border: none;
    cursor: pointer;
    text-align: left;
}

.cta-primary-btn-left:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
    color: white;
}

.cta-primary-btn-left .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.cta-primary-btn-left .btn-content i:last-child {
    transition: transform 0.3s ease;
    margin-left: auto;
}

.cta-primary-btn-left:hover .btn-content i:last-child {
    transform: translateX(5px);
}

/* Trust Elements Below CTA - Left Aligned */
.cta-trust-elements-left {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.trust-element {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-secondary, #cbd5e1);
    transition: all 0.3s ease;
}

.trust-element:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--accent-primary, #6366f1);
}

.trust-element i {
    color: var(--accent-primary, #6366f1);
    font-size: 16px;
    flex-shrink: 0;
}

.trust-element strong {
    color: var(--text-primary, #f8fafc);
}

/* Money Back Guarantee Badge - Left Aligned */
.money-back-badge-left {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    padding: 14px 24px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--accent-green, #10b981);
    font-weight: 600;
    animation: pulse-glow 2s ease-in-out infinite;
}

.money-back-badge i {
    font-size: 18px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    }
}

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

/* Multiple Notifications - Less Intrusive Positioning */
.hero-live-notification.notification-2 {
    bottom: 90px;
    animation-delay: 2s;
    opacity: 0.75;
}

.hero-live-notification.notification-2:hover {
    opacity: 0.9;
}

/* Auto-hide notifications after delay (less annoying) - Animation defined in modern-hero.css */

/* Hero Visual Area */
.hero-visual-area {
    position: relative;
    height: 100%;
    min-height: 400px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-trust-layer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .hero-features-left {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .feature-item-left {
        flex: 1;
        min-width: auto;
        padding: 12px 14px;
        gap: 10px;
    }
    
    .feature-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .feature-content strong {
        font-size: 13px;
    }
    
    .feature-content span {
        font-size: 11px;
    }
    
    .hero-social-proof-left {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .proof-item-left {
        flex: 1;
        min-width: 0;
        padding: 12px 14px;
        gap: 10px;
    }
    
    .proof-icon-enhanced {
        width: 32px;
        height: 32px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .proof-content-enhanced {
        gap: 2px;
        min-width: 0;
        flex: 1;
    }
    
    .proof-number {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.2;
        white-space: nowrap;
    }
    
    .proof-label {
        font-size: 10px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .proof-subtext {
        font-size: 8px;
        opacity: 0.8;
    }
    
    .cta-trust-elements-left {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-primary-btn-left {
        width: 100%;
        text-align: center;
    }
    
    .cta-primary-btn-left .btn-content {
        justify-content: center;
    }
    
    .hero-visual-area {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Reduced spacing on mobile for better space efficiency */
    .hero-trust-tags-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    /* Optimized Features for Mobile - Compact Design */
    .hero-features-left {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .feature-item-left {
        flex: 1;
        padding: 10px 12px;
        gap: 8px;
        min-width: 0;
    }
    
    .feature-icon-wrapper {
        width: 28px;
        height: 28px;
        font-size: 12px;
        border-radius: 6px;
    }
    
    .feature-content {
        gap: 2px;
    }
    
    .feature-content strong {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .feature-content span {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .cta-primary-btn-left {
        padding: 18px 40px;
        font-size: 18px;
        width: 100%;
    }
    
    .hero-live-notification.notification-2 {
        display: none;
    }
    
    .hero-title-left {
        font-size: 32px;
    }
    
    .hero-description-left {
        font-size: 16px;
    }
}

/* Extra Small Mobile - Ultra Compact Features */
@media (max-width: 576px) {
    .hero-features-left {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .feature-item-left {
        padding: 8px 10px;
        gap: 6px;
    }
    
    .feature-icon-wrapper {
        width: 24px;
        height: 24px;
        font-size: 11px;
        border-radius: 5px;
    }
    
    .feature-content strong {
        font-size: 11px;
    }
    
    .feature-content span {
        font-size: 9px;
    }
}

/* Very Small Mobile - Minimal Space */
@media (max-width: 480px) {
    .hero-features-left {
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .feature-item-left {
        padding: 6px 8px;
        gap: 5px;
    }
    
    .feature-icon-wrapper {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .feature-content strong {
        font-size: 10px;
    }
    
    .feature-content span {
        font-size: 8px;
        display: none; /* Hide subtitle on very small screens to save space */
    }
    
    /* Ultra Compact Social Proof on Very Small Screens */
    .hero-social-proof-left {
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .proof-item-left {
        padding: 8px 10px;
        gap: 6px;
    }
    
    .proof-icon-enhanced {
        width: 26px;
        height: 26px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    .proof-number {
        font-size: 14px;
        font-weight: 800;
    }
    
    .proof-label {
        font-size: 9px;
        line-height: 1.1;
    }
    
    .proof-subtext {
        font-size: 7px;
        display: none; /* Hide subtext on very small screens */
    }
}

