/* ============================================
   strategy PROCESS TIMELINE - UNIQUE DESIGN
   ============================================ */

.strategy-process-section-spw3 {
  min-height: 100vh;
  padding: 3rem 2rem;
  background: 
    radial-gradient(circle at 15% 20%, rgba(255, 107, 53, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(29, 154, 146, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #fefcfb 50%, #fff8f5 100%);
  position: relative;
  overflow: hidden;
}

.strategy-process-wrapper-spw3 {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ============================================
   TIMELINE HEADER
   ============================================ */

.strategy-timeline-header-spw3 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.timeline-badge-spw3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  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: 16px;
  position: relative;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
  animation: badgeFloat-spw3 3s ease-in-out infinite;
}

@keyframes badgeFloat-spw3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.badge-glow-spw3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  background: inherit;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
}

.timeline-badge-spw3 i {
  font-size: 1rem;
}

.timeline-main-title-spw3 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.timeline-gradient-spw3 {
  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: gradientShift-spw3 5s ease infinite;
}

@keyframes gradientShift-spw3 {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.timeline-subtitle-spw3 {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

/* ============================================
   TIMELINE CONTAINER
   ============================================ */

.timeline-container-spw3 {
  position: relative;
  /* padding: 20px 0; */
}

/* ============================================
   VERTICAL SPINE
   ============================================ */

.timeline-spine-spw3 {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: 
    linear-gradient(180deg, 
      rgba(255, 107, 53, 0.2) 0%, 
      rgba(29, 154, 146, 0.2) 100%
    );
  border-radius: 10px;
  transform: translateX(-50%);
  z-index: 1;
}

.spine-progress-spw3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, 
    #FF6B35 0%, 
    #FF8F6B 30%,
    #1D9A92 70%,
    #157A74 100%
  );
  border-radius: 10px;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* ============================================
   TIMELINE ITEMS
   ============================================ */

.timeline-item-spw3 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: itemFadeIn-spw3 0.7s ease forwards;
}

.timeline-item-spw3:nth-child(1) { animation-delay: 0.1s; }
.timeline-item-spw3:nth-child(2) { animation-delay: 0.2s; }
.timeline-item-spw3:nth-child(3) { animation-delay: 0.3s; }
.timeline-item-spw3:nth-child(4) { animation-delay: 0.4s; }

@keyframes itemFadeIn-spw3 {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left Side Items */
.timeline-left-spw3 .timeline-content-spw3 {
  padding-right: 40px;
}

/* Right Side Items */
.timeline-right-spw3 .timeline-content-spw3 {
  text-align: left;
  padding-left: 40px;
}

.timeline-spacer-spw3 {
  /* Empty space on opposite side */
  display: block;
}

/* ============================================
   TIMELINE NODES
   ============================================ */

.timeline-node-spw3 {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
}

.node-outer-spw3 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 2px 8px rgba(255, 255, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.node-orange-spw3 {
  background: linear-gradient(135deg, #FF6B35 0%, #FF4444 100%);
}

.node-teal-spw3 {
  background: linear-gradient(135deg, #1D9A92 0%, #00D4FF 100%);
}

.node-purple-spw3 {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
}

.node-blue-spw3 {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.node-inner-spw3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.node-ripple-spw3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 3px solid currentColor;
  color: inherit;
  opacity: 0.4;
  animation: nodeRipple-spw3 2s ease-in-out infinite;
}

@keyframes nodeRipple-spw3 {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.timeline-item-spw3:hover .node-outer-spw3 {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.2),
    inset 0 2px 8px rgba(255, 255, 255, 0.4);
}

/* ============================================
   CONTENT CARDS
   ============================================ */

.content-card-spw3 {
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.98) 0%, 
      rgba(255, 255, 255, 0.95) 100%
    );
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 28px;
  border: 2px solid;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-orange-spw3 {
  border-color: rgba(255, 107, 53, 0.2);
}

.card-teal-spw3 {
  border-color: rgba(29, 154, 146, 0.2);
}

.card-purple-spw3 {
  border-color: rgba(139, 92, 246, 0.2);
}

.card-blue-spw3 {
  border-color: rgba(59, 130, 246, 0.2);
}

.content-card-spw3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card-orange-spw3::before {
  background: radial-gradient(circle at 50% 0%, 
    rgba(255, 107, 53, 0.15) 0%, 
    transparent 70%
  );
}

.card-teal-spw3::before {
  background: radial-gradient(circle at 50% 0%, 
    rgba(29, 154, 146, 0.15) 0%, 
    transparent 70%
  );
}

.card-purple-spw3::before {
  background: radial-gradient(circle at 50% 0%, 
    rgba(139, 92, 246, 0.15) 0%, 
    transparent 70%
  );
}

.card-blue-spw3::before {
  background: radial-gradient(circle at 50% 0%, 
    rgba(59, 130, 246, 0.15) 0%, 
    transparent 70%
  );
}

.timeline-item-spw3:hover .content-card-spw3 {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 50px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.timeline-item-spw3:hover .content-card-spw3::before {
  opacity: 1;
}

/* ============================================
   CARD HEADER
   ============================================ */

.card-header-spw3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.timeline-left-spw3 .card-header-spw3 {
  flex-direction: row-reverse;
}

.step-label-spw3 {
  padding: 6px 14px;
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.1) 0%, 
    rgba(29, 154, 146, 0.1) 100%
  );
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FF6B35;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-icon-spw3 {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.15),
    inset 0 -1px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.icon-orange-spw3 {
  background: linear-gradient(135deg, #FF6B35 0%, #FF4444 100%);
}

.icon-teal-spw3 {
  background: linear-gradient(135deg, #1D9A92 0%, #00D4FF 100%);
}

.icon-purple-spw3 {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
}

.icon-blue-spw3 {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.timeline-item-spw3:hover .step-icon-spw3 {
  transform: scale(1.1) rotate(-10deg);
}

/* ============================================
   CARD CONTENT
   ============================================ */

.step-heading-spw3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.step-text-spw3 {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ============================================
   STEP LIST
   ============================================ */

.step-list-spw3 {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-list-spw3 li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
  transition: all 0.3s ease;
}



.step-list-spw3 li i {
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.card-orange-spw3 .step-list-spw3 li i {
  color: #FF6B35;
}

.card-teal-spw3 .step-list-spw3 li i {
  color: #1D9A92;
}

.card-purple-spw3 .step-list-spw3 li i {
  color: #8B5CF6;
}

.card-blue-spw3 .step-list-spw3 li i {
  color: #3B82F6;
}

.timeline-item-spw3:hover .step-list-spw3 li {
  transform: translateX(4px);
}

.timeline-left-spw3:hover .step-list-spw3 li {
  transform: translateX(-4px);
}

.timeline-item-spw3:hover .step-list-spw3 li i {
  transform: scale(1.2);
}

/* ============================================
   STEP META
   ============================================ */

.step-meta-spw3 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.timeline-left-spw3 .step-meta-spw3 {
  justify-content: flex-start;
}

.meta-duration-spw3,
.meta-priority-spw3 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.meta-duration-spw3 {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #FF6B35;
}

.meta-duration-spw3 i {
  font-size: 0.6875rem;
}

.meta-priority-spw3 {
  background: rgba(29, 154, 146, 0.1);
  border: 1px solid rgba(29, 154, 146, 0.3);
  color: #1D9A92;
}

/* ============================================
   TIMELINE CTA
   ============================================ */

.timeline-cta-spw3 {
  text-align: center;
  margin-top: 60px;
  padding: 40px 32px;
  background: 
    linear-gradient(135deg, 
      rgba(15, 23, 42, 0.97) 0%, 
      rgba(30, 41, 59, 0.95) 50%,
      rgba(51, 65, 85, 0.97) 100%
    );
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.timeline-cta-spw3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 0% 0%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(29, 154, 146, 0.15) 0%, transparent 50%);
}

.cta-title-spw3 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-text-spw3 {
  font-size: 1.0625rem;
  color: #cbd5e1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-button-spw3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, 
    #FF6B35 0%, 
    #FF8F6B 50%, 
    #1D9A92 100%
  );
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.cta-button-spw3:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 36px rgba(255, 107, 53, 0.6);
}

.cta-button-spw3 i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.cta-button-spw3:hover i {
  transform: translateX(4px);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */

.timeline-floats-spw3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.float-element-spw3 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(80px);
}

.float-1-spw3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, 
    rgba(255, 107, 53, 0.3) 0%, 
    transparent 70%
  );
  top: 100px;
  right: -150px;
  animation: float1-spw3 20s ease-in-out infinite;
}

.float-2-spw3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, 
    rgba(29, 154, 146, 0.3) 0%, 
    transparent 70%
  );
  bottom: 150px;
  left: -120px;
  animation: float2-spw3 18s ease-in-out infinite;
}

@keyframes float1-spw3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-30px, 30px) rotate(240deg); }
}

@keyframes float2-spw3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-25px, 25px) rotate(-120deg); }
  66% { transform: translate(25px, -25px) rotate(-240deg); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .timeline-main-title-spw3 {
    font-size: 2.25rem;
  }
  
  .timeline-left-spw3 .timeline-content-spw3 {
    padding-right: 30px;
  }
  
  .timeline-right-spw3 .timeline-content-spw3 {
    padding-left: 30px;
  }
}

