/* OriumAI - Premium "How It Works" Section - TOP-TIER DESIGN */
/* Professional dark theme with floating elements and smooth animations */

/* ============================================
   PREMIUM DARK HERO PROCESS SECTION
   ============================================ */

.beast-process-section {
  background: linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 50%, #13131f 100%);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

/* Animated gradient orbs in background */
.beast-process-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(93, 76, 218, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat1 15s ease-in-out infinite;
}

.beast-process-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat2 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.05); }
}

/* Section Header - Centered Premium */
.beast-section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.beast-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(93, 76, 218, 0.2) 0%, rgba(120, 103, 232, 0.1) 100%);
  border: 1px solid rgba(93, 76, 218, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #a5b4fc;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.beast-section-tag i {
  color: #10b981;
}

.beast-section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.beast-section-title .gradient-text {
  background: linear-gradient(135deg, #5D4CDA 0%, #7867E8 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.beast-section-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.beast-section-subtitle strong {
  color: #a5b4fc;
  font-weight: 600;
}

/* ============================================
   HORIZONTAL STEPS - PREMIUM CARDS
   ============================================ */

.beast-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

/* Advanced Animated Connection Line */
.beast-steps-grid {
  position: relative;
}

.beast-steps-grid::before {
  content: '';
  position: absolute;
  top: 78px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: rgba(93, 76, 218, 0.15);
  z-index: 0;
  border-radius: 2px;
}

.beast-steps-grid::after {
  content: '';
  position: absolute;
  top: 78px;
  left: 12%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #5D4CDA, #7867E8, #a78bfa, #5D4CDA);
  background-size: 200% 100%;
  z-index: 0;
  border-radius: 2px;
  animation: lineGrow 2s ease-out forwards, lineShimmer 3s ease-in-out infinite;
  animation-delay: 0.5s, 2.5s;
  box-shadow: 0 0 20px rgba(93, 76, 218, 0.5), 0 0 40px rgba(93, 76, 218, 0.3);
}

@keyframes lineGrow {
  0% { width: 0; }
  100% { width: 76%; }
}

@keyframes lineShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Animated dots on the line */
.beast-steps-connector {
  position: absolute;
  top: 73px;
  left: 12%;
  right: 12%;
  height: 14px;
  z-index: 1;
  pointer-events: none;
}

.connector-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #5D4CDA;
  border: 3px solid #0f0f1a;
  border-radius: 50%;
  transform: scale(0);
  animation: dotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  box-shadow: 0 0 15px rgba(93, 76, 218, 0.6);
}

.connector-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: dotGlow 2s ease-in-out infinite;
}

@keyframes dotPop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

@keyframes dotGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.connector-dot:nth-child(1) { left: 0; animation-delay: 0.8s; }
.connector-dot:nth-child(2) { left: 33.33%; animation-delay: 1.2s; }
.connector-dot:nth-child(3) { left: 66.66%; animation-delay: 1.6s; }
.connector-dot:nth-child(4) { right: 0; left: auto; animation-delay: 2s; }

/* Pulse effect from active dot */
.connector-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #5D4CDA;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* Individual Step Card */
.beast-step-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(30px);
  backdrop-filter: blur(20px);
}

.beast-step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.beast-step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(93, 76, 218, 0.4);
  box-shadow: 0 20px 40px rgba(93, 76, 218, 0.15);
}

/* Step Number Badge */
.beast-step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #5D4CDA 0%, #7867E8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 8px 24px rgba(93, 76, 218, 0.4);
  position: relative;
  z-index: 2;
}

/* Animated Icon Container */
.beast-step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(93, 76, 218, 0.15) 0%, rgba(120, 103, 232, 0.08) 100%);
  border: 1px solid rgba(93, 76, 218, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: all 0.4s ease;
}

.beast-step-card:hover .beast-step-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(93, 76, 218, 0.25) 0%, rgba(120, 103, 232, 0.15) 100%);
}

