/* Slide 5 - Business Model */
.slide5-content {
  display: flex;
  background: linear-gradient(135deg, #fefbff 0%, #f8fafc 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  padding: 0;
  width: 1600px;
  height: 950px;
}


@media (max-width: 1800px) {
  .slide5-content {
    height: 100%;
    width: 100%;
  }

}

@media (max-height: 700px) {
  .slide5-content {
    height: unset;
  }

}






.slide5-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.business-left-5 {
  width: 65%;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.business-title-5 {
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 35px;
  background: linear-gradient(135deg, #6366f1 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.business-models-grid-5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.business-model-card-5 {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.business-model-card-5:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.model-header-5 {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}

.model-icon-5 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
  z-index: 2;
}

.model-icon-5.premium {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.model-icon-5.marketplace {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.model-icon-5.data {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.model-icon-5 img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.model-line-5 {
  flex: 1;
  height: 4px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 2px;
  margin-left: 15px;
}

.model-line-5.premium {
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.model-line-5.marketplace {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.model-line-5.data {
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}

.model-content-5 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.model-price-5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 8px;
}

.model-desc-5 {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
  font-weight: 500;
}

.revenue-highlights-5 {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 25px;
}

.revenue-stat-5 {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.revenue-stat-5:hover {
  transform: translateY(-5px);
}

.revenue-stat-5 img {
  width: 40px;
  height: 40px;
}

.stat-content-5 h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 3px;
}

.stat-content-5 p {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}

.business-right-5 {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 2;
  position: relative;
}

.business-right-5 img {
  width: 100%;
  max-width: 450px;
  height: 550px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.business-right-5 img:hover {
  transform: scale(1.02);
}






/* Desktop Small (1020px - 1440px) */
@media (min-width: 1024px) and (max-width: 1600px) and (min-height: 500px) {
  .slide5-content {
    flex-direction: column;
    padding: 150px 30px;
    gap: 30px;
  }

  .business-left-5 {
    width: 100%;
    padding: 0;
    margin: auto;
    max-width: 900px;
  }

  .business-title-5 {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }

  .business-models-grid-5 {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 25px;
  }

  .business-model-card-5 {
    padding: 18px;
    border-radius: 18px;
  }

  .model-icon-5 {
    width: 45px;
    height: 45px;
  }

  .model-icon-5 img {
    width: 24px;
    height: 24px;
  }

  .model-content-5 h3 {
    font-size: 1.05rem;
  }

  .model-price-5 {
    font-size: 0.9rem;
  }

  .model-desc-5 {
    font-size: 0.75rem;
  }

  .revenue-highlights-5 {
    gap: 25px;
    margin-top: 20px;
  }

  .revenue-stat-5 {
    padding: 15px 20px;
    border-radius: 18px;
  }

  .revenue-stat-5 img {
    width: 36px;
    height: 36px;
  }

  .stat-content-5 h4 {
    font-size: 0.95rem;
  }

  .stat-content-5 p {
    font-size: 0.75rem;
  }

  .business-right-5 {
    width: 100%;
    padding: 20px;
  }

  .business-right-5 img {
    max-width: 500px;
    height: 400px;
    border-radius: 20px;
  }

  .business-right-5 {
    display: none;
  }
}




/* Desktop Small (767px - 1020px) */
@media (min-width: 767px) and (max-width: 1100px) {
  .slide5-content {
    flex-direction: column;
    padding: 200px 25px;
    gap: 30px;
  }

  .business-left-5 {
    width: 100%;
    padding: 0;
    margin: auto;
    max-width: 700px;
  }

  .business-title-5 {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }

  .business-models-grid-5 {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }

  .business-model-card-5 {
    padding: 15px;
    border-radius: 15px;
  }

  .model-icon-5 {
    width: 40px;
    height: 40px;
  }

  .model-icon-5 img {
    width: 22px;
    height: 22px;
  }

  .model-content-5 h3 {
    font-size: 1rem;
  }

  .model-price-5 {
    font-size: 0.85rem;
  }

  .model-desc-5 {
    font-size: 0.7rem;
  }

  .revenue-highlights-5 {
    gap: 20px;
    margin-top: 15px;
  }

  .revenue-stat-5 {
    padding: 12px 18px;
    border-radius: 15px;
  }

  .revenue-stat-5 img {
    width: 32px;
    height: 32px;
  }

  .stat-content-5 h4 {
    font-size: 0.9rem;
  }

  .stat-content-5 p {
    font-size: 0.7rem;
  }

  .business-right-5 {
    display: none;
  }
}


@media (max-width: 767px) {
  .slide5-content {
    padding: 20px 0;
    gap: 8px;
    display: flex;
    margin: auto;
  }

  .business-left-5 {
    width: 90%;
    padding: 0;
    margin: auto;
  }

  .business-title-5 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .business-models-grid-5 {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 6px;
  }

  .business-model-card-5 {
    padding: 6px;
    border-radius: 8px;
  }

  .model-header-5 {
    margin-bottom: 4px;
  }

  .model-icon-5 {
    width: 24px;
    height: 24px;
  }

  .model-icon-5 img {
    width: 12px;
    height: 12px;
  }

  .model-line-5 {
    height: 2px;
    margin-left: 6px;
  }

  .model-content-5 h3 {
    font-size: 0.7rem;
    margin-bottom: 2px;
  }

  .model-price-5 {
    font-size: 0.65rem !important;
    margin-bottom: 2px !important;
  }

  .model-desc-5 {
    font-size: 0.55rem !important;
    line-height: 1.1 !important;
  }

  .revenue-highlights-5 {
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
    align-items: center;
  }

  .revenue-stat-5 {
    padding: 6px 10px;
    border-radius: 8px;
    width: 100%;
    max-width: 240px;
  }

  .revenue-stat-5 img {
    width: 20px;
    height: 20px;
  }

  .stat-content-5 h4 {
    font-size: 0.7rem;
  }

  .stat-content-5 p {
    font-size: 0.55rem;
  }

  .business-right-5 {
    display: none;
  }
}

