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

body {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: #0f172a;
  background: #ffffff;
}

.hero {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 100%
  );
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.badge {
  display: inline-block;
  background: #ede9fe;
  color: #6d28d9;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.15rem;
  color: #475569;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  background: #6d28d9;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.hero-images {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-images img {
  width: 220px;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-images img:hover {
  transform: translateY(-10px);
}

.features {
  padding: 100px 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.2rem;
}

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

.card {
  padding: 28px;
  border-radius: 16px;
  background: #f8fafc;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: #64748b;
}

.odoo {
  padding: 100px 0;
  text-align: center;
  background: #f8fafc;
}

.odoo h2 {
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.odoo p {
  max-width: 700px;
  margin: auto;
  color: #64748b;
}

footer {
  padding: 40px 0;
  border-top: 1px solid #e2e8f0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  color: #64748b;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #475569;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-images {
    flex-wrap: wrap;
  }

  .hero-images img {
    width: 180px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}