:root {
    --dark-bg: #06080e;
    --card-dark: #0d121d;
    --card-border: rgba(255, 255, 255, 0.08);
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --text-muted: #64748b;
    --badge-green: #10b981;
    --border-radius-card: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: var(--dark-bg); color: var(--text-white); line-height: 1.5; overflow-x: hidden; position: relative; }
.container { max-width: 1350px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 240, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 240, 255, 0.6); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(0, 240, 255, 0.2); }
    50% { border-color: rgba(0, 240, 255, 0.5); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 240, 255, 0.3); }
    50% { text-shadow: 0 0 20px rgba(0, 240, 255, 0.6); }
}

@keyframes circuitDraw {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}

.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.animate-fadeInDown { animation: fadeInDown 0.8s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.8s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.8s ease forwards; }
.animate-fadeIn { animation: fadeIn 0.8s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.6s ease forwards; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-glow { animation: glow 3s ease-in-out infinite; }
.animate-borderGlow { animation: borderGlow 2s ease-in-out infinite; }
.animate-textGlow { animation: textGlow 2s ease-in-out infinite; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

.hidden { opacity: 0; }

.circuit-bg-wrapper { position: relative; background-color: var(--dark-bg); overflow: hidden; }
.circuit-pattern-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; opacity: 0.18; pointer-events: none; background-image: radial-gradient(#ffffff 1px, transparent 1px); background-size: 32px 32px; }
.circuit-svg-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.25; pointer-events: none; }

.top-bar { font-size: 11px; padding: 10px 0; color: var(--text-gray); border-bottom: 1px solid var(--card-border); position: relative; z-index: 3; }
.top-bar-flex { display: flex; justify-content: flex-end; gap: 24px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }

.navbar { position: sticky; top: 0; z-index: 1000; background: rgba(6, 8, 14, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--card-border); padding: 16px 0; }
.nav-flex { display: flex; align-items: center; justify-content: space-between; }
.logo-text { font-size: 18px; font-weight: 800; letter-spacing: 0.5px; }
.logo-sub { font-size: 9px; color: var(--text-muted); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-gray); font-size: 13px; font-weight: 500; transition: all 0.3s ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, #0066ff, #00f0ff); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--text-white); }

.btn-header { border: 1px solid var(--card-border); background: rgba(255, 255, 255, 0.05); color: var(--text-white); padding: 8px 16px; border-radius: 6px; font-size: 12px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
.btn-header:hover { background: rgba(0, 240, 255, 0.1); border-color: rgba(0, 240, 255, 0.3); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2); }

.tech-hero-bg {
    position: relative;
    background: linear-gradient(135deg, #06080e 0%, #0a1628 50%, #06080e 100%);
    overflow: hidden;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.tech-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 240, 255, 0.15) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.7;
    z-index: 1;
}

.tech-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(0, 240, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(13, 20, 35, 0.7) 0%, rgba(6, 8, 14, 0.95) 80%);
    z-index: 1;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-glow-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 102, 255, 0.2);
    top: -100px;
    left: -100px;
    animation: float-orb 8s ease-in-out infinite;
}

.hero-glow-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 240, 255, 0.15);
    bottom: -50px;
    right: 10%;
    animation: float-orb 6s ease-in-out infinite reverse;
}

.hero-glow-orb.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(0, 102, 255, 0.12);
    top: 40%;
    right: 30%;
    animation: float-orb 10s ease-in-out infinite;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.circuit-traces {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.45;
}

.circuit-traces path,
.about-circuit-svg path,
.services-circuit-svg path,
.cyber-circuit-svg path,
.contact-circuit-svg path,
.footer-circuit-svg path {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: circuitDrawLoop 6s ease-in-out infinite;
}

.circuit-traces path:nth-child(1) { animation-delay: 0s; }
.circuit-traces path:nth-child(2) { animation-delay: 0.5s; }
.circuit-traces path:nth-child(3) { animation-delay: 1s; }
.circuit-traces path:nth-child(4) { animation-delay: 1.5s; }
.circuit-traces path:nth-child(5) { animation-delay: 2s; }
.circuit-traces path:nth-child(6) { animation-delay: 2.5s; }

