:root {
  --neon-pink: #ff2a6d;
  --neon-blue: #05d9e8;
  --neon-purple: #d300c5;
  --dark-bg: #0d0221;
  --text-light: #f8f8f8;
  --text-dim: #b8b8b8;
  --accent-yellow: #f9f002;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Courier New', monospace;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  padding-top: 80px;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(13, 2, 33, 0.95);
  border-bottom: 1px solid var(--neon-purple);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--neon-blue);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--neon-blue);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--neon-pink);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--neon-pink);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--neon-blue);
  margin: 5px;
  transition: all 0.3s ease;
}

section {
  padding: 4rem 2rem;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--neon-blue);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(13, 2, 33, 0.8), rgba(13, 2, 33, 0.9)), url('https://images.unsplash.com/photo-1583521214690-73421a1829a9?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--neon-purple), transparent);
  opacity: 0.3;
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue);
  line-height: 1.2;
}

.hero h1 span {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  color: var(--text-dim);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px var(--neon-pink);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px var(--neon-pink);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 15px var(--neon-blue);
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: var(--neon-blue);
  color: var(--dark-bg);
  box-shadow: 0 0 25px var(--neon-blue);
}

.about {
  background-color: rgba(5, 217, 232, 0.05);
}

.about-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 30px var(--neon-purple);
  transition: transform 0.5s;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--neon-blue);
  border-radius: 10px;
  top: -15px;
  left: -15px;
  z-index: -1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s;
  border: 1px solid rgba(211, 0, 197, 0.3);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(211, 0, 197, 0.3);
  border-color: var(--neon-purple);
}

.product-icon {
  font-size: 2.5rem;
  color: var(--neon-blue);
  margin-bottom: 1rem;
}

.product-card h3 {
  color: var(--neon-pink);
  margin-bottom: 1rem;
}

.prices {
  background-color: rgba(255, 42, 109, 0.05);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(13, 2, 33, 0.7);
  border: 1px solid var(--neon-blue);
}

.pricing-table th, .pricing-table td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--neon-blue);
}

.pricing-table th {
  background-color: rgba(5, 217, 232, 0.2);
  color: var(--neon-blue);
  font-weight: bold;
  text-transform: uppercase;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover {
  background-color: rgba(255, 42, 109, 0.1);
}

.price {
  color: var(--accent-yellow);
  font-weight: bold;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.feedback-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.feedback-slide {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  margin: 0 1rem;
  border: 1px solid var(--neon-purple);
  text-align: center;
  display: none;
}

.feedback-slide.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid var(--neon-blue);
}

.client-name {
  font-weight: bold;
  color: var(--neon-pink);
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--text-dim);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot.active {
  background-color: var(--neon-blue);
}

.faq-item {
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--neon-purple);
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem;
  background-color: rgba(211, 0, 197, 0.1);
  color: var(--neon-blue);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
}

.faq-question.active::after {
  content: '-';
}

.faq-answer {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer.show {
  padding: 1.2rem;
  max-height: 500px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--neon-blue);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--neon-blue);
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--neon-purple);
  border-radius: 5px;
  color: var(--text-light);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue);
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  padding: 1rem;
  border-top: 1px solid var(--neon-purple);
  margin-top: 3rem;
}

footer {
  background-color: rgba(13, 2, 33, 0.95);
  padding: 3rem 2rem;
  border-top: 1px solid var(--neon-purple);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--neon-blue);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-links h3 {
  color: var(--neon-pink);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--neon-blue);
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--text-dim);
}

.contact-info i {
  color: var(--neon-blue);
  margin-right: 0.5rem;
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(211, 0, 197, 0.3);
  color: var(--text-dim);
  font-size: 0.9rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 2, 33, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: var(--dark-bg);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  border: 2px solid var(--neon-blue);
  box-shadow: 0 0 30px var(--neon-blue);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--neon-pink);
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(13, 2, 33, 0.95);
  padding: 1rem;
  border-top: 1px solid var(--neon-purple);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.cookie-banner p {
  margin-right: 1rem;
  color: var(--text-dim);
}

.cookie-banner .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.glitch {
  position: relative;
}

.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch::before {
  color: var(--neon-pink);
  animation: glitch-effect 3s infinite;
  z-index: -1;
}

.glitch::after {
  color: var(--neon-blue);
  animation: glitch-effect 2s infinite reverse;
  z-index: -2;
}

@keyframes glitch-effect {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 3px); }
  40% { transform: translate(-3px, -3px); }
  60% { transform: translate(3px, 3px); }
  80% { transform: translate(3px, -3px); }
  100% { transform: translate(0); }
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    right: 0;
    top: 80px;
    background-color: var(--dark-bg);
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding: 1rem 0;
    clip-path: circle(0px at 90% -10%);
    transition: all 0.5s ease-out;
    pointer-events: none;
    border-bottom: 1px solid var(--neon-purple);
  }

  .nav-links.active {
    clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .burger {
    display: block;
  }

  .burger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.active div:nth-child(2) {
    opacity: 0;
  }

  .burger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image {
    margin-top: 2rem;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 1rem;
    display: block;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .pricing-table {
    font-size: 0.9rem;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner .btn {
    margin-top: 1rem;
  }
}

