* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: #222;
  line-height: 1.5;
  overflow-x: hidden;
}

.hero {
  position: relative;
  background: url('/images/hero-group.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  background: white;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.highlight {
font-size: 4rem;
  background: linear-gradient(90deg, #00c9a7, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  max-width: 550px;
  margin-bottom: 2rem;
  color: #555;
  font-size: 1.1rem;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.gradient {
  background: linear-gradient(90deg, #00c9a7, #8b5cf6);
  color: white;
}

.btn.gradient:hover {
  opacity: 0.9;
}

.btn.outline {
  border: 2px solid #ccc;
  color: #333;
  background: white;
}

.btn.outline:hover {
  border-color: #8b5cf6;
  color: #8b5cf6;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.feature {
  background: white;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature h3 {
  margin-bottom: 0.3rem;
}

.green { color: #00c97a; }
.purple { color: #8b5cf6; }
.orange { color: #ff7f50; }

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 90%;
  }
}
.copyright {
    color: gray;
    font-size: small;
}