/* ============================================
   strategy TOOLS SHOWCASE - PREMIUM DESIGN
   ============================================ */

.strategy-tools-section-sil4 {
  padding: 3rem 2rem;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(29, 154, 146, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #fefcfb 50%, #fff9f6 100%);
  position: relative;
  overflow: hidden;
}

.strategy-tools-wrapper-sil4 {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.tools-header-section-sil4 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.tools-header-badge-sil4 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: 
    linear-gradient(135deg, 
      rgba(255, 107, 53, 0.12) 0%, 
      rgba(29, 154, 146, 0.12) 100%
    );
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FF6B35;
  margin-bottom: 18px;
  position: relative;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
  animation: headerBadgeFloat-sil4 3s ease-in-out infinite;
}

@keyframes headerBadgeFloat-sil4 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.badge-shimmer-sil4 {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), 
    transparent
  );
  animation: shimmer-sil4 3s infinite;
}

@keyframes shimmer-sil4 {
  0% { left: -100%; }
  100% { left: 200%; }
}

.tools-header-badge-sil4 i {
  font-size: 1rem;
}

.tools-main-heading-sil4 {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.tools-gradient-text-sil4 {
  background: linear-gradient(135deg, 
    #FF6B35 0%, 
    #FF8F6B 30%,
    #1D9A92 70%,
    #157A74 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: toolsGradientShift-sil4 5s ease infinite;
}

@keyframes toolsGradientShift-sil4 {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.tools-description-text-sil4 {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #64748b;
}

/* ============================================
   TOOLS GRID
   ============================================ */

.tools-display-grid-sil4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  margin-bottom: 60px;
}

/* ============================================
   TOOL CARDS
   ============================================ */

.tool-item-card-sil4 {
  position: relative;
  padding: 32px 28px;
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.98) 0%, 
      rgba(255, 255, 255, 0.95) 100%
    );
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.tool-card-overlay-sil4 {
  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.6s ease;
  pointer-events: none;
}

.tool-card-glow-sil4 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.glow-orange-sil4 {
  background: radial-gradient(circle at 50% 0%, 
    rgba(255, 107, 53, 0.2) 0%, 
    transparent 70%
  );
}

.glow-teal-sil4 {
  background: radial-gradient(circle at 50% 0%, 
    rgba(29, 154, 146, 0.2) 0%, 
    transparent 70%
  );
}

.glow-blue-sil4 {
  background: radial-gradient(circle at 50% 0%, 
    rgba(59, 130, 246, 0.2) 0%, 
    transparent 70%
  );
}

.glow-purple-sil4 {
  background: radial-gradient(circle at 50% 0%, 
    rgba(139, 92, 246, 0.2) 0%, 
    transparent 70%
  );
}

.glow-indigo-sil4 {
  background: radial-gradient(circle at 50% 0%, 
    rgba(99, 102, 241, 0.2) 0%, 
    transparent 70%
  );
}

.glow-green-sil4 {
  background: radial-gradient(circle at 50% 0%, 
    rgba(16, 185, 129, 0.2) 0%, 
    transparent 70%
  );
}

.tool-item-card-sil4:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 2px rgba(255, 255, 255, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.tool-item-card-sil4:hover .tool-card-overlay-sil4 {
  left: 200%;
}

.tool-item-card-sil4:hover .tool-card-glow-sil4 {
  opacity: 1;
}

/* ============================================
   TOOL LOGO
   ============================================ */

.tool-logo-container-sil4 {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.logo-backdrop-sil4 {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.15),
    inset 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.backdrop-orange-sil4 {
  background: linear-gradient(135deg, #FF6B35 0%, #FF4444 100%);
}

.backdrop-teal-sil4 {
  background: linear-gradient(135deg, #1D9A92 0%, #00D4FF 100%);
}

.backdrop-blue-sil4 {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.backdrop-purple-sil4 {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
}

.backdrop-indigo-sil4 {
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
}

.backdrop-green-sil4 {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.logo-backdrop-sil4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: inherit;
  filter: blur(15px);
  opacity: 0.5;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.tool-item-card-sil4:hover .logo-backdrop-sil4 {
  transform: scale(1.15) rotate(-10deg);
}

.tool-item-card-sil4:hover .logo-backdrop-sil4::before {
  opacity: 0.8;
}

/* ============================================
   TOOL CONTENT
   ============================================ */

.tool-name-sil4 {
  font-size: 1.375rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: -0.01em;
}

.tool-description-sil4 {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
  min-height: 48px;
}

/* ============================================
   FEATURE TAGS
   ============================================ */

.tool-features-sil4 {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.feature-tag-sil4 {
  padding: 6px 14px;
  background: 
    linear-gradient(135deg, 
      rgba(255, 107, 53, 0.08) 0%, 
      rgba(29, 154, 146, 0.08) 100%
    );
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FF6B35;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.tool-item-card-sil4:hover .feature-tag-sil4 {
  background: 
    linear-gradient(135deg, 
      rgba(255, 107, 53, 0.12) 0%, 
      rgba(29, 154, 146, 0.12) 100%
    );
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

/* ============================================
   TOOL STATUS
   ============================================ */

.tool-status-sil4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #10B981;
  margin-top: auto;
}

.status-dot-sil4 {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: statusPulse-sil4 2s ease-in-out infinite;
}

@keyframes statusPulse-sil4 {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

/* ============================================
   TOOLS STATISTICS
   ============================================ */

.tools-statistics-sil4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 3rem 1rem;
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.95) 0%, 
      rgba(254, 249, 246, 0.95) 100%
    );
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 2px solid rgba(255, 107, 53, 0.15);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.stat-item-sil4 {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.98) 0%, 
      rgba(255, 255, 255, 0.95) 100%
    );
  border-radius: 18px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.4s ease;
}

.stat-item-sil4:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.25);
}

.stat-icon-sil4 {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, #FF6B35 0%, #1D9A92 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 
    0 6px 20px rgba(255, 107, 53, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.stat-content-sil4 {
  flex: 1;
}

.stat-number-sil4 {
  font-size: 1.875rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF6B35 0%, #1D9A92 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label-sil4 {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */

.tools-floating-elements-sil4 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.float-shape-sil4 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(80px);
}

.shape-1-sil4 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, 
    rgba(255, 107, 53, 0.3) 0%, 
    transparent 70%
  );
  top: -150px;
  right: -150px;
  animation: floatShape1-sil4 20s ease-in-out infinite;
}

.shape-2-sil4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, 
    rgba(29, 154, 146, 0.3) 0%, 
    transparent 70%
  );
  bottom: -120px;
  left: -120px;
  animation: floatShape2-sil4 18s ease-in-out infinite;
}

@keyframes floatShape1-sil4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(40px, -40px) rotate(120deg); }
  66% { transform: translate(-40px, 40px) rotate(240deg); }
}

