/* ========== RESET & GLOBAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0c12;
    font-family: 'Space Grotesk', sans-serif;
    color: #eef2ff;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Background Circuit Pattern with Animation */
.circuit-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 40%, rgba(0, 240, 255, 0.03) 2%, transparent 2.5%),
                      repeating-linear-gradient(45deg, rgba(0, 240, 255, 0.02) 0px, rgba(0, 240, 255, 0.02) 2px, transparent 2px, transparent 8px);
    background-size: 40px 40px, 16px 16px;
    pointer-events: none;
    z-index: -2;
    animation: circuitPulse 12s infinite alternate;
}

@keyframes circuitPulse {
    0% { opacity: 0.4; background-position: 0 0, 0 0; }
    100% { opacity: 0.8; background-position: 20px 20px, 30px 30px; }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-radial-gradient(circle at 20% 30%, rgba(0,0,0,0.2), rgba(0,0,0,0.1) 2px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

/* ========== TYPOGRAPHY & UTILS ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.cyan-text {
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0,240,255,0.3);
}

.section-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00f0ff;
    background: rgba(0,240,255,0.1);
    padding: 4px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 16px;
    border: 1px solid rgba(0,240,255,0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 30%, #00f0ff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ========== NAVBAR ========== */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    backdrop-filter: blur(16px);
    background: rgba(10, 12, 18, 0.7);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-cyan {
    color: #00f0ff;
}

.logo-white {
    color: #fff;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: #00f0ff;
    border-radius: 50%;
    margin-left: 4px;
    box-shadow: 0 0 8px #00f0ff;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { opacity: 0.4; transform: scale(0.8);}
    100% { opacity: 1; transform: scale(1.2);}
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #b0b8d0;
    font-weight: 500;
    transition: 0.2s;
}

.nav-link:hover {
    color: #00f0ff;
}

.btn-glow {
    background: transparent;
    border: 1px solid #00f0ff;
    color: #00f0ff;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-glow:hover {
    background: #00f0ff;
    color: #0a0c12;
    box-shadow: 0 0 20px #00f0ff;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========== HERO ========== */
.hero {
    padding: 80px 0 60px;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,240,255,0.08);
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 24px;
    border: 1px solid rgba(0,240,255,0.3);
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: #00f0ff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00f0ff;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.3; transform: scale(0.8);}
    100% { opacity: 1; transform: scale(1.2);}
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-gradient {
    background: linear-gradient(120deg, #fff, #00f0ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-desc {
    color: #9aa4bf;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline {
    background: transparent;
    border: 1px solid #4a5b7a;
    padding: 12px 28px;
    border-radius: 40px;
    color: white;
    cursor: pointer;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00f0ff;
}

.cyber-sphere {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00f0ff20, #0a0c12);
    border-radius: 50%;
    filter: blur(40px);
    position: absolute;
    right: 10%;
    top: 20%;
}

.floating-cards {
    position: relative;
}

.float-card {
    background: rgba(18, 22, 35, 0.8);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: 20px;
    border-left: 3px solid #00f0ff;
    position: absolute;
    animation: float 4s infinite;
}

.card1 { top: 20px; right: -20px; animation-delay: 0s; }
.card2 { bottom: 40px; left: -30px; animation-delay: 1s; }
.card3 { top: 120px; left: 40px; animation-delay: 2s; }

@keyframes float {
    0% { transform: translateY(0px);}
    50% { transform: translateY(-12px);}
    100% { transform: translateY(0px);}
}

/* ========== DASHBOARD (Nuhey Style) ========== */
.dashboard-section {
    padding: 80px 0;
}

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

.dashboard-card {
    background: rgba(16, 20, 30, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 20px;
    border: 1px solid rgba(0,240,255,0.2);
    transition: all 0.3s;
}

.dashboard-card:hover {
    border-color: #00f0ff;
    box-shadow: 0 0 20px rgba(0,240,255,0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.chart-container {
    height: 200px;
    position: relative;
}

.metric-circle {
    position: relative;
    width: 120px;
    margin: 0 auto;
}

.progress-ring {
    transition: stroke-dashoffset 0.5s;
}

.metric-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
}

.kpi-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.kpi-icon {
    font-size: 2rem;
    color: #00f0ff;
}

/* ========== FEATURES ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(20, 24, 36, 0.6);
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.2s;
}

.feature-icon {
    font-size: 2.5rem;
    color: #00f0ff;
    margin-bottom: 20px;
}

/* ========== INSIGHT ========== */
.insight-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.insight-list li {
    list-style: none;
    margin: 16px 0;
}

.circuit-animation {
    width: 100%;
    height: 300px;
    background: repeating-linear-gradient(90deg, #00f0ff 0px, #00f0ff 2px, transparent 2px, transparent 20px);
    animation: slideCircuit 8s linear infinite;
}

@keyframes slideCircuit {
    0% { background-position: 0 0; }
    100% { background-position: 40px 0; }
}

/* ========== CONTACT ========== */
.contact-card-glow {
    background: linear-gradient(135deg, #0e1220, #07090f);
    padding: 48px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid rgba(0,240,255,0.2);
}

.contact-form {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.contact-form input {
    padding: 14px 20px;
    border-radius: 60px;
    background: #1a1f2e;
    border: none;
    color: white;
    width: 300px;
}

/* ========== FOOTER ========== */
footer {
    background: #05070c;
    padding: 48px 0 24px;
    margin-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid #1a1f2e;
}

.footer-links-col a {
    text-decoration: none;
    color: #fff;rm -rf .git
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero-container, .insight-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-form {
        flex-direction: column;
        align-items: center;
    }
    .hero-title {
        font-size: 2rem;
    }
}