/* Real-Time Data Breach Monitoring Section */
.section-breach-alerts {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.95) 0%, rgba(30, 60, 100, 0.95) 50%, rgba(45, 85, 135, 0.95) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
}

.section-breach-alerts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 87, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 200, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.section-breach-alerts .title {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #00D4FF 0%, #FFE135 50%, #FF5733 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.section-breach-alerts .section-subtitle {
    text-align: center;
    font-family: "colfax-light", sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.breach-monitor-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breach-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.monitor-screen {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15), 
        0 10px 40px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.monitor-screen:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.2), 
        0 15px 50px rgba(0, 212, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.monitor-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #0f4c75 100%);
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.monitor-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.monitor-screen:hover .monitor-header::before {
    left: 100%;
}

.monitor-controls {
    display: flex;
    gap: 10px;
}

.control-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.control-dot.red { 
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.control-dot.yellow { 
    background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
    box-shadow: 0 2px 8px rgba(254, 202, 87, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.control-dot.green { 
    background: linear-gradient(135deg, #48dbfb 0%, #0abde3 100%);
    box-shadow: 0 2px 8px rgba(72, 219, 251, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.control-dot:hover {
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.monitor-title {
    color: white;
    font-family: "colfax-medium", sans-serif;
    font-size: 16px;
    margin-left: 10px;
}

.monitor-content {
    padding: 30px;
}

.breach-check-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.breach-input {
    padding: 18px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    font-family: "colfax-light", sans-serif;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.breach-input:focus {
    border-color: #667eea;
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.15),
        0 8px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-2px);
}

.breach-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.breach-check-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #004d54 0%, #36b2ff 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-family: "colfax-medium", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.breach-check-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.breach-check-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.breach-check-btn:hover::before {
    left: 100%;
}

.breach-check-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.breach-check-btn i {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.breach-results {
    min-height: 120px;
    margin-bottom: 30px;
}

/* Enhanced breach result styling */
.breach-result {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 20px;
    animation: slideInUp 0.5s ease-out;
}

.breach-result.safe {
    border-left: 5px solid #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.breach-result.danger {
    border-left: 5px solid #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.breach-result.warning {
    border-left: 5px solid #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
}

.result-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.breach-result.safe .result-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.breach-result.danger .result-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.breach-result.warning .result-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.result-icon i {
    color: white;
    width: 24px;
    height: 24px;
}

.breach-result h4 {
    font-family: "colfax-bold", sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #1f2937;
}

.breach-result p {
    font-family: "colfax-light", sans-serif;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

.breach-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.breach-tag {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    color: #991b1b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    font-family: "colfax-medium", sans-serif;
    font-size: 14px;
    margin-top: 15px;
}

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

.live-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: rgba(0, 126, 54, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 126, 54, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 126, 54, 0.1);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.stat-text {
    font-family: "colfax-light", sans-serif;
    font-size: 14px;
    color: #007E36;
    font-weight: 500;
}

.breach-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon i {
    color: white;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-card h3 {
    font-family: "colfax-bold", sans-serif;
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.feature-card p {
    font-family: "colfax-light", sans-serif;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
}

.breach-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.breach-cta h3 {
    font-family: "colfax-bold", sans-serif;
    font-size: 24px;
    color: #007E36;
    margin-bottom: 15px;
}

.breach-cta p {
    font-family: "colfax-light", sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #DFFF19 0%, #c4e617 100%);
    color: #007E36;
    text-decoration: none;
    border-radius: 100px;
    font-family: "colfax-medium", sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(223, 255, 25, 0.3);
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(223, 255, 25, 0.4);
    color: #007E36;
}

.cta-button.secondary i {
    width: 18px;
    height: 18px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .breach-monitor-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .breach-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .live-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .monitor-content {
        padding: 20px;
    }
    
    .breach-cta {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .section-breach-alerts .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .breach-monitor-container {
        padding: 0 15px;
    }
    
    .monitor-content {
        padding: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .breach-cta {
        padding: 25px 15px;
    }
    
    .breach-cta h3 {
        font-size: 20px;
    }
    
    .breach-cta p {
        font-size: 14px;
    }
} 