body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.premium-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.premium-card .text-gray-700 {
  color: rgba(255, 255, 255, 0.9) !important;
}

.premium-card .text-gray-400 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-success {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
}

.tab-nav {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glassmorphism {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}

/* Header Scroll Effect */
header {
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
}

/* Section Scroll Offset */
section {
  scroll-margin-top: 80px;
}

/* Button Animations */
button, a.bg-white, a.bg-blue-600 {
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover, a.bg-white:hover, a.bg-blue-600:hover {
  transform: scale(1.05);
}

/* Force light theme: neutralize dark variant utilities */
.dark\:text-gray-100, .dark\:text-gray-200, .dark\:text-gray-300, .dark\:text-gray-400 {
  color: #374151 !important; /* gray-700 for readability */
}
.dark\:bg-gray-800, .dark\:bg-gray-900 {
  background-color: #ffffff !important;
}
.dark\:hover\:bg-gray-700:hover {
  background-color: #e5e7eb !important; /* gray-200 */
}
.dark\:border-gray-600, .dark\:border-gray-700 {
  border-color: #e5e7eb !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
  
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  .btn-primary, .btn-success {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .text-center button {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeIn 0.6s ease-out;
}

/* Visual card icon badge */
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.35);
  margin-right: 12px;
  flex: 0 0 auto;
}

.premium-card .icon-badge,
[style*="text-white"].icon-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

/* Timeline */
.timeline {
  position: relative;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb; /* gray-200 */
}
.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0 12px 0;
}
.timeline-marker {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  margin-left: 8px;
  box-shadow: 0 8px 18px rgba(102, 126, 234, 0.35);
}
.timeline-content {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 12px;
  padding: 12px 14px;
  flex: 1;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}
.timeline-content h4 {
  margin: 0 0 4px 0;
  font-weight: 600;
  color: #1f2937; /* gray-800 */
}
.timeline-content p {
  margin: 0;
  color: #4b5563; /* gray-600 */
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .timeline::before { left: 50%; transform: translateX(-50%); }
  .timeline-item { padding: 16px 0; }
  .timeline-item:nth-child(odd) { flex-direction: row-reverse; }
  .timeline-marker { margin-left: 0; }
  .timeline-content { width: 44%; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(102, 126, 234, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(102, 126, 234, 0.7);
}

/* Focus States */
input:focus, textarea:focus, select:focus {
  outline: none;
  ring: 2px;
  ring-color: #667eea;
  border-color: transparent;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* FAQ Styles */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-content {
  transition: all 0.3s ease;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-weight: bold;
  min-width: 24px;
  text-align: center;
}

/* Statistics Cards */
.card .text-3xl {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Team Cards Enhanced */
.card:hover .bg-purple-100 {
  background-color: rgba(102, 126, 234, 0.2);
  transition: background-color 0.3s ease;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #f9fafb 0%, #eef2f7 100%);
}

/* Footer overrides to ensure light theme */
footer.text-gray-300, footer .text-gray-300 {
  color: #4b5563 !important; /* gray-600 */
}
footer .text-white {
  color: #111827 !important; /* gray-900 */
}
footer .text-gray-400 {
  color: #6b7280 !important; /* gray-500 */
}
footer .border-gray-800 {
  border-color: #e5e7eb !important; /* gray-200 */
}
footer .hover\:text-white:hover {
  color: #111827 !important;
}
footer .text-blue-400 { color: #2563eb !important; }
footer .hover\:text-blue-300:hover { color: #3b82f6 !important; }

footer a:hover {
  transform: translateX(2px);
  transition: transform 0.3s ease;
}

/* Enhanced Hero Button */
.btn-primary.text-lg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.btn-primary.text-lg::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary.text-lg:hover::before {
  left: 100%;
}

/* Problem/Solution Cards Animation */
.card:nth-child(even) {
  animation-delay: 0.1s;
}

.card:nth-child(odd) {
  animation-delay: 0.2s;
}

/* Mobile FAQ Improvements */
@media (max-width: 768px) {
  .faq-item h3 {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .faq-icon {
    min-width: 20px;
  }
}

/* Gradient Text for Headers */
.section-title {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Enhanced Cards for Problems/Solutions */
.problem-card {
  border-left: 4px solid #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.solution-card {
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.05);
}

/* Testimonials placeholder (for future use) */
.testimonial-card {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #667eea, #764ba2) border-box;
}
