body {
  font-family: "Poppins", sans-serif;
}
.hero-bg {
  background-image: url("./public/hero-bg.svg");
  background-size: cover;
  background-position: center;
}
.re-tool {
  background-image: url("./public/re-tool.png");
  background-size: cover;
  background-position: left;
}
.gradient-primary {
  background: linear-gradient(135deg, #7d4fc9 0%, #328eae 100%);
}
.gradient-secondary {
  background: linear-gradient(135deg, #fdc300 0%, #f6a651 100%);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.testimonial-card {
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: scale(1.03);
}
.faq-item {
  transition: all 0.2s ease;
}
.faq-item:hover {
  background-color: rgba(249, 250, 251, 0.8);
}
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .mobile-menu {
    display: none;
  }
  .mobile-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
}
.x-logo {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.button-height {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
