/* Hero Section Styles */
.hero {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
  color: #1e3a8a;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  color: #334155;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Trial Highlight */
.trial-highlight-container {
  text-align: center;
  margin: 30px 0;
}

.trial-highlight {
  display: inline-block;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.12));
  color: #1e3a8a;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  animation: trialPulse 2.8s ease-in-out infinite;
}

@keyframes trialPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(37, 99, 235, 0.0);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.25);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(37, 99, 235, 0.0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .trial-highlight {
    font-size: 13px;
    padding: 12px 18px;
  }

  .trial-highlight-container {
    margin: 20px 0;
  }
}