.beast-step-icon i {
  font-size: 32px;
  background: linear-gradient(135deg, #5D4CDA 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Step Title & Description */
.beast-step-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.beast-step-card-desc {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Step Highlight Stat */
.beast-step-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(93, 76, 218, 0.15);
  border: 1px solid rgba(93, 76, 218, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #a5b4fc;
}

.beast-step-stat i {
  background: none;
  -webkit-text-fill-color: #a5b4fc;
  color: #a5b4fc;
}

/* ============================================
   SHOWCASE SECTION - PHONE + FEATURES
   ============================================ */

.beast-showcase {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Features List - Left/Right */
.beast-showcase-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.beast-showcase-features.left {
  text-align: right;
}

.beast-showcase-features.right {
  text-align: left;
}

/* Individual Feature */
.beast-showcase-feature {
  padding: 20px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateX(-30px);
}

.beast-showcase-features.right .beast-showcase-feature {
  transform: translateX(30px);
}

.beast-showcase-feature.visible {
  opacity: 1;
  transform: translateX(0);
}

.beast-showcase-feature:hover {
  border-color: rgba(93, 76, 218, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.beast-showcase-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(93, 76, 218, 0.2) 0%, rgba(120, 103, 232, 0.1) 100%);
  border-radius: 12px;
  margin-bottom: 12px;
}

.beast-showcase-features.left .beast-showcase-feature-icon {
  float: right;
  margin-left: 16px;
  margin-bottom: 0;
}

.beast-showcase-features.right .beast-showcase-feature-icon {
  float: left;
  margin-right: 16px;
  margin-bottom: 0;
}

.beast-showcase-feature-icon i {
  font-size: 20px;
  color: #a78bfa;
}

.beast-showcase-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.beast-showcase-feature-desc {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* Center Phone Mockup */
.beast-showcase-phone {
  position: relative;
}

.beast-phone-container {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

.beast-phone-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #0f0f1a;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.beast-phone-screen-new {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 32px;
  overflow: hidden;
  min-height: 480px;
  position: relative;
}

.beast-phone-content {
  padding: 48px 16px 20px;
}

/* App Header in Phone */
.beast-phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.beast-phone-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #5D4CDA 0%, #7867E8 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.beast-phone-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.beast-phone-logo {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #5D4CDA 0%, #7867E8 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(93, 76, 218, 0.3);
}

/* Score Card in Phone - Enhanced Design */
.beast-phone-score-card {
  background: linear-gradient(145deg, #4338ca 0%, #5D4CDA 35%, #7867E8 65%, #8b5cf6 100%);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(93, 76, 218, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Animated circular gauge ring */
.beast-phone-score-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: scoreRingPulse 3s ease-in-out infinite;
}

.beast-phone-score-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%);
  border: 2px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: scoreRingSpin 20s linear infinite;
}

@keyframes scoreRingPulse {
  0%, 100% { 
    opacity: 0.3; 
    transform: translate(-50%, -50%) scale(1); 
    border-color: rgba(255, 255, 255, 0.1);
  }
  50% { 
    opacity: 0.7; 
    transform: translate(-50%, -50%) scale(1.08); 
    border-color: rgba(16, 185, 129, 0.4);
  }
}

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

/* Floating particles inside score card */
.beast-phone-score-card .score-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: particleFloat 4s ease-in-out infinite;
}

.beast-phone-score-card .score-particle:nth-child(1) {
  top: 20%; left: 15%;
  animation-delay: 0s;
}
.beast-phone-score-card .score-particle:nth-child(2) {
  top: 70%; left: 25%;
  animation-delay: 1s;
}
.beast-phone-score-card .score-particle:nth-child(3) {
  top: 30%; right: 20%;
  animation-delay: 2s;
}
.beast-phone-score-card .score-particle:nth-child(4) {
  bottom: 25%; right: 15%;
  animation-delay: 0.5s;
}

@keyframes particleFloat {
  0%, 100% { 
    opacity: 0.3; 
    transform: translateY(0) scale(1); 
  }
  50% { 
    opacity: 0.8; 
    transform: translateY(-8px) scale(1.3); 
  }
}

.beast-phone-score-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.beast-phone-score-value {
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: scoreCountUp 0.8s ease-out;
}

@keyframes scoreCountUp {
  0% { 
    opacity: 0; 
    transform: translateY(10px) scale(0.9); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

.beast-phone-score-change {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.25);
  backdrop-filter: blur(4px);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #4ade80;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(16, 185, 129, 0.3);
  animation: changeGlow 2s ease-in-out infinite;
}

@keyframes changeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
  50% { box-shadow: 0 0 12px 2px rgba(16, 185, 129, 0.3); }
}

/* Progress Items in Phone */
.beast-phone-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.beast-phone-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.beast-phone-item-name {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.beast-phone-item-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
}

.beast-phone-item-status.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.beast-phone-item-status.pending {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.beast-phone-item-status.negative {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* Floating Badges Around Phone */
.beast-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  z-index: 10;
  animation: floatBadge 4s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.beast-floating-badge.badge-1 {
  top: 20px;
  left: -100px;
  animation-delay: 0s;
}

.beast-floating-badge.badge-2 {
  top: 50%;
  right: -110px;
  animation-delay: 1s;
}

.beast-floating-badge.badge-3 {
  bottom: 40px;
  left: -90px;
  animation-delay: 2s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.beast-floating-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.beast-floating-badge-icon.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.beast-floating-badge-icon.purple {
  background: linear-gradient(135deg, #5D4CDA 0%, #7867E8 100%);
  color: white;
}

.beast-floating-badge-icon.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
}

/* ============================================
   TRUST BAR - SOCIAL PROOF
   ============================================ */

.beast-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

.beast-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  font-size: 0.9375rem;
}

.beast-trust-item i {
  font-size: 20px;
  color: #5D4CDA;
}

.beast-trust-item strong {
  color: #ffffff;
  font-weight: 600;
}

.beast-trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .beast-showcase {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .beast-showcase-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center !important;
  }
  
  .beast-showcase-features.left,
  .beast-showcase-features.right {
    text-align: center;
  }
  
  .beast-showcase-features.left .beast-showcase-feature-icon,
  .beast-showcase-features.right .beast-showcase-feature-icon {
    float: none;
    margin: 0 auto 12px;
  }
  
  .beast-showcase-feature {
    width: 280px;
    transform: translateY(20px);
  }
  
  .beast-showcase-features.right .beast-showcase-feature {
    transform: translateY(20px);
  }
  
  .beast-floating-badge {
    display: none;
  }
}

@media (max-width: 991px) {
  .beast-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .beast-steps-grid::before {
    display: none;
  }
  
  .beast-section-title {
    font-size: 2.5rem;
  }
  
  .beast-trust-bar {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .beast-trust-divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .beast-process-section {
    padding: 80px 0;
  }
  
  .beast-steps-grid {
    grid-template-columns: 1fr;
  }
  
  .beast-section-title {
    font-size: 2rem;
  }
  
  .beast-section-header {
    margin-bottom: 50px;
  }
  
  .beast-step-card {
    padding: 24px 20px;
  }
  
  .beast-showcase-feature {
    width: 100%;
  }
  
  .beast-phone-container {
    max-width: 260px;
  }
  
  .beast-trust-bar {
    flex-direction: column;
    gap: 16px;
  }
}

/* Animation delays for staggered entrance */
.beast-step-card:nth-child(1) { transition-delay: 0s; }
.beast-step-card:nth-child(2) { transition-delay: 0.1s; }
.beast-step-card:nth-child(3) { transition-delay: 0.2s; }
.beast-step-card:nth-child(4) { transition-delay: 0.3s; }

.beast-showcase-feature:nth-child(1) { transition-delay: 0.1s; }
.beast-showcase-feature:nth-child(2) { transition-delay: 0.2s; }
.beast-showcase-feature:nth-child(3) { transition-delay: 0.3s; }

/* ============================================
   ANIMATED PHONE STEPS SECTION (V2)
   ============================================ */

.beast-animated-steps-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.beast-animated-steps-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93, 76, 218, 0.2), transparent);
}

.beast-step-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.beast-step-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.beast-step-row.reverse {
  flex-direction: row-reverse;
}

.beast-step-row:last-child {
  margin-bottom: 0;
}

.beast-device-mockup {
  flex: 1;
  max-width: 380px;
  position: relative;
  overflow: visible;
  margin: 0 40px;
}

.beast-phone-frame-v2 {
  background: #ffffff;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.beast-phone-frame-v2::before {
  display: none;
}

.beast-phone-screen-v2 {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
  position: relative;
}

.beast-screen-content-v2 {
  padding: 48px 20px 20px;
}

.beast-app-header-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease 0.3s;
}