.about-circuit-svg path:nth-child(1) { animation-delay: 0.2s; }
.about-circuit-svg path:nth-child(2) { animation-delay: 0.7s; }
.about-circuit-svg path:nth-child(3) { animation-delay: 1.2s; }
.about-circuit-svg path:nth-child(4) { animation-delay: 1.7s; }

.services-circuit-svg path:nth-child(1) { animation-delay: 0.1s; }
.services-circuit-svg path:nth-child(2) { animation-delay: 0.5s; }
.services-circuit-svg path:nth-child(3) { animation-delay: 0.9s; }
.services-circuit-svg path:nth-child(4) { animation-delay: 1.3s; }
.services-circuit-svg path:nth-child(5) { animation-delay: 1.7s; }
.services-circuit-svg path:nth-child(6) { animation-delay: 2.1s; }
.services-circuit-svg path:nth-child(7) { animation-delay: 2.5s; }
.services-circuit-svg path:nth-child(8) { animation-delay: 2.9s; }
.services-circuit-svg path:nth-child(9) { animation-delay: 3.3s; }

.cyber-circuit-svg path:nth-child(1) { animation-delay: 0.2s; }
.cyber-circuit-svg path:nth-child(2) { animation-delay: 0.7s; }
.cyber-circuit-svg path:nth-child(3) { animation-delay: 1.2s; }
.cyber-circuit-svg path:nth-child(4) { animation-delay: 1.7s; }
.cyber-circuit-svg path:nth-child(5) { animation-delay: 2.2s; }
.cyber-circuit-svg path:nth-child(6) { animation-delay: 2.7s; }

.contact-circuit-svg path:nth-child(1) { animation-delay: 0.1s; }
.contact-circuit-svg path:nth-child(2) { animation-delay: 0.5s; }
.contact-circuit-svg path:nth-child(3) { animation-delay: 0.9s; }
.contact-circuit-svg path:nth-child(4) { animation-delay: 1.3s; }
.contact-circuit-svg path:nth-child(5) { animation-delay: 1.7s; }
.contact-circuit-svg path:nth-child(6) { animation-delay: 2.1s; }
.contact-circuit-svg path:nth-child(7) { animation-delay: 2.5s; }

.footer-circuit-svg path:nth-child(1) { animation-delay: 0.1s; }
.footer-circuit-svg path:nth-child(2) { animation-delay: 0.4s; }
.footer-circuit-svg path:nth-child(3) { animation-delay: 0.7s; }
.footer-circuit-svg path:nth-child(4) { animation-delay: 1.0s; }
.footer-circuit-svg path:nth-child(5) { animation-delay: 1.3s; }
.footer-circuit-svg path:nth-child(6) { animation-delay: 1.6s; }

@keyframes circuitDrawLoop {
    0% { stroke-dashoffset: 800; filter: drop-shadow(0 0 1px currentColor); }
    50% { stroke-dashoffset: 0; filter: drop-shadow(0 0 8px currentColor); }
    100% { stroke-dashoffset: -800; filter: drop-shadow(0 0 1px currentColor); }
}

.circuit-traces circle,
.about-circuit-svg circle,
.services-circuit-svg circle,
.cyber-circuit-svg circle,
.contact-circuit-svg circle,
.footer-circuit-svg circle {
    animation: circuitNodeAppear 0.6s ease forwards;
}

@keyframes circuitNodeAppear {
    0% { opacity: 0; transform: scale(0); filter: drop-shadow(0 0 2px currentColor); }
    50% { opacity: 1; transform: scale(1.5); filter: drop-shadow(0 0 10px currentColor); }
    100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 4px currentColor); }
}

