
body {
  margin: 0;
  padding: 0;
  background: #101b13;
  font-family: 'Fira Mono', 'Consolas', 'Menlo', monospace;
  color: #a8ff60;
  min-height: 100vh;
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}

header {
  background: #071009;
  padding: 2.2rem 1rem 1.2rem 1rem;
  text-align: center;
  border-bottom: 2px solid #14f782;
  box-shadow: 0 2px 20px #2aef3c1c;
}

.logo-link {
  text-decoration: none;
  display: inline-block;
}
.logo-link:hover .logo {
  color: #38ffb9;
  text-shadow: 0 0 18px #38ffb9;
}

.logo {
  font-size: 2.4rem;
  letter-spacing: 2px;
  color: #72ffb5;
  text-shadow: 0 0 14px #21e374, 0 0 5px #0b3c26;
  font-weight: 900;
  margin-bottom: 0.2rem;
  animation: flicker 3s infinite;
}

.slogan {
  font-size: 1.18rem;
  color: #b1ffcd;
  text-shadow: 0 0 4px #16b678;
  margin-top: 0.5rem;
}

.main-nav {
  margin: 1.2rem auto 0 auto;
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: #88ffd6;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-decoration: none;
  padding: 4px 11px;
  border-radius: 7px;
  position: relative;
  transition: color 0.3s;
}
.main-nav a.active,
.main-nav a:hover {
  background: #10251c;
  color: #21e374;
  box-shadow: 0 0 9px #1fff9c44;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: #00ff00;
  transition: width 0.3s ease;
}
.main-nav a:hover::after {
  width: 100%;
}

main section {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
}

ul {
  text-align: left;
  display: inline-block;
  margin: 1rem auto;
}

.price {
  background: #23e754;
  color: #09190a;
  font-weight: 700;
  border-radius: 7px;
  padding: 2px 14px;
  margin-right: 14px;
  box-shadow: 0 0 6px #15ee70ad;
  font-family: inherit;
  font-size: 1rem;
}

.cta-button,
.services-link {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #38ffb9 20%, #0e5036 100%);
  color: #131f18;
  border: none;
  border-radius: 12px;
  font-size: 1.14rem;
  padding: 1rem 2.4rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 20px #22e08488;
  text-decoration: none;
  transition: background 0.16s, color 0.16s;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px #aaffd1;
  display: inline-block;
}

.cta-button:hover {
  background: #19e889;
  color: #01371b;
}

footer {
  background: #0b1b13;
  color: #6fffa2;
  text-align: center;
  font-size: 1.01rem;
  padding: 1.1rem 1rem 1.4rem 1rem;
  margin-top: 2.2rem;
  border-radius: 0 0 13px 13px;
  letter-spacing: 1.5px;
  box-shadow: 0 -2px 12px #12f5841c;
}

.project-img, .service-icon {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 8px #12f58455;
}

.flex-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.text-col {
  flex: 1 1 60%;
  min-width: 280px;
}

.faq ul li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

@keyframes flicker {
  0%, 100% { text-shadow: 0 0 4px #0f0, 0 0 8px #0f0, 0 0 12px #0f0; }
  50% { text-shadow: 0 0 2px #090, 0 0 4px #090, 0 0 6px #090; }
}

@media (min-width: 768px) {
  body::before,
  body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #00ff88, transparent, #00ff88);
    opacity: 0.4;
    z-index: 5;
    pointer-events: none;
  }

  body::before {
    left: 1rem;
    transform: skewY(-4deg);
    transform-origin: left;
  }

  body::after {
    right: 1rem;
    transform: skewY(4deg);
    transform-origin: right;
  }
}

.site-logo {
  max-height: 80px;
  margin-bottom: 0.5rem;
}

.site-logo {
  max-height: 80px;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 4px #00ff88);
}

.header-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
}

.site-logo {
  max-height: 60px;
  margin: 0;
}

.contact-info {
  text-align: center;
  margin-top: 2rem;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  line-height: 2rem;
  font-size: 1.1rem;
  color: #adffd4;
}
.contact-info li strong {
  color: #58ff9b;
}

.contact-info {
  text-align: center;
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  max-width: 500px;
  border: 2px solid #18f385;
  border-radius: 12px;
  background-color: rgba(13, 26, 19, 0.8);
  box-shadow: 0 0 18px #13ff9266;
}

html {
  scroll-behavior: smooth;
}
.highlight-contact {
  box-shadow: 0 0 28px #29ffb9, 0 0 18px #29ffb9 inset;
  transition: box-shadow 0.3s ease;
}
