@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-gradient: linear-gradient(90deg, #9eff00 0%, #00ffcc 100%);
  --secondary-gradient: linear-gradient(90deg, #00ffcc 0%, #00a3ff 100%);
  --dark-bg: #0a0a0a;
  --dark-card: #121212;
  --text-color: #ffffff;
  --text-secondary: #a0a0a0;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
}

header.scrolled {
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.nav-desktop {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-desktop a {
  transition: color 0.3s ease;
}

.nav-desktop a:hover {
  color: #00ffcc;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  flex-direction: column;
  gap: 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--primary-gradient);
  color: black;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 204, 0.2);
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  opacity: 0.7;
}

.hero-icon {
  width: 40px;
  height: 40px;
  color: var(--text-color);
}

/* About Section */
.about {
  background-color: rgba(0, 0, 0, 0.3);
}

.about-content {
  text-align: center;
}

.about-highlight {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 30px 0;
}

.about-icon-container {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.about-icon {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.7;
  filter: blur(10px);
}

.about-icon-inner {
  position: relative;
  background-color: black;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Solutions Section */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.solution-card {
  background-color: var(--dark-card);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 255, 204, 0.1);
  border: 1px solid rgba(0, 255, 204, 0.3);
}

.solution-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.solution-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.solution-description {
  color: var(--text-secondary);
}

/* Technology Section */
.technology {
  background-color: rgba(0, 0, 0, 0.3);
}

.technology-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media (min-width: 768px) {
  .technology-container {
    flex-direction: row;
    align-items: center;
  }
  
  .technology-content {
    flex: 1;
  }
  
  .technology-visual {
    flex: 1;
  }
}

.technology-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.technology-divider {
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  margin: 0 0 30px;
  border-radius: 2px;
}

.technology-description {
  margin-bottom: 40px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon-container {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 10px;
}

.feature-icon {
  width: 30px;
  height: 30px;
}

.feature-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.feature-content p {
  color: var(--text-secondary);
}

.technology-visual {
  display: flex;
  justify-content: center;
}

.circuit-board {
  position: relative;
  background-color: black;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 400px;
}

.circuit-board::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--primary-gradient);
  border-radius: 12px;
  opacity: 0.7;
  filter: blur(5px);
}

.circuit-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.circuit-cell {
  height: 60px;
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circuit-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.green-dot {
  background-color: #9eff00;
}

.teal-dot {
  background-color: #00ffcc;
}

.blue-dot {
  background-color: #00a3ff;
}

.circuit-line {
  width: 30px;
  height: 2px;
}

.teal-line {
  background-color: #00ffcc;
}

.circuit-main {
  margin-top: 20px;
  height: 100px;
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circuit-center {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Results Section */
.results-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.testimonial-placeholder {
  position: relative;
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.testimonial-placeholder::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--primary-gradient);
  border-radius: 12px;
  opacity: 0.5;
  filter: blur(5px);
}

.testimonial-content {
  position: relative;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 40px;
}

.testimonial-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 30px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* CTA Section */
.cta {
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.cta-icon-container {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

/* Footer */
footer {
  background-color: black;
  padding: 80px 0 30px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media (min-width: 768px) {
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-description {
  max-width: 300px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-links {
    flex-direction: row;
    gap: 60px;
  }
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #00ffcc;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #00ffcc;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: var(--text-secondary);
}

/* Background Elements */
.bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  z-index: -1;
}

.bg-green {
  background-color: #9eff00;
}

.bg-teal {
  background-color: #00ffcc;
}

.bg-blue {
  background-color: #00a3ff;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .nav-mobile.active {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .technology-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .technology-divider {
    margin: 0 auto 30px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}
