* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  color: white;
  line-height: 1.6;
  position: relative;
}

.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150vh;
  background-image: url('assets/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
  z-index: -2;
}

.parallax-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.85),
      rgba(30, 41, 59, 0.80),
      rgba(51, 65, 85, 0.75));
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 3rem 0 2rem 0;
  text-align: center;
  position: relative;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.logo-shape {
  width: 100px;
  height: 100px;
  position: relative;
  left: -40px;
  animation: float 4s ease-in-out infinite;
  flex-shrink: 0;
}

.logo-shape::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #3b82f6, #06b6d4, #10b981);
  transform: rotate(45deg);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.logo-shape::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  transform: rotate(-30deg);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.company-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #3b82f6, #06b6d4, #10b981);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.9));
}

.tagline {
  font-size: 1.3rem;
  color: #94a3b8;
  font-weight: 300;
  margin-bottom: 3rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Main Content */
.main-content {
  padding: 0;
}

.hero-section,
.product-section,
.contact-section {
  text-align: center;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  backdrop-filter: blur(5px);
}

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2), rgba(16, 185, 129, 0.1));
}

.hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.hero-description {
  font-size: 1.2rem;
  color: #e2e8f0;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.product-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(239, 68, 68, 0.2), rgba(236, 72, 153, 0.1));
}

.product-section .container,
.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f1f5f9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.product-link {
  display: inline-block;
  background: linear-gradient(45deg, #3b82f6, #06b6d4, #10b981);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.35);
}

.product-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(59, 130, 246, 0.5);
  filter: brightness(1.05);
}

.contact-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.1));
}

.email {
  font-size: 1.4rem;
  color: #06b6d4;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.email:hover {
  color: #0891b2;
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.6), 0 2px 6px rgba(0, 0, 0, 0.8);
}

.location {
  font-size: 1.1rem;
  color: #94a3b8;
  margin: 1rem 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.location-icon {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.contact-cta {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-top: 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

footer {
  text-align: center;
  padding: 2rem 0;
  color: #cbd5e1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  font-weight: 400;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .company-title {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-section,
  .product-section,
  .contact-section {
    padding: 3rem 0;
  }

  .hero-section .container,
  .product-section .container,
  .contact-section .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-section,
  .product-section,
  .contact-section {
    padding: 2.5rem 0;
  }

  .hero-section .container,
  .product-section .container,
  .contact-section .container {
    padding: 0 1rem;
  }

  .company-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }
}
