/* PathFinder Web Dashboard - Ultra Modern Minimalist */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #06B6D4;
    --secondary: #8B5CF6;
    --danger: #EF4444;
    --warning: #F59E0B;
    --success: #10B981;
    --bg: #09090B;
    --surface: #18181B;
    --surface-light: #27272A;
    --text: #FAFAFA;
    --text-muted: #A1A1AA;
    --border: #3F3F46;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== AUTHENTIFICATION ========== */

.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-container {
    max-width: 450px;
    width: 100%;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 400;
}

.auth-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px;
    max-width: 420px;
}

.auth-card h2 {
    color: var(--text);
    margin-bottom: 32px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg);
}

.btn {
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
}

.btn-primary:hover {
    background: #0891B2;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface);
    border-color: var(--text-muted);
}

.auth-switch {
    text-align: center;
    margin-top: 25px;
    color: var(--text-muted);
}

.auth-switch a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.error-message {
    background: var(--bg);
    border: 1px solid var(--danger);
    color: var(--danger);
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    display: none;
    font-size: 14px;
}

.error-message.show {
    display: block;
}

/* ========== NAVBAR ========== */

.navbar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-brand h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.5px;
}

.nav-menu-dashboard {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-back-site {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 16px;
}

.btn-back-site:hover {
    background: var(--bg);
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-2px);
}