.hero-content-layer {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero { padding: 90px 0 70px; position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.eyebrow { font-size: 11px; font-weight: 700; color: #00f0ff; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; width: 30px; height: 2px; background: linear-gradient(90deg, #0066ff, #00f0ff); }
.hero-title { font-size: 52px; font-weight: 800; line-height: 1.08; margin-bottom: 24px; text-transform: uppercase; letter-spacing: -1px; }
.hero-title span { 
    background: linear-gradient(135deg, #0066ff 0%, #00f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc { color: var(--text-gray); font-size: 15px; line-height: 1.7; margin-bottom: 35px; max-width: 540px; }

.hero-btns { display: flex; gap: 16px; margin-bottom: 45px; }
.btn-white { 
    background: linear-gradient(135deg, #0066ff 0%, #00f0ff 100%); 
    color: #ffffff; 
    padding: 14px 28px; 
    border-radius: 8px; 
    font-size: 13px; 
    font-weight: 700; 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    border: none;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
    transition: all 0.3s ease;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(0, 102, 255, 0.5); }
.btn-dark { 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    color: var(--text-white); 
    padding: 14px 28px; 
    border-radius: 8px; 
    font-size: 13px; 
    font-weight: 600; 
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-dark:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(0, 240, 255, 0.3); }

.hero-trust { display: flex; gap: 35px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08); }
.trust-box { display: flex; align-items: center; gap: 12px; }
.trust-box i { font-size: 20px; color: #00f0ff; }
.trust-box div { font-size: 11px; font-weight: 600; line-height: 1.3; color: var(--text-gray); }

.server-frame { 
    border-radius: 20px; 
    overflow: hidden; 
    border: 1px solid rgba(0, 240, 255, 0.2); 
    box-shadow: 
        0 0 40px rgba(0, 102, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.6);
    position: relative;
}
.server-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), transparent, rgba(0, 240, 255, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.server-frame img { width: 100%; display: block; object-fit: cover; }

.ribbon { border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); padding: 20px 0; background: rgba(0,0,0,0.4); position: relative; z-index: 2; }
.ribbon-flex { display: flex; justify-content: space-between; align-items: center; }
.ribbon-item { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-gray); }

.about-section { background: #e2e8f0; color: #0f172a; padding: 80px 0; position: relative; z-index: 2; overflow: hidden; }
.about-section::after { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background-image: radial-gradient(#94a3b8 1px, transparent 1px); background-size: 20px 20px; opacity: 0.3; pointer-events: none; }
.about-circuit-svg { position: absolute; top: 0; right: 0; width: 45%; height: 100%; z-index: 1; pointer-events: none; opacity: 1; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.about-eyebrow { font-size: 11px; font-weight: 700; color: #64748b; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.about-title { font-size: 32px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: #0f172a; }
.about-desc { font-size: 13px; color: #475569; margin-bottom: 24px; line-height: 1.6; }

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.about-card { background: #ffffff; padding: 18px; border-radius: 8px; border: 1px solid #cbd5e1; }
.about-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.about-card p { font-size: 11px; color: #64748b; }

.btn-about { background: #0f172a; color: #ffffff; padding: 10px 20px; border-radius: 6px; font-size: 12px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }

.services-section { padding: 90px 0; position: relative; z-index: 2; overflow: hidden; }
.services-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 28px 28px; opacity: 0.5; pointer-events: none; }
.services-circuit-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .sub { font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }
.section-header h2 { font-size: 30px; font-weight: 800; margin-top: 8px; text-transform: uppercase; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--card-dark); border: 1px solid var(--card-border); border-radius: var(--border-radius-card); padding: 28px; position: relative; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.service-card:hover { border-color: rgba(0, 240, 255, 0.3); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 240, 255, 0.1); }
.service-card:hover i { color: #00f0ff; transform: scale(1.1); }
.service-card i { transition: all 0.3s ease; }
.card-num { position: absolute; top: 24px; right: 24px; font-size: 12px; font-weight: 700; color: var(--text-muted); }
.service-card i { font-size: 26px; color: var(--text-white); margin-bottom: 18px; display: block; }
.service-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 12px; color: var(--text-gray); line-height: 1.5; margin-bottom: 20px; }
.service-card a { font-size: 11px; font-weight: 600; color: var(--text-white); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }

.cyber-section { padding: 80px 0; border-top: 1px solid var(--card-border); position: relative; z-index: 2; overflow: hidden; }
.cyber-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 24px 24px; opacity: 0.4; pointer-events: none; }
.cyber-circuit-svg { position: absolute; top: 0; right: 0; width: 50%; height: 100%; z-index: 1; pointer-events: none; opacity: 1; }
.cyber-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.shield-graphic { width: 180px; height: 180px; border-radius: 50%; border: 1px dashed rgba(0, 240, 255, 0.3); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: rgba(0, 240, 255, 0.02); animation: borderGlow 3s ease-in-out infinite; transition: all 0.3s ease; }
.shield-graphic:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(0, 240, 255, 0.2); }
.shield-graphic i { font-size: 60px; color: var(--text-white); animation: pulse 2s ease-in-out infinite; }

.dash-card { background: var(--card-dark); border: 1px solid var(--card-border); border-radius: 12px; padding: 24px; transition: all 0.3s ease; }
.dash-card:hover { border-color: rgba(0, 240, 255, 0.2); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.dash-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--card-border); padding-bottom: 14px; margin-bottom: 16px; font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.dash-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 12px; color: var(--text-gray); transition: all 0.3s ease; }
.dash-row:hover { background: rgba(255,255,255,0.02); padding-left: 8px; }
.badge-green { background: rgba(16, 185, 129, 0.15); color: var(--badge-green); padding: 4px 10px; border-radius: 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; animation: pulse 2s ease-in-out infinite; }

.contact-section { background: #e2e8f0; color: #0f172a; padding: 80px 0; position: relative; z-index: 2; overflow: hidden; }
.contact-section::after { content: ''; position: absolute; top: 0; left: 0; width: 35%; height: 100%; background-image: radial-gradient(#94a3b8 1px, transparent 1px); background-size: 20px 20px; opacity: 0.25; pointer-events: none; }
.contact-circuit-svg { position: absolute; top: 0; left: 0; width: 40%; height: 100%; z-index: 1; pointer-events: none; opacity: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.contact-info h3 { font-size: 28px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.contact-info p { font-size: 13px; color: #475569; margin-bottom: 24px; line-height: 1.5; }
.contact-details { list-style: none; font-size: 12px; font-weight: 600; }
.contact-details li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }

.form-box { background: #ffffff; padding: 30px; border-radius: 12px; border: 1px solid #cbd5e1; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-control { width: 100%; padding: 10px 14px; border-radius: 6px; border: 1px solid #cbd5e1; font-size: 12px; background: #f8fafc; color: #0f172a; }
.btn-submit { width: 100%; background: #07090e; color: #ffffff; border: none; padding: 12px; border-radius: 6px; font-size: 12px; font-weight: 700; cursor: pointer; text-transform: uppercase; margin-top: 10px; }

.footer { 
    background: linear-gradient(180deg, #0a1628 0%, #06080e 100%); 
    padding: 70px 0 0; 
    border-top: 1px solid rgba(0, 240, 255, 0.1); 
    font-size: 12px; 
    color: #ffffff; 
    position: relative; 
    z-index: 2; 
    overflow: hidden; 
}
.footer::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 30px 30px; opacity: 0.5; pointer-events: none; }
.footer-circuit-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; opacity: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; position: relative; z-index: 2; }
.footer-logo { font-weight: 800; font-size: 18px; margin-bottom: 12px; color: #ffffff; }
.footer-logo span { color: #00f0ff; }
.footer-desc { font-size: 12px; color: #94a3b8; max-width: 300px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #94a3b8; text-decoration: none; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.footer-social a:hover { background: rgba(0, 240, 255, 0.1); border-color: rgba(0, 240, 255, 0.3); color: #00f0ff; transform: translateY(-4px) scale(1.1); box-shadow: 0 5px 15px rgba(0, 240, 255, 0.2); }
.footer-col h5 { color: #ffffff; font-size: 13px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col p { margin-bottom: 10px; }
.footer-col p a { color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.footer-col p a:hover { color: #00f0ff; }
.footer-col p i { color: #00f0ff; margin-right: 8px; width: 14px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; position: relative; z-index: 2; }
.footer-bottom p { color: #64748b; font-size: 11px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #64748b; text-decoration: none; font-size: 11px; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #00f0ff; }

@media (max-width: 1024px) {
    .hero-grid, .about-grid, .services-grid, .cyber-grid, .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}