.hero {
  position: relative;
  padding: 24px 16px;
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.hero-content {
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(79, 70, 229, 0.1);
  color: rgb(79, 70, 229);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: white;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  max-width: 280px;
}

.primary-button {
  background: rgb(79, 70, 229);
  color: white;
}

.primary-button:hover {
  background: rgb(67, 56, 202);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}

/* Small phones */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .stat-label {
    font-size: 11px;
  }
  
  .demo-features {
    flex-direction: column;
    align-items: center;
  }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .hero {
    padding: 60px 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-stats {
    gap: 32px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 15px;
  }
  
  .primary-button,
  .secondary-button {
    width: auto;
  }
  
  .hero-demo {
    margin: 0;
    padding: 32px;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .hero {
    padding: 80px 40px;
  }

  .hero-grid {
    gap: 80px;
  }

  .hero-content {
    text-align: left;
  }

  .hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
  }

  .hero-subtitle {
    font-size: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: left;
  }

  .stat-item {
    align-items: flex-start;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-label {
    font-size: 16px;
  }
  
  .demo-features {
    justify-content: flex-start;
  }
}

/* Demo section styles */
.hero-demo {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 24px 16px;
  margin: 0 -16px;
}

.hero-demo h3 {
  font-size: 20px;
  margin: 0 0 8px 0;
}

.demo-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.demo-container {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  overflow-x: hidden;
}

.demo-header {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.demo-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  margin-right: 6px;
}

.demo-features {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.demo-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.feature-icon {
  font-size: 20px;
} 