/* ===================================
   Webbfabriken NOC - Professional CSS
   =================================== */

/* CSS Variables */
:root {
    --primary: #00d4ff;
    --primary-dark: #00a8cc;
    --secondary: #00ff88;
    --accent: #ff00ff;
    --success: #00ff88;
    --warning: #ffaa00;
    --danger: #ff4444;
    --critical: #ff0000;
    
    --dark: #0a0e1a;
    --dark-lighter: #0f1420;
    --dark-blue: #0d1929;
    --gray-900: #1a1f2e;
    --gray-800: #252b3b;
    --gray-700: #3a4150;
    --gray-600: #515869;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    --gradient-tech: linear-gradient(135deg, #0d1929 0%, #1a1f2e 50%, #0d1929 100%);
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    
    --font-mono: 'Space Grotesk', 'Courier New', monospace;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius: 8px;
    --radius-lg: 12px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-300);
    background: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-mono);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    color: var(--gray-400);
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 212, 255, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.2);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--white);
}

.logo:hover {
    color: var(--primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.logo strong {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-400);
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--primary);
    color: var(--dark) !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    background: var(--gradient-tech);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 10s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.data-stream {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-stream span {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    animation: data-flow 3s linear infinite;
}

.data-stream span:nth-child(1) { left: 10%; height: 100px; animation-delay: 0s; }
.data-stream span:nth-child(2) { left: 30%; height: 150px; animation-delay: 0.5s; }
.data-stream span:nth-child(3) { left: 50%; height: 120px; animation-delay: 1s; }
.data-stream span:nth-child(4) { left: 70%; height: 180px; animation-delay: 1.5s; }
.data-stream span:nth-child(5) { left: 90%; height: 140px; animation-delay: 2s; }

@keyframes data-flow {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--success);
    border-radius: 999px;
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.status-badge.pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.8); }
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--white) 0%, var(--primary) 50%, var(--white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Status Section */
.status-section {
    padding: 100px 0;
    background: var(--dark-blue);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
}

.status-overview {
    margin-bottom: 3rem;
}

.overall-status {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--success);
    border-radius: var(--radius-lg);
}

.overall-status.operational {
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--success);
}

.overall-status.degraded {
    background: rgba(255, 170, 0, 0.05);
    border-color: var(--warning);
}

.overall-status.outage {
    background: rgba(255, 68, 68, 0.05);
    border-color: var(--danger);
}

.status-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon svg {
    width: 100%;
    height: 100%;
    color: var(--success);
}

.status-text h3 {
    margin-bottom: 0.25rem;
}

.status-text p {
    margin: 0;
}

.last-updated {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.status-group {
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-800);
}

.status-group h4 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-800);
}

.status-item:last-child {
    border-bottom: none;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.status-indicator.operational {
    background: var(--success);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.status-indicator.degraded {
    background: var(--warning);
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
}

.status-indicator.outage {
    background: var(--danger);
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.status-name {
    flex: 1;
    color: var(--gray-300);
    font-size: 0.95rem;
}

.status-value {
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Monitoring Section */
.monitoring {
    padding: 100px 0;
    background: var(--dark);
}

.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.monitor-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
}

.monitor-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.monitor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.monitor-header h3 {
    font-size: 1rem;
    color: var(--gray-300);
}

.monitor-status {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 136, 0.1);
    color: var(--success);
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.monitor-chart {
    height: 150px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.circular-progress {
    position: relative;
    width: 100px;
    height: 100px;
}

.circular-progress svg {
    width: 100%;
    height: 100%;
}

.progress-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    gap: 0.5rem;
}

.bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    position: relative;
    min-height: 20px;
}

.bar-value {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--primary);
}

.response-times {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem 0;
}

.response-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.response-label {
    width: 40px;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.response-bar {
    flex: 1;
    height: 6px;
    background: var(--gray-800);
    border-radius: 3px;
    overflow: hidden;
}

.response-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.response-value {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    width: 50px;
    text-align: right;
}

.monitor-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-800);
}

