:root {
  --clr-green: #00ff8c;
  --clr-pink: #ff2d92;
  --clr-bg: #0a0a0f;
  --clr-bg-alt: #101018;
  --clr-text: #e0e0e0;
  --clr-muted: #888;
  --font-mono: 'Fira Code', monospace;
  --font-sans: 'Roboto', sans-serif;
  --border-style: 1px solid rgba(0, 255, 140, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 100px 0; }

.scanlines {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0) 0px, rgba(0,0,0,0.3) 1px, rgba(0,0,0,0) 2px);
  pointer-events: none; z-index: 100;
}

.logo-glitch, .hero-title, .highlight strong {
  position: relative; 
  color: var(--clr-green);
  text-shadow: 0 0 5px rgba(0, 255, 140, 0.5);
}

.header {
  position: fixed; top: 0; left: 0;
  width: 100%;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-style);
  z-index: 50;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo-wrapper { line-height: 1; }
.logo-glitch { font-family: var(--font-mono); font-weight: 600; font-size: 24px; color: var(--clr-green); letter-spacing: 2px; }
.logo-tag { font-family: var(--font-mono); font-size: 12px; color: var(--clr-muted); }
.nav-links { display: flex; gap: 24px; font-family: var(--font-mono); }
.nav-links a { color: var(--clr-text); transition: .2s; }
.nav-links a:hover { color: var(--clr-green); text-shadow: 0 0 5px var(--clr-green); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { width: 25px; height: 2px; background: var(--clr-green); transition: .3s ease; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  text-align: center;
  border-bottom: var(--border-style);
}
.hero-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hero-title { font-family: var(--font-mono); font-size: 48px; color: var(--clr-text); margin-bottom: 20px; }
.hero-subtitle { font-size: 18px; color: var(--clr-muted); margin-bottom: 30px; max-width: 600px; margin-inline: auto; }
.btn {
  display: inline-block;
  background: transparent;
  border: var(--border-style);
  color: var(--clr-green);
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 16px;
  transition: .3s;
}
.btn:hover { background: rgba(0,255,140,0.1); box-shadow: 0 0 15px rgba(0,255,140,0.3); }
.hero-bottom-bar {
  display: flex; justify-content: space-between;
  border-top: var(--border-style);
  padding: 10px 5%;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--clr-muted);
}

.section-title { font-family: var(--font-mono); font-size: 28px; margin-bottom: 50px; color: var(--clr-green); }
.section-title span { color: var(--clr-pink); }

.services-grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}
.service-card {
    background: rgba(10,10,15,0.5); 
    padding: 25px; 
    border: var(--border-style); 
    position: relative; 
    transition: .3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 0 20px rgba(0,255,140,0.1); }
.card-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.card-header i { font-size: 24px; color: var(--clr-green); }
.card-header h3 { font-family: var(--font-mono); font-size: 18px; }
.service-card p { color: var(--clr-muted); margin-bottom: 15px; }
.price-tag { font-family: var(--font-mono); color: var(--clr-pink); text-align: right; }

.about-content { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: center; }
.about-text p { margin-bottom: 20px; color: var(--clr-text); }
.highlight { font-size: 18px; font-family: var(--font-mono); color: var(--clr-green); }
.about-stats { display: flex; flex-direction: column; gap: 20px; }
.stat-item {
  background: var(--clr-bg-alt);
  border: var(--border-style);
  padding: 20px;
  text-align: center;
}
.stat-number { font-family: var(--font-mono); font-size: 36px; color: var(--clr-green); font-weight: 600; }
.stat-label { font-size: 14px; color: var(--clr-muted); }

.contact-window {
    background: var(--clr-bg-alt);
    border: var(--border-style);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.contact-window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--clr-pink);
    padding: 8px 15px;
    color: var(--clr-bg);
    font-family: var(--font-mono);
    font-weight: 600;
}
.contact-window-header span {
    letter-spacing: 1px;
}
.window-controls {
    display: flex;
    gap: 8px;
}
.window-controls div {
    width: 12px;
    height: 12px;
    border: 2px solid var(--clr-bg);
}
.contact-window-body {
    padding: 30px;
}
.contact-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.contact-item {
  font-family: var(--font-mono);
  font-size: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contact-item i { margin-right: 15px; color: var(--clr-pink); }
.contact-item span { color: var(--clr-muted); margin-right: 10px; }
.contact-item a:hover { color: var(--clr-green); text-decoration: underline; }
.contact-footer {
  border-top: var(--border-style);
  padding-top: 20px;
  margin-top: 20px;
  text-align: center;
  color: var(--clr-muted);
}

.footer {
  border-top: var(--border-style);
  padding: 20px 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--clr-muted);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
  .nav-links { position: fixed; top: 70px; right: -100%; width: 250px; height: 100vh; background: var(--clr-bg); flex-direction: column; padding: 40px; text-align: center; gap: 30px; transition: .3s; }
  .nav-links.active { right: 0; }
  .burger { display: flex; }
  .hero-title { font-size: 36px; }
  .about-content { grid-template-columns: 1fr; }
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .logo-glitch::before, .logo-glitch::after,
  .hero-title::before, .hero-title::after,
  .highlight strong::before, .highlight strong::after {
    display: none;
  }
} 