.nav-dashboard-link {
    padding: 10px 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-dashboard-link:hover {
    color: var(--text);
    background: var(--bg);
}

.nav-dashboard-link.active {
    color: var(--bg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    font-weight: 600;
}

.nav-badge {
    display: inline-block;
    background: var(--danger);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-user span {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

#user-role-badge {
    background: linear-gradient(135deg, var(--warning) 0%, var(--danger) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== ADMIN PANEL ========== */

.admin-panel {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px 48px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.admin-selector {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-selector label {
    color: var(--warning);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.user-select {
    flex: 1;
    max-width: 400px;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-select:hover {
    border-color: var(--primary);
}

.user-select:focus {
    outline: none;
    border-color: var(--warning);
    background: var(--surface);
}

.user-select option {
    background: var(--surface);
    color: var(--text);
    padding: 10px;
}

/* ========== DASHBOARD ========== */

.dashboard-container {
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s ease;
}

.stat-card:hover {
    background: var(--surface-light);
    border-color: var(--primary);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.stat-content h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -1px;
    color: var(--text);
}

.stat-content p {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.stat-primary .stat-icon { color: var(--primary); }
.stat-success .stat-icon { color: var(--success); }
.stat-danger .stat-icon { color: var(--danger); }
.stat-warning .stat-icon { color: var(--warning); }

/* ========== GRAPHIQUES ========== */

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.chart-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.2s ease;
}

.chart-card:hover {
    border-color: var(--primary);
}

.chart-card h2 {
    color: var(--text);
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* ========== LISTE DES SCANS ========== */

.scans-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.section-header h2 {
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
}

.section-header .btn {
    width: auto;
    padding: 10px 20px;
    font-size: 14px;
}

.scans-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scan-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.scan-item:hover {
    background: var(--surface-light);
    border-color: var(--primary);
}

.scan-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.scan-item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.3px;
}

.scan-item-date {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.scan-item-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.scan-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
}

.scan-stat-danger { color: var(--danger); }
.scan-stat-warning { color: var(--warning); }
.scan-stat-success { color: var(--success); }

/* ========== MODAL ========== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 2px solid var(--dark);
}

.modal-header h2 {
    color: var(--primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text);
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.modal-close:hover {
    background: var(--dark);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
}

.host-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.host-card:hover {
    background: var(--surface-light);
    border-color: var(--primary);
}

.host-card.risk-critical { border-left: 3px solid var(--danger); }
.host-card.risk-high { border-left: 3px solid var(--warning); }
.host-card.risk-medium { border-left: 3px solid var(--primary); }
.host-card.risk-low { border-left: 3px solid var(--success); }

.host-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.host-ip {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.host-os {
    color: var(--text-muted);
}

.host-ports {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.port-badge {
    background: var(--surface-light);
    color: var(--text);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: all 0.2s;
    display: inline-block;
}

.port-badge:hover {
    background: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .dashboard-container {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ========== LOADING ========== */

.loading {
    text-align: center;
    padding: 80px 40px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 400;
}

.loading:after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    margin: 24px auto 0;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* ========== SCROLLBAR CUSTOM ========== */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ========== PROFILE PAGE ========== */

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-header {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.profile-avatar-section {
    display: flex;
    align-items: center;
    gap: 32px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    font-weight: 700;
    color: var(--bg);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    flex-shrink: 0;
}

.profile-header-info h1 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.profile-header-info p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.profile-role {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-role.admin {
    background: linear-gradient(135deg, var(--warning) 0%, var(--danger) 100%);
    color: white;
    border: none;
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}

.profile-tab {
    padding: 16px 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    bottom: -2px;
}

.profile-tab:hover {
    color: var(--text);
    background: var(--surface);
}

.profile-tab.active {
    color: var(--text);
    border-bottom-color: var(--primary);
    background: linear-gradient(180deg, transparent 0%, rgba(6, 182, 212, 0.1) 100%);
}

/* Profile Content */
.profile-content {
    min-height: 500px;
}

.profile-tab-content {
    display: none;
}

.profile-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.profile-tab-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

/* Profile Stats Grid */
.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.profile-stat-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.profile-stat-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.profile-stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.profile-stat-value {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.profile-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Profile Form */
.profile-form {
    max-width: 600px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.profile-form .form-group {
    margin-bottom: 24px;
}

.profile-form .btn {
    width: auto;
    padding: 14px 32px;
}

/* Activity Logs */
.activity-logs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-log-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.activity-log-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: -5px 5px 20px rgba(6, 182, 212, 0.15);
}

.activity-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.activity-date {
    font-size: 13px;
    color: var(--text-muted);
}

.activity-details {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

/* ========== TICKETS PAGE ========== */

.tickets-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tickets-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tickets-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.tickets-header p {
    color: var(--text-muted);
    font-size: 15px;
}

.tickets-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 20px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--text);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    color: var(--bg);
    font-weight: 600;
}

.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ticket-item {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ticket-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.2);
}

.ticket-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.ticket-item-title {
    flex: 1;
}

.ticket-item-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.ticket-item-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.ticket-id-badge {
    padding: 4px 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.ticket-status-badge,
.ticket-priority-badge,
.ticket-category-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.ticket-status-badge.open { background: #10B981; color: white; }
.ticket-status-badge.in_progress { background: #3B82F6; color: white; }
.ticket-status-badge.waiting_user { background: #F59E0B; color: white; }
.ticket-status-badge.resolved { background: #10B981; color: white; }
.ticket-status-badge.closed { background: #6B7280; color: white; }

.ticket-priority-badge.low { background: rgba(16, 185, 129, 0.2); color: #10B981; }
.ticket-priority-badge.medium { background: rgba(59, 130, 246, 0.2); color: #3B82F6; }
.ticket-priority-badge.high { background: rgba(245, 158, 11, 0.2); color: #F59E0B; }
.ticket-priority-badge.urgent { background: rgba(239, 68, 68, 0.2); color: #EF4444; }

.ticket-category-badge {
    background: rgba(6, 182, 212, 0.2);
    color: var(--primary);
}

.ticket-item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

.ticket-message-count {
    display: flex;
    align-items: center;
    gap: 6px;
}

.unread-badge {
    background: var(--danger);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

/* Modal Ticket Large */
.modal-large .modal-content {
    max-width: 900px;
}

.ticket-modal-content {
    display: flex;
    flex-direction: column;
    max-height: 85vh;
}

.ticket-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.ticket-detail-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ticket-initial-message {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.ticket-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ticket-message-author {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.ticket-message-date {
    font-size: 12px;
    color: var(--text-muted);
}

.ticket-message-content {
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Chat Messages */
.ticket-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.chat-message.admin {
    flex-direction: row-reverse;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bg);
    font-weight: 700;
    flex-shrink: 0;
}

.chat-message.admin .chat-avatar {
    background: linear-gradient(135deg, var(--warning) 0%, var(--danger) 100%);
}

.chat-bubble {
    max-width: 70%;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
}

.chat-message.admin .chat-bubble {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 4px;
    border-color: var(--primary);
}

.chat-bubble-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.chat-bubble-author {
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
}

.chat-bubble-time {
    font-size: 11px;
    color: var(--text-muted);
}

.chat-bubble-message {
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
}

/* Chat Input */
.ticket-chat-input {
    border-top: 2px solid var(--border);
    padding-top: 20px;
    margin-top: 20px;
}

.ticket-chat-input textarea {
    width: 100%;
    padding: 14px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 12px;
}

.ticket-chat-input textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.chat-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.status-select {
    padding: 10px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
}

select:focus {
    outline: none;
    border-color: var(--primary);
}

textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
}

textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* ========== GUIDE PAGE ========== */

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.guide-welcome {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 48px;
    text-align: center;
}

.guide-welcome h1 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.guide-welcome p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.guide-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.progress-step {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.progress-step.completed {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    color: var(--bg);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.progress-line {
    flex: 1;
    height: 3px;
    background: var(--border);
    max-width: 80px;
}

.guide-section {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.guide-section:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
}

.guide-section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.guide-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--bg);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
    flex-shrink: 0;
}

.guide-section-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.guide-section-header p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Download Cards */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.download-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.download-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.25);
}

.download-card.featured {
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    transform: scale(1.05);
}

.download-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.download-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--warning) 0%, var(--danger) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.download-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.download-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.download-card > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

.download-btn {
    width: 100%;
    margin-bottom: 20px;
}

.download-requirements {
    background: var(--surface);
    border-radius: 12px;
    padding: 16px;
    text-align: left;
}

.download-requirements strong {
    color: var(--text);
    font-size: 13px;
    display: block;
    margin-bottom: 12px;
}

.download-requirements ul {
    list-style: none;
    padding: 0;
}

.download-requirements li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.download-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Installation Tabs */
.installation-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.install-tab {
    flex: 1;
    padding: 14px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.install-tab:hover {
    border-color: var(--primary);
    color: var(--text);
}

.install-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    color: var(--bg);
    font-weight: 600;
}

.installation-content {
    background: var(--bg);
    border-radius: 16px;
    padding: 32px;
}

.install-instructions {
    display: none;
}

.install-instructions.active {
    display: block;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.instruction-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.instruction-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.instruction-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.instruction-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.instruction-content code {
    background: var(--surface);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--primary);
    font-family: 'Monaco', 'Courier New', monospace;
}

/* Scan Process Visual */
.scan-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg);
    border-radius: 16px;
}

.scan-step-visual {
    flex: 1;
    text-align: center;
}

.visual-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.scan-step-visual h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.scan-step-visual p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.visual-arrow {
    font-size: 32px;
    color: var(--primary);
    flex-shrink: 0;
    padding: 0 12px;
}

.scan-details-box {
    background: var(--bg);
    border-radius: 16px;
    padding: 32px;
}

.scan-details-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
}

.scan-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.scan-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.scan-detail-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.detail-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.scan-detail-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.scan-detail-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Results Options */
.results-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.result-option {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.result-option:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.2);
}

.result-option.featured {
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
}

.result-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--warning) 0%, var(--danger) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
}

.result-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.result-option h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.result-option > p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.result-option ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.result-option li {
    font-size: 14px;
    color: var(--text);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.result-option li:last-child {
    border-bottom: none;
}

/* Guide Help */
.guide-help {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.help-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.help-card p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.help-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.help-actions .btn {
    width: auto;
    padding: 14px 28px;
}

/* ========== LANDING PAGE ========== */

.landing-page {
    min-height: 100vh;
    background: var(--bg);
}

/* Navigation Landing */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary)) 1;
}

.landing-nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-logo h1 {
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.landing-nav .btn {
    width: auto;
    padding: 10px 24px;
    font-size: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
}

.landing-nav .btn:hover {
    background: linear-gradient(135deg, #0891B2 0%, #7C3AED 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    background: 
        radial-gradient(ellipse at top left, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        var(--bg);
}

.hero-content {
    max-width: 900px;
    text-align: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -3px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #0891B2 0%, #7C3AED 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

.hero-buttons .btn-secondary {
    background: transparent;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    transition: left 0.3s ease;
}

.hero-buttons .btn-secondary:hover::before {
    left: 0;
}

.hero-buttons .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    padding-top: 40px;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent) 1;
}

.hero-stat {
    text-align: center;
    transition: transform 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
}

.hero-stat-number {
    font-size: 48px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.5));
}

.hero-stat:nth-child(1) .hero-stat-number {
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.6));
}

.hero-stat:nth-child(2) .hero-stat-number {
    filter: drop-shadow(0 0 20px rgba(100, 137, 229, 0.6));
}

.hero-stat:nth-child(3) .hero-stat-number {
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
}

.hero-stat-label {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 120px 40px;
    background: var(--bg);
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    background: var(--surface-light);
    border-color: transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.6));
}

.feature-card:nth-child(even):hover .feature-icon {
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 120px 40px;
    background: 
        radial-gradient(ellipse at center, rgba(6, 182, 212, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%),
        var(--bg);
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent) 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.cta .btn-large {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

.cta .btn-large:hover {
    background: linear-gradient(135deg, #0891B2 0%, #7C3AED 100%);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.5);
}

.cta p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

/* Footer */
.landing-footer {
    padding: 60px 40px;
    background: var(--surface);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent) 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-made {
    color: var(--text-muted);
    font-size: 13px;
    opacity: 0.6;
}

/* Stats Section */
.stats-section {
    padding: 120px 40px;
    background: var(--bg);
}

.stats-section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-big-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-big-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-big-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: transparent;
    background: var(--surface-light);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.3);
}

.stat-big-card:nth-child(even):hover {
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.stat-big-number {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.stat-big-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.stat-big-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.stat-progress {
    margin-top: 20px;
    height: 8px;
    background: var(--bg);
    border-radius: 10px;
    overflow: hidden;
}

.stat-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dashboard Preview Section */
.dashboard-preview {
    padding: 120px 40px;
    background: 
        radial-gradient(ellipse at top right, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        var(--bg);
}

.dashboard-preview-content {
    max-width: 1400px;
    margin: 0 auto;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.preview-large {
    grid-column: span 8;
}

.preview-medium {
    grid-column: span 6;
}

.preview-small {
    grid-column: span 4;
}

.preview-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.preview-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.25);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.preview-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.preview-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-badge.live {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.realtime-metrics {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

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

.metric-item {
    text-align: center;
    padding: 20px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2);
}

.metric-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.metric-value {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.metric-trend {
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

.metric-trend.up {
    color: var(--success);
}

.metric-trend.up::before {
    content: '↗ ';
}

.metric-trend.down {
    color: var(--success);
}

.metric-trend.down::before {
    content: '↘ ';
}

/* Security Timeline Section */
.security-timeline {
    padding: 120px 40px;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.security-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    transform: translateX(-50%);
    opacity: 0.2;
}

.timeline-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline {
    position: relative;
    margin-top: 80px;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--bg);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    z-index: 2;
}

.timeline-card {
    flex: 1;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-card {
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
}

.timeline-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.2);
}

.timeline-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.timeline-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.timeline-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.timeline-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.timeline-stats span {
    padding: 8px 16px;
    background: var(--surface);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

/* Comparison Section */
.comparison-section {
    padding: 120px 40px;
    background: var(--bg);
}

.comparison-content {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-table {
    margin-top: 60px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    align-items: center;
}

.comparison-header {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 24px;
    border-bottom: 2px solid var(--border);
}

.comparison-header div {
    text-align: center;
    font-weight: 600;
    color: var(--text);
}

.comparison-row {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: rgba(6, 182, 212, 0.05);
}

.comparison-feature {
    padding-right: 20px;
}

.comparison-feature strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.comparison-feature span {
    font-size: 13px;
    color: var(--text-muted);
}

.comparison-competitor,
.comparison-pathfinder {
    text-align: center;
    font-size: 15px;
    color: var(--text);
    padding: 12px;
}

.comparison-pathfinder {
    font-weight: 600;
}

.comparison-pathfinder.highlight {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 700;
}

.competitor-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.comparison-pathfinder .competitor-name {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* How It Works IMMERSIVE Section */
.how-it-works-immersive {
    padding: 120px 40px;
    background: 
        radial-gradient(ellipse at top, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        var(--surface);
}

.how-it-works-content {
    max-width: 1400px;
    margin: 0 auto;
}

.process-flow {
    margin-top: 80px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.process-step.reverse {
    flex-direction: row-reverse;
}

.process-visual,
.process-info {
    flex: 1;
}

/* Process Screen Simulator */
.process-screen {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.process-screen:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 30px 80px rgba(6, 182, 212, 0.3);
}

.process-screen.wide {
    transform: scale(1.1);
}

.screen-header {
    background: var(--surface);
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.screen-dots {
    display: flex;
    gap: 6px;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
}

.screen-dots span:nth-child(1) {
    background: #EF4444;
}

.screen-dots span:nth-child(2) {
    background: #F59E0B;
}

.screen-dots span:nth-child(3) {
    background: #10B981;
}

.screen-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.screen-body {
    padding: 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Installation Screen */
.install-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

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

.install-progress {
    width: 100%;
    max-width: 300px;
    height: 8px;
    background: var(--surface);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.install-bar {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.install-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.install-platforms {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.platform-badge {
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

/* Scan Screen with Radar */
.scan-screen {
    position: relative;
}

.scan-radar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    position: relative;
    margin: 0 auto 30px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary));
    transform-origin: left center;
    animation: radar-spin 3s linear infinite;
}

@keyframes radar-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.radar-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: radar-pulse 2s infinite;
    box-shadow: 0 0 15px var(--primary);
}

@keyframes radar-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.radar-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--primary);
}

.scan-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.scan-stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* Dashboard Preview Mini */
.dashboard-preview-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
}

.mini-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.mini-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

.mini-chart,
.mini-pie {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
}

.mini-pie {
    border-radius: 50%;
}

.mini-card span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.mini-card.alert {
    border-color: var(--danger);
}

.mini-card.success {
    border-color: var(--success);
}

.alert-icon,
.success-icon {
    font-size: 40px;
    margin-bottom: 8px;
}

/* Actions Screen */
.actions-screen {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.action-item:hover {
    transform: translateX(5px);
    border-color: var(--primary);
}

.action-item.critical {
    border-left: 4px solid var(--danger);
}

.action-item.warning {
    border-left: 4px solid var(--warning);
}

.action-item.success {
    border-left: 4px solid var(--success);
}

.action-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.action-text {
    flex: 1;
}

.action-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.action-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.action-btn {
    padding: 8px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    color: var(--bg);
}

/* Process Info */
.process-info {
    position: relative;
}

.process-number {
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
}

.process-info h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.process-info p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.process-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.process-features span {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    padding: 10px 16px;
    background: var(--bg);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.process-features span:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

/* Process Connector */
.process-connector {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.connector-line {
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    opacity: 0.3;
}

.connector-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    animation: connector-pulse 2s infinite;
    box-shadow: 0 0 20px var(--primary);
}

@keyframes connector-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Process CTA */
.process-cta {
    margin-top: 100px;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 24px;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
}

.process-cta h3 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.process-cta p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cta-demo-btn {
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

.cta-demo-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.5);
}

/* Pricing Section */
.pricing-section {
    padding: 120px 40px;
    background: var(--bg);
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.2);
}

.pricing-card-featured {
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--warning) 0%, var(--danger) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 18px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text);
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 40px;
    background: 
        radial-gradient(ellipse at top, rgba(6, 182, 212, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.1) 0%, transparent 60%),
        var(--surface);
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    font-size: 48px;
    width: 60px;
    height: 60px;
    background: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
}

.testimonial-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.testimonial-title {
    font-size: 14px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 120px 40px;
    background: var(--bg);
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(6, 182, 212, 0.15);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.faq-answer {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer Enhanced */
.landing-footer {
    padding: 80px 40px 40px;
    background: var(--surface);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent) 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

.footer-column p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    background: var(--bg);
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg) !important;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

/* Responsive Landing */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        display: none;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-large,
    .preview-medium,
    .preview-small {
        grid-column: span 1;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .process-step,
    .process-step.reverse {
        flex-direction: column;
    }
    
    .process-number {
        font-size: 48px;
        top: -30px;
    }
    
    .process-info h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: -1.5px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features {
        padding: 80px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta {
        padding: 80px 20px;
    }
    
    .cta h2 {
        font-size: 36px;
    }
    
    .landing-nav-content {
        padding: 16px 20px;
    }
    
    .stats-big-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .security-timeline::before {
        display: none;
    }
}

