/* Modern Custom Styles for Advanced UI Components */

/* Modern Pricing Section Background */
.pricing-bg-gradient {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 25%, #2d1b4e 50%, #0f172a 75%, #111827 100%);
  position: relative;
}

.pricing-bg-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at bottom right, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Modern Floating Animations */
@keyframes modernFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1); 
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-20px) rotate(180deg) scale(1.1); 
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

@keyframes pulse3d {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% { 
    transform: scale(1.02); 
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
}

.float-animation {
  animation: modernFloat 8s ease-in-out infinite;
}

.float-animation-reverse {
  animation: modernFloat 10s ease-in-out infinite reverse;
}

/* Modern Background Elements */
.bg-float-1 {
  background: conic-gradient(from 0deg, #10b981, #06d6a0, #0891b2, #10b981);
  border-radius: 50%;
  filter: blur(40px);
}

.bg-float-2 {
  background: conic-gradient(from 180deg, #3b82f6, #8b5cf6, #06d6a0, #3b82f6);
  border-radius: 50%;
  filter: blur(35px);
}

/* Modern Pricing Cards */
.modern-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0.08) 50%, 
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent
  );
  animation: shimmer 3s infinite;
}

.modern-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(16, 185, 129, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: pulse3d 2s infinite;
}

/* Popular Badge */
.popular-badge {
  background: linear-gradient(45deg, #f59e0b, #f97316);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
  animation: pulse3d 3s infinite;
}

/* Plan Accent Icons */
.plan-icon-bg {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 214, 160, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
  backdrop-filter: blur(10px);
}

/* Plan Text Colors Fix */
.modern-card .text-emerald-400 {
  color: #10b981 !important;
}

.modern-card .text-amber-400 {
  color: #f59e0b !important;
}

.modern-card .text-purple-400 {
  color: #a855f7 !important;
}

/* Plan Description Colors */
.plan-subtitle {
  color: #10b981 !important;
  font-weight: 500 !important;
}

.plan-feature-text {
  color: #10b981 !important;
  font-weight: 600 !important;
}

/* Modern Typography */
.modern-price {
  background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.gradient-text-modern {
  background: linear-gradient(135deg, #10b981 0%, #06d6a0 50%, #0891b2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Modern Buttons */
.btn-modern {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 
    0 4px 15px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-modern::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-modern:hover::before {
  left: 100%;
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 30px rgba(16, 185, 129, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Modern Contact Form */
.modern-form-container {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.85) 0%, 
    rgba(30, 41, 59, 0.85) 100%
  ) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 2px solid rgba(16, 185, 129, 0.3) !important;
  border-radius: 24px !important;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  position: relative;
  overflow: hidden;
}

.modern-form-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.2), 
    rgba(6, 214, 160, 0.1)
  );
  border-radius: 26px;
  filter: blur(10px);
  opacity: 0.6;
  z-index: -1;
}

/* Modern Form Inputs */
.modern-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(10px);
  color: white !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.modern-input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 400;
}

.modern-input:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(16, 185, 129, 0.8) !important;
  box-shadow: 
    0 0 0 3px rgba(16, 185, 129, 0.15),
    0 8px 25px rgba(16, 185, 129, 0.1) !important;
  outline: none !important;
}

.modern-label {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
}


/* Submit Button */
.submit-btn-modern {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  border-radius: 12px !important;
  border: none !important;
  box-shadow: 
    0 10px 40px rgba(16, 185, 129, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  position: relative;
  overflow: hidden;
}

.submit-btn-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s;
}

.submit-btn-modern:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.submit-btn-modern:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 50px rgba(16, 185, 129, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Custom Scrollbar */
.modern-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.modern-scrollbar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.modern-scrollbar::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 4px;
}

/* Animation Delays */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }

/* Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Badge Styling */
.trust-badge {
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  color: rgba(16, 185, 129, 1) !important;
}

.instant-badge {
  background: rgba(16, 185, 129, 0.2) !important;
  border: 1px solid rgba(16, 185, 129, 0.4) !important;
  color: rgba(16, 185, 129, 1) !important;
}

/* Better Radio Button Styling */
.plan-radio-label {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
  padding: 12px !important;
}

.plan-radio-label:hover {
  background: rgba(16, 185, 129, 0.15) !important;
  border-color: rgba(16, 185, 129, 0.4) !important;
  transform: translateY(-1px);
}

