/* App Intro Section - White Background */
.app-intro {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Removed complex background animation for minimalism */

.app-intro .container {
  position: relative;
  z-index: 1;
}

.app-intro-header {
  text-align: center;
  margin-bottom: 4rem;
}

.app-intro-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.app-intro-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main content layout */
.app-intro-content {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Central app screenshot */
.app-intro-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-screenshot {
  position: relative;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.app-screenshot:hover {
  transform: translateY(-10px);
}

.app-screenshot img {
  width: 350px;
  height: auto;
  border-radius: 16px;
  transition: all 0.8s ease;
}

/* Floating elements around phone */
.app-intro-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.app-intro-features.left {
  align-items: flex-end;
  text-align: right;
}

.app-intro-features.right {
  align-items: flex-start;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 280px;
  padding: 1.25rem;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateX(30px);
  animation: slideInFeature 0.8s ease forwards;
  transition: all 0.2s ease;
}

.feature-item:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}

.app-intro-features.left .feature-item {
  flex-direction: row-reverse;
  transform: translateX(-30px);
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transition: all 0.8s ease;
}

.feature-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(59, 130, 246, 0.4);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}




/* Animations */
@keyframes slideInFeature {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Stats section at bottom */
.app-intro-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #e2e8f0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3b82f6;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: #64748b;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .app-intro-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .app-intro-features {
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .app-intro-features.left,
  .app-intro-features.right {
    text-align: center;
  }
  
  .app-intro-features.left .feature-item {
    flex-direction: row;
  }
  
  .feature-item {
    max-width: 350px;
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .app-intro {
    padding: 4rem 0;
  }
  
  .app-intro-header {
    margin-bottom: 3rem;
  }
  
  .app-screenshot img {
    width: 300px;
  }
  
  .app-intro-features {
    flex-direction: column;
    gap: 2rem;
  }
  
  .feature-item {
    max-width: 100%;
  }
  
  .app-intro-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .app-intro {
    padding: 3rem 0;
  }
  
  .app-intro-header {
    margin-bottom: 2.5rem;
  }
  
  .app-intro-title {
    font-size: 2rem;
  }
  
  .app-intro-subtitle {
    font-size: 1.1rem;
  }
  
  .app-screenshot img {
    width: 260px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .feature-content h3 {
    font-size: 1.1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  

  
  .app-intro-stats {
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .stat-item {
    flex: 1;
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 0.875rem;
  }
}