@media (max-width: 968px) {
  .strategy-process-section-spw3 {
    padding: 60px 20px;
  }
  
  .timeline-main-title-spw3 {
    font-size: 2rem;
  }
  
  .strategy-timeline-header-spw3 {
    margin-bottom: 40px;
  }
  
  /* Stack vertically on mobile */
  .timeline-item-spw3 {
    grid-template-columns: auto 1fr;
    gap: 0;
    margin-bottom: 30px;
  }
  
  .timeline-spine-spw3 {
    left: 32px;
  }
  
  .timeline-node-spw3 {
    padding-top: 10px;
  }
  
  .node-outer-spw3 {
    width: 56px;
    height: 56px;
  }
  
  .node-inner-spw3 {
    font-size: 1.25rem;
  }
  
  .timeline-left-spw3 .timeline-content-spw3,
  .timeline-right-spw3 .timeline-content-spw3 {
    text-align: left;
    padding-left: 30px;
    padding-right: 0;
  }
  
  .timeline-left-spw3 .card-header-spw3 {
    flex-direction: row;
  }
  
  .timeline-left-spw3 .step-list-spw3 li {
    flex-direction: row;
    text-align: left;
  }
  
  .timeline-left-spw3 .step-meta-spw3 {
    justify-content: flex-start;
  }
  
  .timeline-spacer-spw3 {
    display: none;
  }
  
  .timeline-left-spw3:hover .step-list-spw3 li {
    transform: translateX(4px);
  }
}