@keyframes floatShape2-sil4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-35px, 35px) rotate(-120deg); }
  66% { transform: translate(35px, -35px) rotate(-240deg); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .tools-main-heading-sil4 {
    font-size: 2.5rem;
  }
  
  .tools-display-grid-sil4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 968px) {
  .strategy-tools-section-sil4 {
    padding: 70px 20px;
  }
  
  .tools-main-heading-sil4 {
    font-size: 2.25rem;
  }
  
  .tools-header-section-sil4 {
    margin-bottom: 50px;
  }
  
  .tools-display-grid-sil4 {
    margin-bottom: 50px;
  }
  
  .tools-statistics-sil4 {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .strategy-tools-section-sil4 {
    padding: 60px 16px;
  }
  
  .tools-main-heading-sil4 {
    font-size: 2rem;
  }
  
  .tools-description-text-sil4 {
    font-size: 1rem;
  }
  
  .tools-display-grid-sil4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .tool-item-card-sil4 {
    padding: 28px 24px;
  }
  
  .logo-backdrop-sil4 {
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
  }
  
  .tool-name-sil4 {
    font-size: 1.25rem;
  }
  
  .tool-description-sil4 {
    font-size: 0.875rem;
    min-height: auto;
  }
  
  .tools-statistics-sil4 {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  
  .stat-item-sil4 {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .strategy-tools-section-sil4 {
    padding: 50px 14px;
  }
  
  .tools-main-heading-sil4 {
    font-size: 1.75rem;
  }
  
  .tools-header-badge-sil4 {
    font-size: 0.75rem;
    padding: 7px 18px;
  }
  
  .tool-item-card-sil4 {
    padding: 24px 20px;
  }
  
  .logo-backdrop-sil4 {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }
  
  .tool-name-sil4 {
    font-size: 1.125rem;
  }
  
  .feature-tag-sil4 {
    font-size: 0.6875rem;
    padding: 5px 12px;
  }
  
  .stat-icon-sil4 {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .stat-number-sil4 {
    font-size: 1.5rem;
  }
  
  .stat-label-sil4 {
    font-size: 0.8125rem;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
  .tool-item-card-sil4 {
    animation: toolCardFadeIn-sil4 0.7s ease forwards;
    opacity: 0;
    animation-play-state: paused;
  }
  
  .tool-item-card-sil4:nth-child(1) { animation-delay: 0.1s; }
  .tool-item-card-sil4:nth-child(2) { animation-delay: 0.15s; }
  .tool-item-card-sil4:nth-child(3) { animation-delay: 0.2s; }
  .tool-item-card-sil4:nth-child(4) { animation-delay: 0.25s; }
  .tool-item-card-sil4:nth-child(5) { animation-delay: 0.3s; }
  .tool-item-card-sil4:nth-child(6) { animation-delay: 0.35s; }
  
  @keyframes toolCardFadeIn-sil4 {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.tool-item-card-sil4:focus-visible {
  outline: 3px solid #FF6B35;
  outline-offset: 4px;
}