.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 1rem;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.05) 0%,
    rgba(16, 185, 129, 0.05) 100%
  );
  border-radius: var(--radius-xl);
  margin: var(--spacing-3xl) 0;
  margin-top: 0;
}

.hero-content {
  animation: fadeInLeft 0.8s ease-out;
  margin-left: 100px;
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-family: var(--font-secondary);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInDown 0.8s ease-out;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-2xl);
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* HERO ILLUSTRATIONS */
.hero-illustration {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.8s ease-out;
}

.floating-card {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  color: white;
  box-shadow: var(---shadow-xl);
  font-size: var(--font-size-3xl);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.floating-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(79, 70, 229, 0.3);
  filter: brightness(1.2);
}

.floating-card p {
  font-size: var(--font-size-sm);
  color: white;
  margin: 0;
}

.card-1 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  animation: floatIn 3s ease-in-out infinite;
  /* animation-delay: 0; */
  left: 20px;
  top: 100px;
}

.card-2 {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  animation: floatIn 3s ease-in-out infinite;
  /* animation-delay: 0.4s; */
  right: 20px;
  top: 100px;
}

.card-3 {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  animation: floatIn 3s ease-in-out infinite;
  animation-delay: 1.5s;
  right: 260px;
  top: 200px;
}

@media (max-width: 768px) {
  .floating-card {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .floating-card {
    width: 70px;
    height: 70px;
    font-size: 1.25rem;
  }

  .card-1 {
    left: 5%;
    top: 0%;
  }

  .card-2 {
    right: 5%;
    top: 45%;
  }

  .card-3 {
    left: 25%;
    bottom: 0%;
  }
}

/* FEATURES SECTION */
.features {
  padding: var(--spacing-3xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.feature-card {
  background: var(--bg-secondary);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  animation: fadeIn 0.8s ease-out;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(---shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  color: white;
  font-size: var(--font-size-2xl);
  transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
}

.feature-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* FOOTER */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-3xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-section h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
}

.footer-section ul {
  list-style: none;
  margin: 0;
}

.footer-section li {
  margin-bottom: var(--spacing-md);
}

.footer-section a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: var(--spacing-lg);
  text-align: center;
  color: var(--text-secondary);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: var(--spacing-2xl) 0;
  }

  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
  }

  .hero-illustration {
    height: 300px;
  }

  .floating-card {
    width: 100px;
    height: 100px;
    font-size: var(--font-size-2xl);
  }
}
