* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  background: linear-gradient(90deg, #c026d3, #db2777);
  padding: 16px 24px;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.nav-links a {
  color: #ffffff;
  margin: 0 14px;
  text-decoration: none;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
}

/* =====================
   BUTTONS
===================== */
.btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.primary {
  background: #ffffff;
  color: #c026d3;
}

.secondary {
  border: 2px solid #c026d3;
  color: #c026d3;
  background: transparent;
}

.login-btn {
  background: #ffffff;
  color: #c026d3;
  padding: 8px 20px;
}

.login-btn:hover {
  background: #fdf2f8;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #faf5ff);
}

.hero-content {
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
  color: #1f2937;
}

.hero-quote {
  font-size: 22px;
  color: #4b5563;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* =====================
   HIGHLIGHTED LINE
===================== */
.hero-highlight {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  background: linear-gradient(
    90deg,
    rgba(192,38,211,0.10),
    rgba(219,39,119,0.10)
  );
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  margin-bottom: 40px;
}

/* =====================
   ANIMATIONS
===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(192, 38, 211, 0);
  }
  50% {
    box-shadow: 0 0 22px rgba(192, 38, 211, 0.25);
  }
  100% {
    box-shadow: 0 0 0 rgba(192, 38, 211, 0);
  }
}

.animate-title {
  animation: fadeUp 0.9s ease-out forwards;
}

.animate-subtitle {
  opacity: 0;
  animation: fadeUp 0.9s ease-out forwards;
  animation-delay: 0.3s;
}

.animate-highlight {
  opacity: 0;
  animation: fadeUp 0.9s ease-out forwards, glow 2.5s ease-in-out infinite;
  animation-delay: 0.6s;
}

/* =====================
   PLATFORM / SOLUTIONS
===================== */
.why, .solutions {
  padding: 80px 20px;
  text-align: center;
}

.why-grid, .solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.why-card, .solution-card {
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

/* =====================
   FOOTER
===================== */
.footer {
  padding: 30px;
  text-align: center;
  color: #6b7280;
}