.plan-radio-label input[type="radio"]:checked + span {
  color: #10b981 !important;
  font-weight: 600 !important;
}

.plan-radio-label:has(input[type="radio"]:checked) {
  background: rgba(16, 185, 129, 0.2) !important;
  border-color: rgba(16, 185, 129, 0.6) !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2) !important;
}

/* Grid Layout Fixes */
.pricing-grid {
  grid-template-columns: 1fr 1fr !important;
  gap: 2rem !important;
  align-items: start !important;
}

.pricing-grid > div:first-child {
  margin-right: 2rem !important;
  padding-right: 1rem !important;
}

.pricing-grid > div:last-child {
  margin-left: 2rem !important;
  padding-left: 1rem !important;
}

/* Benefits Cards with Hover Reveal Effect */
.benefit-card {
  height: 300px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.benefit-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.benefit-card-front {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: all 0.3s ease;
  color: white;
}

.benefit-card-front h3 {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefit-card-front p {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.benefit-card-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(30, 41, 59, 0.9));
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(20px);
  color: white;
}

.benefit-card-back h4 {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefit-card-back p {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover .benefit-card-back {
  opacity: 1;
  transform: translateY(0);
}

/* Star Shape Styling */
.star-shape {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.benefit-title {
  text-align: center;
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

/* Individual Card Colors */
.benefit-card:nth-child(1) .benefit-card-front {
  background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-card:nth-child(2) .benefit-card-front {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.benefit-card:nth-child(3) .benefit-card-front {
  background: linear-gradient(135deg, #a855f7, #9333ea);
}

.benefit-card:nth-child(4) .benefit-card-front {
  background: linear-gradient(135deg, #34d399, #10b981);
}

/* Background Pattern */
.bg-pattern-dots {
  background-image: radial-gradient(circle, rgba(156, 146, 172, 0.1) 2px, transparent 2px);
  background-size: 60px 60px;
}

/* Toolkit Cards */
.toolkit-card {
  height: 400px;
  transition: all 0.4s ease;
}

.toolkit-card:hover {
  transform: translateY(-15px);
}

.toolkit-card-inner {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.toolkit-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.8s;
}

.toolkit-card:hover .toolkit-card-inner::before {
  transform: translateX(100%) skewX(-15deg);
}

.toolkit-card:hover .toolkit-card-inner {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(16, 185, 129, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Icon Animation */
.icon-wrapper {
  display: flex;
  justify-content: center;
}

.toolkit-card:hover .icon-wrapper > div {
  transform: scale(1.1) rotate(-5deg);
}

/* Toolkit Button */
.toolkit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 214, 160, 0.1));
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 100%;
  justify-content: center;
}

.toolkit-btn:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(6, 214, 160, 0.2));
  border-color: rgba(16, 185, 129, 0.5);
  color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
  
  .pricing-grid > div:first-child {
    margin-right: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 2rem !important;
  }

  .pricing-grid > div:last-child {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  
  .modern-card {
    margin-bottom: 1.5rem;
  }

  .benefit-card {
    height: 250px;
  }
  
  .star-shape {
    width: 100px;
    height: 100px;
  }

  .toolkit-card {
    height: 350px;
  }
  
  .toolkit-card-inner {
    padding: 1.5rem;
  }

  .stats-card {
    height: auto;
    margin-bottom: 1.5rem;
  }

  .review-card {
    height: auto;
    margin-bottom: 1rem;
  }
  
  /* Mobile spacing adjustments */
  .stats-card-inner {
    padding: 1.25rem 1rem;
  }
  
  .review-card-inner {
    padding: 1rem 0.75rem;
  }
}

/* Enhanced Section Header */
#stats h2 {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
}

#stats .inline-flex {
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
  backdrop-filter: blur(10px);
}

/* Pulse Effect for Background Elements */
@keyframes pulse-glow {
  0%, 100% { 
    opacity: 0.1; 
    transform: scale(1); 
  }
  50% { 
    opacity: 0.15; 
    transform: scale(1.05); 
  }
}

/* Ultra Modern Compact Stats Cards */
.stats-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 180px;
  margin-bottom: 2rem;
}

.stats-card:hover {
  transform: translateY(-8px);
  z-index: 10;
}

.stats-card-inner {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stats-card-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--card-gradient-start, #10b981), 
    var(--card-gradient-end, #059669)
  );
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stats-card:hover .stats-card-inner::after {
  opacity: 1;
}

.stats-card:hover .stats-card-inner {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 8px 25px rgba(16, 185, 129, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Individual Card Gradients */
.stats-card:nth-child(1) .stats-card-inner {
  --card-gradient-start: #3b82f6;
  --card-gradient-end: #8b5cf6;
}

.stats-card:nth-child(2) .stats-card-inner {
  --card-gradient-start: #10b981;
  --card-gradient-end: #06b6d4;
}

.stats-card:nth-child(3) .stats-card-inner {
  --card-gradient-start: #a855f7;
  --card-gradient-end: #ec4899;
}

.stats-card:nth-child(4) .stats-card-inner {
  --card-gradient-start: #f59e0b;
  --card-gradient-end: #ef4444;
}

/* Compact Modern Icons */
.stats-card .w-14 {
  width: 3rem !important;
  height: 3rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.stats-card:hover .w-14 {
  transform: scale(1.1);
}

/* Sleek Number Styling */
.stats-card .text-4xl {
  font-size: 2.5rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  margin: 0.5rem 0 0.25rem 0 !important;
  background: linear-gradient(135deg, 
    #1f2937 0%, 
    #374151 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.stats-card:hover .text-4xl {
  background: linear-gradient(135deg, 
    var(--card-gradient-start, #10b981) 0%, 
    var(--card-gradient-end, #059669) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.05);
}

/* Compact Labels */
.stats-card .text-base {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.stats-card:hover .text-base {
  color: #374151 !important;
}

/* Compact Modern Review Cards */
.review-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 160px;
  margin-bottom: 1.5rem;
}

.review-card:hover {
  transform: translateY(-6px);
  z-index: 10;
}

.review-card-inner {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.75) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.review-card-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    #f59e0b, 
    #eab308, 
    #f59e0b
  );
  border-radius: 0 0 14px 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover .review-card-inner::after {
  opacity: 1;
}

.review-card:hover .review-card-inner {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.08),
    0 4px 15px rgba(245, 158, 11, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Compact Star Styling */
.review-card .w-6 {
  width: 1.25rem !important;
  height: 1.25rem !important;
}

/* Compact Rating Numbers */
.review-card .text-3xl {
  font-size: 1.75rem !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  margin: 0.25rem 0 !important;
  color: #1f2937 !important;
}

.review-card:hover .text-3xl {
  color: #f59e0b !important;
}

/* Compact Platform Labels */
.review-card .text-base {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  margin: 0 !important;
}

/* About Page Modern Animations */
@keyframes animate-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin-slow {
  animation: animate-spin-slow 8s linear infinite;
}

@keyframes gradient-x {
  0%, 100% {
    background-size: 200% 200%;
    background-position: left center;
  }
  50% {
    background-size: 200% 200%;
    background-position: right center;
  }
}

.animate-gradient-x {
  animation: gradient-x 4s ease infinite;
}

/* Modern Glass Effect */
.backdrop-blur-xl {
  backdrop-filter: blur(24px);
}

/* Modern Button Hover Effects */
.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

.group:hover .group-hover\:rotate-45 {
  transform: rotate(45deg);
}

/* Ultra Modern Typography */
.text-9xl {
  font-size: 8rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .text-9xl {
    font-size: 4rem;
  }
}

/* Additional Modern Styles for About Page */
.min-h-screen {
  min-height: 100vh;
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

.backdrop-blur-xl {
  backdrop-filter: blur(24px);
}

.bg-white\/95 {
  background-color: rgba(255, 255, 255, 0.95);
}

.bg-white\/80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.border-white\/30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.border-white\/50 {
  border-color: rgba(255, 255, 255, 0.5);
}

.text-white\/50 {
  color: rgba(255, 255, 255, 0.5);
}

/* Gradient text support */
.bg-clip-text {
  background-clip: text;
  -webkit-background-clip: text;
}

.text-transparent {
  color: transparent;
}

/* Shadow effects */
.shadow-3xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Animation delays */
.delay-1000 {
  animation-delay: 1s;
}

.delay-2000 {
  animation-delay: 2s;
}

/* Transform utilities */
.transform {
  transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

/* Blur effects */
.blur-xl {
  filter: blur(24px);
}

.blur-3xl {
  filter: blur(64px);
}

/* Modern gradients */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-black {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.via-gray-900 {
  --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0));
}

.to-emerald-900 {
  --tw-gradient-to: #064e3b;
}
