/* Security Page Styles */

/* Main Container */

/* Security Overview Section */
.security-overview {
    padding: 60px 0;
    background: #f8fafc;
}

.security-intro {
    padding: 20px 0;
}

.section-title {
    color: #1e293b;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.security-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.security-image {
    text-align: center;
    padding: 40px;
}

.security-image .security-icon {
    font-size: 8rem;
    color: #ef4444;
    opacity: 0.1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #1e293b;
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header h2 i {
    color: #ef4444;
    margin-right: 16px;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Security Feature Cards */
.security-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.security-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.security-icon.imunify {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.security-icon.firewall {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.security-icon.scanning {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.security-icon.backup {
    background: linear-gradient(135deg, #10b981, #059669);
}

.security-icon.jetbackup {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.security-icon.compliance {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.security-icon i {
    color: white;
    font-size: 32px;
}

/* Imunify360 Section */
.imunify-section {
    padding: 60px 0;
    background: white;
}

.security-feature {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon.imunify {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.feature-icon i {
    color: white;
    font-size: 32px;
}

.feature-title {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.feature-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Firewall Section */
.firewall-section {
    padding: 60px 0;
    background: #f8fafc;
}

.firewall-content {
    padding: 20px 0;
}

.firewall-features {
    margin-top: 30px;
}

.firewall-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.firewall-feature i {
    color: #f59e0b;
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.firewall-visual {
    padding: 40px;
    text-align: center;
}

.firewall-layers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.layer {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.layer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.layer-1 {
    border-color: #ef4444;
}

.layer-2 {
    border-color: #f59e0b;
}

.layer-3 {
    border-color: #8b5cf6;
}

.layer i {
    font-size: 24px;
}

.layer-1 i {
    color: #ef4444;
}

.layer-2 i {
    color: #f59e0b;
}

.layer-3 i {
    color: #8b5cf6;
}

.layer span {
    font-weight: 600;
    color: #1e293b;
    font-size: 32px;
}

.security-card h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 16px;
}

.security-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.security-card ul {
    color: #64748b;
    line-height: 1.8;
    padding-left: 20px;
    margin-bottom: 20px;
}

.security-card ul li {
    margin-bottom: 8px;
}

/* Security Badge */
.security-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    margin-top: 16px;
}

.security-badge.imunify {
    background: #fee2e2;
    color: #dc2626;
}

.security-badge.firewall {
    background: #fef3c7;
    color: #92400e;
}

.security-badge.scanning {
    background: #ede9fe;
    color: #7c3aed;
}

.security-badge.backup {
    background: #dcfce7;
    color: #166534;
}

.security-badge.jetbackup {
    background: #cffafe;
    color: #0891b2;
}

.security-badge.compliance {
    background: #e0e7ff;
    color: #4f46e5;
}

/* Security Stats Card */
.security-stats-card {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    color: white;
}

.security-stats-card h3 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.security-stat-item {
    text-align: center;
    margin-bottom: 1rem;
}

.security-stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.security-stat-label {
    opacity: 0.9;
}

/* Scanning Section */
.scanning-section {
    padding: 60px 0;
    background: white;
}

.scan-type {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.scan-type:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.scan-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.scan-icon i {
    color: white;
    font-size: 28px;
}

.scan-type h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.scan-type p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.scan-frequency {
    background: #8b5cf6;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Backup Section */
.backup-section {
    padding: 60px 0;
    background: #f8fafc;
}

.backup-visual {
    padding: 40px;
    text-align: center;
}

.backup-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.backup-point {
    text-align: center;
    padding: 15px;
}

.backup-point.active .backup-status {
    background: #10b981;
    color: white;
}

.backup-day {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.backup-status {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 600;
    color: #64748b;
}

.backup-content {
    padding: 20px 0;
}

.backup-features {
    margin-top: 30px;
}

.backup-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.backup-feature i {
    color: #10b981;
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* JetBackup Section */
.jetbackup-section {
    padding: 60px 0;
    background: white;
}

.jetbackup-feature {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.feature-icon.jetbackup {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

/* Compliance Section */
.compliance-section {
    padding: 60px 0;
    background: #f8fafc;
}

.compliance-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.compliance-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.compliance-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.compliance-icon i {
    color: white;
    font-size: 28px;
}

.compliance-item h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.compliance-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Call to Action Section */
.security-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-btn.primary {
    background: #ef4444;
    color: white;
}

.cta-btn.primary:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    color: white;
    text-decoration: none;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .security-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .security-image .security-icon {
        font-size: 6rem;
    }
    
    .firewall-layers {
        gap: 15px;
    }
    
    .layer {
        min-width: 200px;
        padding: 15px 20px;
    }
    
    .layer span {
        font-size: 14px;
    }
    
    .backup-timeline {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .backup-point {
        padding: 10px;
    }
    
    .firewall-feature,
    .backup-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .firewall-feature i,
    .backup-feature i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .security-overview,
    .imunify-section,
    .firewall-section,
    .scanning-section,
    .backup-section,
    .jetbackup-section,
    .compliance-section,
    .security-cta {
        padding: 40px 0;
    }
}

/* Inline Link Styling */
.inline-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}