body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #0d0d0f;
  color: #fff;
  line-height: 1.6;
}

/* HERO */
.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.hero-content {
  position: absolute;
  max-width: 600px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0.9;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #6c4dfd;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* PRODUCTS */
.products {
  padding: 60px 5%;
  text-align: center;
}

.products h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.section-desc {
  opacity: 0.8;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background: #1a1a1f;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #2b2b32;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #6c4dfd;
  display: block;
  margin-bottom: 12px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background: #6c4dfd;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.highlight {
  border: 2px solid #6c4dfd;
}

/* INFO */
.info {
  padding: 60px 5%;
  text-align: center;
  max-width: 700px;
  margin: auto;
}

/* FOOTER */
footer {
  padding: 40px 5%;
  text-align: center;
  background: #111;
}

.footer-links a {
  color: #ccccff;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

