/* Custom Checkbox Styles */
.custom-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: inherit;
  line-height: inherit;
}

.custom-checkbox::before {
  content: '';
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #10b981;
  border-radius: 0.25rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
  transition: all 0.2s ease-in-out;
}

.custom-checkbox::after {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.125rem;
  width: 0.5rem;
  height: 0.75rem;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease-in-out;
}

.custom-checkbox:hover::before {
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
  transform: scale(1.05);
}

/* Terminal-style checkboxes */
.terminal-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.terminal-checkbox::before {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 1px solid #10b981;
  border-radius: 0.125rem;
  background: #000;
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.terminal-checkbox::after {
  content: '✓';
  position: absolute;
  left: 0.125rem;
  top: -0.125rem;
  color: #10b981;
  font-weight: bold;
  font-size: 0.75rem;
}

/* Animated checkboxes for hero section */
.hero-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: inherit;
  line-height: inherit;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.hero-checkbox.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-checkbox.checked::before {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.hero-checkbox.checked::after {
  transform: rotate(45deg) scale(1);
}

.hero-checkbox::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #10b981;
  border-radius: 0.375rem;
  background: transparent;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease-in-out;
}

.hero-checkbox::after {
  content: '';
  position: absolute;
  left: 0.375rem;
  top: 0.25rem;
  width: 0.625rem;
  height: 0.875rem;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.3s ease-in-out;
}

.hero-checkbox:hover::before {
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
  transform: scale(1.1);
}

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

/* Pricing section checkboxes */
.pricing-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: inherit;
  line-height: inherit;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.pricing-checkbox.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-checkbox.checked::before {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.pricing-checkbox.checked::after {
  transform: rotate(45deg) scale(1);
}

.pricing-checkbox::before {
  content: '';
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #10b981;
  border-radius: 0.25rem;
  background: transparent;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
  transition: all 0.2s ease-in-out;
}

.pricing-checkbox::after {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.125rem;
  width: 0.5rem;
  height: 0.75rem;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease-in-out;
}

.pricing-checkbox:hover::before {
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
  transform: scale(1.05);
}

/* Testimonial Show More Styles */
.testimonial-text {
  max-height: 4.5rem;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.testimonial-text.expanded {
  max-height: none;
}

.show-more-btn {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 500;
}

.show-more-btn.hidden {
  display: none;
}

/* Add new animated-checkbox animation */
.animated-checkbox {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.animated-checkbox.visible {
  opacity: 1;
  transform: translateY(0);
}
.animated-checkbox .checkmark {
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.animated-checkbox.checked .checkmark {
  transform: scale(1);
}

/* Mobile tab animation states */
.feature-content-mobile.collapsed {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}

.feature-content-mobile.expanded {
  max-height: none;
  opacity: 1;
  overflow: visible;
}

/* Mobile tab arrow animation */
.feature-item-mobile .arrow-icon {
  display: inline-block;
  transform: rotate(0deg);
} 