.beast-step-row.visible .beast-app-header-v2 {
  opacity: 1;
  transform: translateY(0);
}

.beast-app-logo-v2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
}

.beast-app-logo-icon-v2 {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #5D4CDA 0%, #7867E8 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.beast-card-v2 {
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.beast-step-row.visible .beast-card-v2:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }
.beast-step-row.visible .beast-card-v2:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.5s; }
.beast-step-row.visible .beast-card-v2:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.6s; }
.beast-step-row.visible .beast-card-v2:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.7s; }

.beast-btn-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #5D4CDA 0%, #7867E8 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}

.beast-btn-v2::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btnShineV2 3s infinite;
}

@keyframes btnShineV2 {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.beast-checklist-v2 {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.beast-checklist-v2 li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: #475569;
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.4s ease;
}

.beast-step-row.visible .beast-checklist-v2 li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.5s; }
.beast-step-row.visible .beast-checklist-v2 li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.6s; }
.beast-step-row.visible .beast-checklist-v2 li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.7s; }

.beast-check-icon-v2 {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  flex-shrink: 0;
}

.beast-float-badge-v2 {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  animation: floatBounceV2 3s ease-in-out infinite;
  white-space: nowrap;
  z-index: 5;
}

@keyframes floatBounceV2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.beast-float-badge-v2.success { border-left: 3px solid #10b981; }
.beast-float-badge-v2.warning { border-left: 3px solid #f59e0b; }
.beast-float-badge-v2.info { border-left: 3px solid #5D4CDA; }

.beast-step-text {
  flex: 1;
  max-width: 480px;
}

.beast-step-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #5D4CDA 0%, #7867E8 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(93, 76, 218, 0.35);
}

.beast-step-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.beast-step-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 24px;
}

.beast-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.beast-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(93, 76, 218, 0.08) 0%, rgba(120, 103, 232, 0.08) 100%);
  border: 1px solid rgba(93, 76, 218, 0.15);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #5D4CDA;
}

