/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 350px;
    height: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    white-space: nowrap; /* Tek satır görünmesini sağlar */
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #fbbf24;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Hero Section End */

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.mockup-header {
    background: #f8fafc;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
    background: #10b981;
}

.mockup-title {
    font-weight: 600;
    color: #374151;
}

.mockup-content {
    padding: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8fafc;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card .service-link {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.service-card .service-link:hover {
    text-decoration: underline;
}

.services-cta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #2563eb, #10b981);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2563eb, #10b981);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Demos Section */
.demos {
    padding: 100px 0;
    background: white;
}

.demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.demo-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.demo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.demo-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.demo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2563eb, #10b981);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.demo-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
}

.demo-preview {
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: relative;
    overflow: hidden;
}

.demo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.demo-card p {
    padding: 20px 30px;
    color: #6b7280;
    line-height: 1.6;
}

.demo-btn {
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 15px;
    background: linear-gradient(45deg, #2563eb, #10b981);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

/* Demo Modal */
.demo-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.demo-modal-content {
    background-color: white;
    margin: 1% auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 1400px;
    max-height: 95vh;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demo-modal-header {
    background: linear-gradient(45deg, #2563eb, #10b981);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.demo-close {
    font-size: 2rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.demo-close:hover {
    opacity: 0.7;
}

.demo-modal-body {
    max-height: 85vh;
    overflow-y: auto;
    padding: 0;
}

.demo-interface {
    padding: 20px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.tools-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.tool-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tool-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* Form Message Styles */
.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 250px;
    height: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Demo Specific Styles */
.demo-container {
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

.demo-sidebar {
    width: 280px;
    background: #f8fafc;
    padding: 15px;
    border-right: 1px solid #e2e8f0;
    height: 75vh;
    overflow-y: auto;
}

.demo-main {
    flex: 1;
    padding: 15px;
    height: 75vh;
    overflow-y: auto;
}

.demo-container {
    display: flex;
    max-height: 80vh;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

/* Form Styles */
.demo-form .form-group {
    margin-bottom: 15px;
}

.demo-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.demo-input, .demo-select, .demo-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.demo-input:focus, .demo-select:focus, .demo-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.demo-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Button Styles */
.demo-btn-primary {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.demo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.demo-btn-edit {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.demo-btn-edit:hover {
    background: #d97706;
    transform: translateY(-1px);
}

.demo-btn-assign {
    background: #10b981;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.demo-btn-assign:hover {
    background: #059669;
    transform: translateY(-1px);
}

.demo-btn-small {
    background: #6b7280;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.demo-btn-small:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

.demo-btn-retest {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.demo-btn-success {
    background: linear-gradient(45deg, #10b981, #059669) !important;
}

/* Rate Limit Warning */
.rate-limit-warning {
    background: #fef3cd;
    color: #856404;
    border: 2px solid #ffc107;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

/* Form Disabled State */
.form-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.form-disabled input,
.form-disabled textarea {
    background: #f5f5f5;
    cursor: not-allowed;
}

/* Vulnerability List Styles */
.vulnerability-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vulnerability-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid;
}

.vulnerability-item.critical {
    border-left-color: #dc2626;
}

.vulnerability-item.high {
    border-left-color: #ea580c;
}

.vulnerability-item.medium {
    border-left-color: #ca8a04;
}

.vulnerability-item.low {
    border-left-color: #65a30d;
}

.vulnerability-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.vuln-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.vuln-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
}

.vuln-severity {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.vuln-severity.critical {
    background: #fee2e2;
    color: #dc2626;
}

.vuln-severity.high {
    background: #fed7aa;
    color: #ea580c;
}

.vuln-severity.medium {
    background: #fef3c7;
    color: #ca8a04;
}

.vuln-severity.low {
    background: #dcfce7;
    color: #65a30d;
}

.vuln-score {
    background: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.vuln-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #6b7280;
}

.vuln-actions {
    display: flex;
    gap: 10px;
}

.status-open {
    color: #dc2626;
    font-weight: 600;
}

.status-in-progress {
    color: #f59e0b;
    font-weight: 600;
}

.status-resolved {
    color: #10b981;
    font-weight: 600;
}

/* Filters */
.demo-filters {
    display: flex;
    gap: 15px;
    align-items: center;
}

.demo-filter {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Process Management Styles */
.process-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 20px;
    padding: 15px;
    height: 100%;
    max-height: 75vh;
    overflow-y: auto;
}

.process-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-calendar {
    grid-column: 1;
}

.process-activities {
    grid-column: 2;
}

.calendar-grid {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
}

.calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.calendar-day:hover {
    background: #f3f4f6;
}

.calendar-day.today {
    background: #2563eb;
    color: white;
    font-weight: 600;
}

.calendar-day.has-vulns {
    background: #fee2e2;
    color: #dc2626;
    font-weight: 600;
}

.calendar-day.has-vulns.critical {
    background: #dc2626;
    color: white;
}

.calendar-day.has-vulns.high {
    background: #ea580c;
    color: white;
}

.calendar-day.has-vulns.medium {
    background: #ca8a04;
    color: white;
}

.vuln-indicator {
    position: absolute;
    top: 2px;
    right: 2px;
    background: white;
    color: #dc2626;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.activity-list {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.activity-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.activity-content {
    flex: 1;
}

.activity-text {
    color: #374151;
    margin-bottom: 5px;
}

.activity-time {
    color: #9ca3af;
    font-size: 0.8rem;
}

/* Team Workflow Styles */
.workflow-board {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 15px;
    height: 70vh;
    overflow-x: auto;
}

.workflow-column {
    background: #f8fafc;
    border-radius: 10px;
    padding: 12px;
    min-width: 220px;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.column-header h3 {
    font-size: 1rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.task-count {
    background: #6b7280;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.workflow-tasks {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.workflow-task {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: grab;
    transition: all 0.3s ease;
    border-left: 4px solid;
}

.workflow-task:active {
    cursor: grabbing;
}

.workflow-task:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.workflow-task.critical {
    border-left-color: #dc2626;
}

.workflow-task.high {
    border-left-color: #ea580c;
}

.workflow-task.medium {
    border-left-color: #ca8a04;
}

.workflow-task.resolved {
    border-left-color: #10b981;
    opacity: 0.8;
}

.task-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.task-severity {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.task-severity.resolved {
    background: #dcfce7;
    color: #065f46;
}

.task-id {
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 500;
}

.task-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.task-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.8rem;
    color: #6b7280;
}

.task-assignee, .task-deadline {
    display: flex;
    align-items: center;
    gap: 5px;
}

.team-performance {
    margin-top: 20px;
    padding: 20px;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.metric-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.metric-title {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.metric-value {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.metric-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #10b981;
}

/* Attack Surface Management Styles */
.asm-dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 15px;
    height: 100%;
    max-height: 75vh;
    overflow-y: auto;
}

.asm-network-map {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.network-visualization {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.network-node {
    cursor: pointer;
    transition: all 0.3s ease;
}

.network-node:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.attack-path {
    animation: dash 2s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -10;
    }
}

.asm-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.node-details {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.node-details-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.node-details-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    color: #6b7280;
}

.risk-assessment {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.risk-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.risk-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.risk-item.critical {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.risk-item.high {
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.risk-item.medium {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.risk-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.risk-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.risk-item.critical .risk-icon {
    background: #dc2626;
    color: white;
}

.risk-item.high .risk-icon {
    background: #ea580c;
    color: white;
}

.risk-item.medium .risk-icon {
    background: #ca8a04;
    color: white;
}

.risk-content {
    flex: 1;
}

.risk-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 5px;
}

.risk-desc {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Vulnerability Center Styles */
.vuln-center-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 15px;
    height: 100%;
    max-height: 75vh;
    overflow-y: auto;
}

.vuln-timeline {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -23px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px;
}

.timeline-marker.detected {
    background: #dc2626;
    box-shadow: 0 0 0 2px #dc2626;
}

.timeline-marker.assigned {
    background: #f59e0b;
    box-shadow: 0 0 0 2px #f59e0b;
}

.timeline-marker.in-progress {
    background: #2563eb;
    box-shadow: 0 0 0 2px #2563eb;
}

.timeline-marker.pending {
    background: #9ca3af;
    box-shadow: 0 0 0 2px #9ca3af;
}

.timeline-content {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #e2e8f0;
}

.timeline-time {
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.timeline-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 5px;
}

.timeline-desc {
    color: #6b7280;
    font-size: 0.9rem;
}

.vuln-mapping {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mapping-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.asset-card, .vuln-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    flex: 1;
}

.asset-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.asset-header i {
    font-size: 2rem;
    color: #2563eb;
}

.asset-name {
    font-weight: 600;
    color: #374151;
}

.asset-ip {
    color: #6b7280;
    font-size: 0.9rem;
}

.asset-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.asset-status.online {
    background: #dcfce7;
    color: #065f46;
}

.asset-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.spec-label {
    color: #6b7280;
    font-weight: 500;
}

.spec-value {
    color: #374151;
}

.mapping-arrow {
    font-size: 2rem;
    color: #2563eb;
}

.vuln-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.vuln-cve {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.vuln-port {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.vuln-timestamp {
    color: #6b7280;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.retest-section {
    margin-top: 30px;
}

.retest-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.retest-step {
    display: flex;
    gap: 15px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.retest-step.completed,
.retest-step.active {
    opacity: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #6b7280;
}

.retest-step.completed .step-number {
    background: #10b981;
    color: white;
}

.retest-step.active .step-number {
    background: #2563eb;
    color: white;
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 5px;
}

.step-desc {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Asset Tracking Styles */
.asset-dashboard {
    padding: 15px;
    height: 100%;
    max-height: 75vh;
    overflow-y: auto;
}

.asset-overview {
    margin-bottom: 30px;
}

.asset-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.asset-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.asset-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.asset-item.critical {
    border-left-color: #dc2626;
}

.asset-item.high {
    border-left-color: #ea580c;
}

.asset-item.medium {
    border-left-color: #ca8a04;
}

.asset-item.low {
    border-left-color: #65a30d;
}

.asset-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.asset-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.asset-icon {
    width: 50px;
    height: 50px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6b7280;
}

.asset-info {
    flex: 1;
}

.asset-name {
    font-weight: 600;
    color: #374151;
    margin-bottom: 2px;
}

.asset-ip {
    color: #6b7280;
    font-size: 0.9rem;
}

.asset-status {
    width: 12px;
    height: 12px;
    font-size: 0.8rem;
}

.asset-status.online {
    color: #10b981;
}

.asset-status.offline {
    color: #ef4444;
}

.asset-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.asset-detail {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.detail-label {
    color: #6b7280;
    font-weight: 500;
}

.detail-value {
    color: #374151;
}

.detail-value.agent-active {
    color: #10b981;
}

.detail-value.agent-inactive {
    color: #ef4444;
}

.detail-value.vulns.critical {
    color: #dc2626;
    font-weight: 600;
}

.detail-value.vulns.high {
    color: #ea580c;
    font-weight: 600;
}

.asset-actions {
    display: flex;
    gap: 10px;
}

.discovery-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.discovery-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 15px;
}

.discovery-settings {
    display: flex;
    gap: 15px;
    align-items: end;
}

.discovery-settings label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #374151;
}

.discovery-settings input {
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    width: 200px;
}

.discovery-status {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.status-label {
    color: #6b7280;
    font-weight: 500;
}

.status-value {
    color: #374151;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    min-width: 300px;
    border-left: 4px solid;
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left-color: #10b981;
    color: #065f46;
}

.toast-error {
    border-left-color: #ef4444;
    color: #991b1b;
}

.toast-warning {
    border-left-color: #f59e0b;
    color: #92400e;
}

.toast-info {
    border-left-color: #2563eb;
    color: #1e40af;
}

.toast i {
    font-size: 1.2rem;
}

/* PoC Modal */
.poc-modal {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.poc-code {
    background: #1f2937;
    color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
    margin: 15px 0;
}

/* Demo Preview Placeholder Styles */
.demo-preview-placeholder {
    height: 200px;
    border-radius: 10px;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.demo-preview-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Demo Animation Styles */
.demo-animated-preview {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-container {
    width: 90%;
    height: 90%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Vulnerability Management Animation */
.vulnerability-animation {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.vuln-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fbbf24 50%, transparent 100%);
    animation: scanLine 3s infinite;
}

.vuln-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.vuln-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.vuln-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: vulnPulse 2s infinite;
}

.critical-anim .vuln-pulse {
    background: #fbbf24;
    animation-delay: 0s;
}

.high-anim .vuln-pulse {
    background: #f59e0b;
    animation-delay: 0.5s;
}

.medium-anim .vuln-pulse {
    background: #eab308;
    animation-delay: 1s;
}

.progress-bar {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #fbbf24;
    border-radius: 2px;
    animation: progressFill 4s infinite;
}

/* Process Management Animation */
.process-animation {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.process-timeline {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
}

.timeline-step.active {
    color: white;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: stepProgress 8s infinite;
}

.timeline-step.active .step-dot {
    background: #fbbf24;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.calendar-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 10px;
}

.calendar-day {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.critical-day {
    background: #dc2626;
}

.high-day {
    background: #f59e0b;
}

.medium-day {
    background: #eab308;
}

/* Team Workflow Animation */
.workflow-animation {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.workflow-columns {
    display: flex;
    gap: 15px;
    width: 100%;
}

.workflow-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.workflow-header {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.workflow-task-mini {
    width: 100%;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    position: relative;
}

.workflow-task-mini.solved {
    background: #22c55e;
}

.workflow-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
}

.arrow-moving {
    animation: arrowMove 3s infinite;
}

/* Attack Surface Management Animation */
.attack-surface-animation {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

.network-nodes {
    position: relative;
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.network-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.internet-node {
    background: rgba(239, 68, 68, 0.8);
}

.firewall-node {
    background: rgba(34, 197, 94, 0.8);
}

.server-node {
    background: rgba(59, 130, 246, 0.8);
}

.database-node {
    background: rgba(245, 158, 11, 0.8);
}

.network-connections {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.connection-line {
    position: absolute;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    animation: dataFlow 2s infinite;
}

.line1 {
    left: 15%;
    width: 20%;
    animation-delay: 0s;
}

.line2 {
    left: 40%;
    width: 20%;
    animation-delay: 0.7s;
}

.line3 {
    right: 15%;
    width: 20%;
    animation-delay: 1.4s;
}

.attack-path {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(220, 38, 38, 0.8);
    border-radius: 1px;
    animation: attackPath 4s infinite;
}

.risk-meter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dc2626;
    animation: riskBlink 1.5s infinite;
}

/* Vulnerability Center Animation */
.vulnerability-center-animation {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.vuln-timeline-mini {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.timeline-item-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 500;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.active-dot {
    background: #fbbf24 !important;
    animation: activeDotPulse 1.5s infinite;
}

.mapping-visual {
    display: flex;
    align-items: center;
    gap: 15px;
}

.asset-box, .vuln-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.vuln-box.critical {
    border: 2px solid #dc2626;
    animation: criticalBorder 2s infinite;
}

.mapping-arrow-anim {
    color: white;
    font-size: 1.5rem;
    animation: arrowPulse 2s infinite;
}

/* Asset Tracking Animation */
.asset-tracking-animation {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.asset-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.asset-item-mini {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.asset-status-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.online-dot {
    background: #22c55e;
    animation: onlinePulse 2s infinite;
}

.offline-dot {
    background: #ef4444;
}

.scanning-dot {
    background: #f59e0b;
    animation: scanningPulse 1s infinite;
}

.scan-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(251, 191, 36, 0.3) 50%, transparent 100%);
    animation: scanWave 3s infinite;
    border-radius: 10px;
}

.discovery-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: discoveryBlink 2s infinite;
}

/* Animation Keyframes */
@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes vulnPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes progressFill {
    0% { width: 0%; }
    70% { width: 85%; }
    100% { width: 100%; }
}

@keyframes stepProgress {
    0%, 25% { background: rgba(255, 255, 255, 0.3); }
    25.1%, 50% { background: #fbbf24; box-shadow: 0 0 15px rgba(251, 191, 36, 0.6); }
    50.1%, 75% { background: rgba(255, 255, 255, 0.3); }
    75.1%, 100% { background: #fbbf24; box-shadow: 0 0 15px rgba(251, 191, 36, 0.6); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes slide-in {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes dataFlow {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

@keyframes attackPath {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: 0 0 10px #dc2626; }
}

@keyframes riskBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes activeDotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 5px #fbbf24; }
    50% { transform: scale(1.3); box-shadow: 0 0 15px #fbbf24; }
}

@keyframes criticalBorder {
    0%, 100% { border-color: #dc2626; }
    50% { border-color: #fbbf24; }
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes onlinePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes scanningPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

@keyframes scanWave {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes discoveryBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Hover Effects for Animated Previews */
.demo-animated-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.demo-animated-preview:hover .scan-wave {
    animation-duration: 1.5s;
}

.demo-animated-preview:hover .vuln-pulse {
    animation-duration: 1s;
}

.demo-animated-preview:hover .progress-fill {
    animation-duration: 2s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .demos-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-modal-content {
        width: 98%;
        margin: 1% auto;
        max-height: 98vh;
    }
    
    .demo-container {
        flex-direction: column;
        max-height: none;
    }
    
    .demo-sidebar {
        width: 100%;
        height: auto;
        max-height: 40vh;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .demo-main {
        height: auto;
        max-height: 50vh;
    }
    
    .workflow-board {
        grid-template-columns: 1fr;
        height: auto;
        max-height: 70vh;
    }
    
    .asm-dashboard {
        grid-template-columns: 1fr;
    }
    
    .vuln-center-dashboard {
        grid-template-columns: 1fr;
    }
    
    .process-dashboard {
        grid-template-columns: 1fr;
    }
    
    .asset-grid {
        grid-template-columns: 1fr;
    }
    
    .asset-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .asset-filters {
        flex-direction: column;
        gap: 15px;
    }
    
    .discovery-controls {
        grid-template-columns: 1fr;
    }
    
    .discovery-settings {
        flex-direction: column;
        align-items: stretch;
    }
    
    .performance-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .tools-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .demo-modal-content {
        width: 99%;
        margin: 0.5% auto;
        max-height: 99vh;
    }
    
    .demo-interface {
        padding: 10px;
    }
    
    .demo-sidebar {
        padding: 10px;
        max-height: 35vh;
    }
    
    .demo-main {
        padding: 10px;
        max-height: 45vh;
    }
    
    .workflow-column {
        min-width: 200px;
        padding: 10px;
    }
    
    .workflow-tasks {
        min-height: 200px;
    }
    
    .process-dashboard {
        gap: 10px;
        padding: 10px;
    }
    
    .asm-dashboard {
        gap: 10px;
        padding: 10px;
    }
    
    .vuln-center-dashboard {
        gap: 10px;
        padding: 10px;
    }
    
    .asset-dashboard {
        padding: 10px;
    }
}
