/* Modern Hero Styles */
.hero-modern {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    opacity: 0.5;
}

.hero-pattern::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath fill='%23dc2626' opacity='0.06' d='M320 0c17.7 0 32 14.3 32 32V96H472c39.8 0 72 32.2 72 72V440c0 39.8-32.2 72-72 72H168c-39.8 0-72-32.2-72-72V168c0-39.8 32.2-72 72-72H288V32c0-17.7 14.3-32 32-32zM208 384c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H208zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H304zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H400zM264 256a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zm152 40a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM48 224H64V416H48c-26.5 0-48-21.5-48-48V272c0-26.5 21.5-48 48-48zm544 0c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H576V224h16z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 1024px) {
    .hero-pattern::after {
        width: 300px;
        height: 300px;
        right: -50px;
    }
}

@media (max-width: 768px) {
    .hero-pattern::after {
        width: 200px;
        height: 200px;
        right: -30px;
        opacity: 0.5;
    }
}

.hero-grid-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-modern {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-subtitle-modern strong {
    color: var(--primary-red);
    font-weight: 700;
}

.hero-stats-inline {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-inline {
    text-align: left;
}

.stat-inline-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-inline-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-actions-modern {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-modern-primary {
    background: var(--gradient-red);
    color: white;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
}

.btn-modern-outline {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-modern-outline:hover {
    border-color: var(--primary-red);
    background: rgba(220, 38, 38, 0.1);
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--success);
    font-size: 1rem;
}

/* Visual Section */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.visual-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.visual-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.ransomware-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.ransomware-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.ransomware-badge i {
    color: var(--success);
    font-size: 0.8rem;
}

.visual-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visual-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.visual-stat-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.visual-stat-content {
    flex: 1;
}

.visual-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.visual-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid-modern {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title-modern {
        font-size: 3rem;
    }
    
    .hero-stats-inline {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-content-modern {
        text-align: center;
    }
    
    .hero-badge-modern {
        justify-content: center;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-title-modern br {
        display: none;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats-inline {
        flex-direction: row;
        gap: 16px;
        justify-content: center;
        padding: 20px 0;
    }
    
    .stat-inline {
        text-align: center;
        flex: 1;
        min-width: 0;
    }
    
    .stat-inline-number {
        font-size: 1.8rem;
    }
    
    .stat-inline-label {
        font-size: 0.75rem;
    }
    
    .hero-actions-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .trust-item {
        justify-content: center;
        font-size: 0.85rem;
        flex: 0 1 auto;
    }
    
    .trust-item i {
        font-size: 0.9rem;
    }
    
    .ransomware-grid {
        grid-template-columns: 1fr;
    }
}
