/* Custom styles for LeaderRender landing page */

/* Additional utility classes */
.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero gradient background enhancement */
.hero-gradient {
  background: linear-gradient(135deg, #f7f9fa 0%, #ffffff 100%);
}

/* Improved card hover effects */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Trust badge styling */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

/* Pricing display enhancement */
.price-display {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

/* Button enhancements */
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  width: 100%;
}

/* FAQ accordion improvements */
.faq-button {
  transition: background-color 0.2s ease;
}

.faq-button:hover {
  background-color: #f9fafb;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-icon.rotate {
  transform: rotate(180deg);
}

/* Footer link styling */
.footer-link {
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

/* Responsive typography improvements */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .price-display {
    font-size: 3rem;
  }
}

/* Loading state for HTMX */
.htmx-request .htmx-indicator {
  display: inline-block;
}

.htmx-indicator {
  display: none;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid #49B0C1;
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

/* Green accent for pricing section */
.text-green-500 {
  color: #10b981;
}

.bg-green-50 {
  background-color: #f0fdf4;
}

.border-green-200 {
  border-color: #bbf7d0;
}

.text-green-800 {
  color: #166534;
}

/* Additional spacing utilities */
.mt-0\.5 {
  margin-top: 0.125rem;
}

/* Ensure images don't break layout */
img {
  max-width: 100%;
  height: auto;
}

/* Navigation shadow */
nav {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Company section image styling */
.office-image {
  object-fit: cover;
  width: 100%;
  height: 12rem;
}

/* Modal backdrop */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}/* Demo change */