.monitor-stats .stat {
    text-align: center;
}

.monitor-stats .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
}

.monitor-stats .stat-value {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.monitoring-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.feature h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--gray-500);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--dark-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.service-icon {
    width: 50px;
    height: 50px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-400);
    font-size: 0.95rem;
}

.service-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Uptime Section */
.uptime {
    padding: 100px 0;
    background: var(--dark);
}

.uptime-content {
    display: grid;
    gap: 3rem;
}

.uptime-chart-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.uptime-main {
    text-align: center;
}

.uptime-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}

.uptime-circle svg {
    width: 100%;
    height: 100%;
}

.uptime-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.percentage {
    font-size: 3rem;
    font-weight: 700;
    color: var(--success);
    font-family: var(--font-mono);
}

.percent-sign {
    font-size: 1.5rem;
    color: var(--success);
}

.uptime-details {
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-800);
}

.uptime-stat {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-800);
}

.uptime-stat:last-child {
    border-bottom: none;
}

.uptime-label {
    color: var(--gray-500);
}

.uptime-data {
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-mono);
}

.sla-levels {
    margin-top: 3rem;
}

.sla-levels h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.sla-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sla-item {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.sla-item.featured {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
}

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

.sla-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-800);
}

.sla-name {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray-400);
}

.sla-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-mono);
}

.sla-item p {
    margin-bottom: 1rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.sla-item ul {
    list-style: none;
    text-align: left;
}

.sla-item li {
    padding: 0.25rem 0;
    color: var(--gray-400);
    font-size: 0.875rem;
    padding-left: 1rem;
    position: relative;
}

.sla-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
}

.uptime-history {
    margin-top: 3rem;
}

.uptime-history h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.history-chart {
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-800);
}

.history-days {
    display: flex;
    gap: 2px;
    justify-content: space-between;
}

.history-day {
    flex: 1;
    height: 40px;
    background: var(--success);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.history-day:hover {
    transform: scaleY(1.2);
}

.history-day.degraded {
    background: var(--warning);
}

.history-day.outage {
    background: var(--danger);
}

.history-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-dot.operational {
    background: var(--success);
}

.legend-dot.degraded {
    background: var(--warning);
}

.legend-dot.outage {
    background: var(--danger);
}

/* Support Info Section */
.support-info {
    padding: 100px 0;
    background: var(--dark-blue);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.support-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.support-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius);
}

.support-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.support-card h3 {
    margin-bottom: 1rem;
}

.support-hours {
    margin: 1.5rem 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-800);
}

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

.hours-row span {
    color: var(--gray-500);
}

.hours-row strong {
    color: var(--primary);
}

.support-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    font-style: italic;
}

.contact-methods {
    text-align: left;
}

.contact-method {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-800);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method strong {
    display: block;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.contact-method a {
    color: var(--primary);
}

.response-levels {
    margin-top: 1rem;
}

.response-level {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-800);
}

.response-level:last-child {
    border-bottom: none;
}

.level-priority {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.level-priority.critical {
    background: rgba(255, 0, 0, 0.1);
    color: var(--critical);
}

.level-priority.high {
    background: rgba(255, 68, 68, 0.1);
    color: var(--danger);
}

.level-priority.medium {
    background: rgba(255, 170, 0, 0.1);
    color: var(--warning);
}

.level-priority.low {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
}

.level-time {
    color: var(--gray-400);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark);
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content {
    text-align: center;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-bottom: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.contact-card.primary {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius);
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card p {
    margin: 0;
    line-height: 1.8;
}

.contact-card strong {
    color: var(--gray-300);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--gray-400);
    padding: 60px 0 20px;
    border-top: 1px solid var(--gray-800);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.footer-description {
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-500);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--gray-500);
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-legal span {
    color: var(--gray-600);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .uptime-chart-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        border-top: 1px solid rgba(0, 212, 255, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .status-grid,
    .monitoring-grid,
    .services-grid,
    .sla-grid,
    .support-grid,
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}