/* Hero section styles */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.gradient-follow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(154, 255, 224, 0.1) 0%, rgba(154, 255, 224, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 24px;
  color: #9affe0;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-description,
.hero-description p {
  font-size: 18px;
  margin-bottom: 48px;
  opacity: 0.8;
  line-height: 1.6;
}

.hero-description {
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Cards container */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(154, 255, 224, 0.1) 0%, rgba(154, 255, 224, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(154, 255, 224, 0.2) 0%, rgba(154, 255, 224, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.card:hover::before,
.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(154, 255, 224, 0.3);
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.card:hover .card-logo {
  transform: scale(1.1);
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.card-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  position: relative;
}

.card-text::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #9affe0, transparent);
  transition: width 0.3s ease;
}

.card:hover .card-text {
  opacity: 1;
}

.card:hover .card-text::before {
  width: 100%;
}

/* Responsive hero */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 56px;
  }
  
  .hero-subtitle {
    font-size: 22px;
  }
  
  .cards-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .card {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 60px;
    min-height: auto;
    padding-bottom: 60px;
  }
  
  .hero-content {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  
  .card {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-bottom: 40px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 12px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 13px;
  }
} 