@media (max-width: 768px) {
  .strategy-process-section-spw3 {
    padding: 50px 16px;
  }
  
  .timeline-main-title-spw3 {
    font-size: 1.75rem;
  }
  
  .timeline-subtitle-spw3 {
    font-size: 0.9375rem;
  }
  
  .content-card-spw3 {
    padding: 24px 20px;
  }
  
  .step-heading-spw3 {
    font-size: 1.1875rem;
  }
  
  .step-text-spw3 {
    font-size: 0.875rem;
  }
  
  .step-icon-spw3 {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
  }
  
  .node-outer-spw3 {
    width: 48px;
    height: 48px;
  }
  
  .node-inner-spw3 {
    font-size: 1.125rem;
  }
  
  .timeline-left-spw3 .timeline-content-spw3,
  .timeline-right-spw3 .timeline-content-spw3 {
    padding-left: 20px;
  }
  
  /* Force correct order in tablet/mobile */
  .timeline-left-spw3 .card-header-spw3,
  .timeline-right-spw3 .card-header-spw3 {
    flex-direction: row !important;
    justify-content: space-between !important;
  }
  
  .timeline-left-spw3 .step-icon-spw3,
  .timeline-right-spw3 .step-icon-spw3 {
    order: 2 !important;
  }
  
  .timeline-left-spw3 .step-label-spw3,
  .timeline-right-spw3 .step-label-spw3 {
    order: 1 !important;
  }
  
  .timeline-cta-spw3 {
    padding: 32px 24px;
    margin-top: 40px;
  }
  
  .cta-title-spw3 {
    font-size: 1.5rem;
  }
  
  .cta-text-spw3 {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .strategy-process-section-spw3 {
    padding: 40px 14px;
  }
  
  .timeline-main-title-spw3 {
    font-size: 1.5rem;
  }
  
  .timeline-badge-spw3 {
    font-size: 0.75rem;
    padding: 7px 16px;
  }
  
  .content-card-spw3 {
    padding: 20px 16px;
  }
  
  .step-heading-spw3 {
    font-size: 1.0625rem;
  }
  
  .step-text-spw3 {
    font-size: 0.8125rem;
  }
  
  .step-list-spw3 li {
    font-size: 0.8125rem;
  }
  
  .step-icon-spw3 {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .node-outer-spw3 {
    width: 44px;
    height: 44px;
  }
  
  .node-inner-spw3 {
    font-size: 1rem;
  }
  
  .timeline-spine-spw3 {
    left: 22px;
  }
  
  .timeline-left-spw3 .timeline-content-spw3,
  .timeline-right-spw3 .timeline-content-spw3 {
    padding-left: 16px;
  }
  
  /* Force correct order in mobile */
  .timeline-left-spw3 .card-header-spw3,
  .timeline-right-spw3 .card-header-spw3 {
    flex-direction: row !important;
    justify-content: space-between !important;
  }
  
  .timeline-left-spw3 .step-icon-spw3,
  .timeline-right-spw3 .step-icon-spw3 {
    order: 2 !important;
  }
  
  .timeline-left-spw3 .step-label-spw3,
  .timeline-right-spw3 .step-label-spw3 {
    order: 1 !important;
  }
  
  .timeline-cta-spw3 {
    padding: 28px 20px;
  }
  
  .cta-title-spw3 {
    font-size: 1.25rem;
  }
  
  .cta-button-spw3 {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }
  .strategy-process-section-spw3 {padding: 2rem 1rem;}
  .strategy-timeline-header-spw3 {text-align: center;margin-bottom: 2rem;}
  .timeline-main-title-spw3 {font-size: 1.875rem;}

  /* Mobile: Force label left, icon right for ALL steps */
  .timeline-left-spw3 .card-header-spw3,
  .timeline-right-spw3 .card-header-spw3 {
    flex-direction: row !important;
    justify-content: space-between !important;
  }

  .timeline-left-spw3 .step-label-spw3,
  .timeline-right-spw3 .step-label-spw3 {
    order: 1 !important;
  }

  .timeline-left-spw3 .step-icon-spw3,
  .timeline-right-spw3 .step-icon-spw3 {
    order: 2 !important;
  }

  .timeline-content-spw3 {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .timeline-container-spw3 {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .timeline-spine-spw3 {left: 25px !important;transform: none !important;}
  .timeline-node-spw3 {
    position: absolute;
    left: -17px !important;
    transform: translateX(50%) !important;
  }

  .timeline-content-spw3 {margin-left: 40px !important;width: calc(100% - 60px);}

  .timeline-left-spw3,
  .timeline-right-spw3 {
    flex-direction: row !important;
    align-items: flex-start;
  }

  .timeline-item-spw3 {margin-bottom: 15px;position: relative;}
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.content-card-spw3:focus-visible,
.cta-button-spw3:focus-visible {
  outline: 3px solid #FF6B35;
  outline-offset: 4px;
}