.beast-pill i { font-size: 12px; }

.beast-score-display {
  width: 120px;
  height: 120px;
  position: relative;
  margin: 0 auto 16px;
}

.beast-score-ring-v2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#10b981 0deg, #10b981 252deg, #e2e8f0 252deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.beast-score-ring-v2::before {
  content: '';
  position: absolute;
  width: 88px;
  height: 88px;
  background: white;
  border-radius: 50%;
}

.beast-score-num {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.beast-progress-v2 {
  height: 8px;
  background: #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 12px;
}

.beast-progress-fill-v2 {
  height: 100%;
  background: linear-gradient(90deg, #5D4CDA 0%, #10b981 100%);
  border-radius: 8px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.beast-step-row.visible .beast-progress-fill-v2 {
  width: 85%;
}

.beast-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.4s ease;
}

.beast-step-row.visible .beast-item-row:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }
.beast-step-row.visible .beast-item-row:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.5s; }
.beast-step-row.visible .beast-item-row:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.6s; }

.beast-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.beast-status.negative { background: rgba(239, 68, 68, 0.1); color: #dc2626; }
.beast-status.pending { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.beast-status.success { background: rgba(16, 185, 129, 0.1); color: #059669; }

.beast-letter-preview-v2 {
  background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255,255,255,0.8);
  padding: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.beast-letter-preview-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(135deg, #5D4CDA 0%, #7867E8 100%);
  border-radius: 12px 12px 0 0;
  margin: -20px -20px 0;
}

.beast-letter-preview-v2::after {
  content: 'DISPUTE LETTER';
  position: absolute;
  top: 6px;
  left: 20px;
  font-size: 10px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.beast-letter-lines-v2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.beast-letter-line-v2 {
  height: 10px;
  background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 100%);
  border-radius: 5px;
  opacity: 0;
  animation: typeInV2 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  overflow: hidden;
}

.beast-letter-line-v2::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: lineShimmerV2 2s ease-in-out infinite;
}

@keyframes lineShimmerV2 {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes typeInV2 {
  from { width: 0; opacity: 0; }
  to { width: var(--line-width, 100%); opacity: 1; }
}

.beast-step-row.visible .beast-letter-line-v2:nth-child(1) { animation-delay: 0.4s; --line-width: 75%; }
.beast-step-row.visible .beast-letter-line-v2:nth-child(2) { animation-delay: 0.55s; --line-width: 100%; }
.beast-step-row.visible .beast-letter-line-v2:nth-child(3) { animation-delay: 0.7s; --line-width: 88%; }
.beast-step-row.visible .beast-letter-line-v2:nth-child(4) { animation-delay: 0.85s; --line-width: 65%; }

.beast-mail-anim {
  position: relative;
  height: 80px;
  margin-top: 16px;
  overflow: hidden;
}

.beast-mail-path-v2 {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e2e8f0 0%, #5D4CDA 50%, #10b981 100%);
  border-radius: 2px;
}

.beast-mail-truck-v2 {
  position: absolute;
  bottom: 20px;
  left: -60px;
  font-size: 40px;
  color: #5D4CDA;
  transition: left 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.beast-step-row.visible .beast-mail-truck-v2 {
  left: calc(100% - 50px);
}

/* Responsive for V2 Section */
@media (max-width: 991px) {
  .beast-step-row,
  .beast-step-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .beast-step-text {
    order: 2;
    max-width: 100%;
  }
  
  .beast-device-mockup {
    order: 1;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .beast-float-badge-v2 {
    display: none !important;
  }
  
  .beast-pills {
    justify-content: center;
  }
  
  .beast-step-heading {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .beast-animated-steps-section {
    padding: 60px 0;
  }
  
  .beast-step-row {
    margin-bottom: 60px;
  }
  
  .beast-phone-frame-v2 {
    border-radius: 24px;
    padding: 8px;
  }
  
  .beast-phone-screen-v2 {
    min-height: 320px;
  }
}
