/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #0f0f14;
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background: #0c0c11;
  padding: 1rem 0;
  border-bottom: 1px solid #222;
}

.logo {
  color: #fff;
  font-size: 1.5rem;
}

.logo span {
  color: #9b6bff;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #9b6bff;
}

.btn-primary {
  background: #9b6bff;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #7f52ff;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #9b6bff;
  color: #9b6bff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #9b6bff;
  color: #fff;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
}

/* Products */
.products {
  padding: 4rem 0;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: #1a1a23;
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.product-card h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.product-card p {
  color: #aaa;
  margin-bottom: 1rem;
}

/* App Section */
.app {
  background: #16161d;
  padding: 4rem 0;
}

.app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.app-text {
  flex: 1;
}

.app-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  background: #1a1a23;
  border-radius: 16px;
  padding: 1.5rem;
  color: #ccc;
}

/* FAQ */
.faq {
  background: #0c0c11;
  padding: 4rem 0;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  background: #1a1a23;
  padding: 1.5rem;
  border-radius: 12px;
}

.faq-item h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: #0a0a0d;
  padding: 2rem 0;
  text-align: center;
}

.footer-links {
  margin: 1rem 0;
}

.footer-links a {
  color: #9b6bff;
  margin: 0 1rem;
  text-decoration: none;
}

.footer-note {
  font-size: 0.8rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content, .app-content {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
  }
}
