/* Slide 9 - Pre-Seed Investment */
.slide9-content {
  display: flex;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  padding: 0;
  width: 1600px;
  height: 950px;
}


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

}

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


.slide9-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.slide-container-9 {
  width: 100%;
  max-width: 1400px;
  position: relative;
  display: flex;
  margin: auto;
}


.investment-left-9 {
  width: 65%;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.investment-title-9 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.02em;
}

.investment-card-9 {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.investment-card-9::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
}

.investment-header-9 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(34, 197, 94, 0.1);
}

.check-icon-9 {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
  position: relative;
}

.check-icon-9::before {
  content: '';
  position: absolute;
  width: 65px;
  height: 65px;
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 16px;
  animation: pulse 2s infinite;
}

.check-icon-9 img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.investment-header-9 h2 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin: 0;
}

.investment-goals-9 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.goal-item-9 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.goal-item-9:hover {
  transform: translateX(10px);
  color: #1f2937;
}

.goal-bullet-9 {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.goal-bullet-9::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* ------------------------------------------------------------------- */

/* Desktop Small (1020px - 1440px) */
@media (min-width: 1024px) and (max-width: 1600px) and (min-height: 500px) {
  .slide9-content {
    padding: 0;
  }

  .slide-container-9 {
    max-width: 1000px;
    padding: 0 30px;
    margin: auto;
  }

  .investment-right-9 {
    display: none !important;
  }

  .investment-left-9 {
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
  }

  .investment-title-9 {
    font-size: 3rem;
    margin-bottom: 40px;
  }

  .investment-card-9 {
    padding: 35px;
    border-radius: 22px;
    margin-bottom: 35px;
  }

  .investment-header-9 {
    gap: 18px;
    margin-bottom: 30px;
    padding-bottom: 22px;
  }

  .check-icon-9 {
    width: 65px;
    height: 65px;
    border-radius: 18px;
  }

  .check-icon-9::before {
    width: 90px;
    height: 90px;
    border-radius: 22px;
  }

  .check-icon-9 img {
    width: 32px;
    height: 32px;
  }

  .investment-header-9 h2 {
    font-size: 2.5rem;
  }

  .goal-item-9 {
    gap: 16px;
    font-size: 1.15rem;
    padding: 12px 0;
  }

  .goal-bullet-9 {
    width: 11px;
    height: 11px;
  }

  .goal-bullet-9::before {
    width: 18px;
    height: 18px;
  }

  .investment-highlights-9 {
    gap: 25px;
  }

  .highlight-card-9 {
    padding: 22px 28px;
    border-radius: 18px;
    gap: 18px;
  }

  .highlight-card-9 img {
    width: 45px;
    height: 45px;
  }

  .highlight-info-9 h3 {
    font-size: 1.2rem;
  }

  .highlight-info-9 p {
    font-size: 0.9rem;
  }

  .investment-right-9 {
    display: none;
  }
}

/* Desktop Small (767px - 1020px) */
@media (min-width: 767px) and (max-width: 1020px) {
  .slide9-content {
    padding: 0;
  }


  .investment-left-9 {
    width: 100%;
    padding: 200px 30px;
    max-width: 900px;
    margin: 0 auto;
  }

  .investment-title-9 {
    font-size: 2.6rem;
    margin-bottom: 35px;
  }

  .investment-card-9 {
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
  }

  .investment-header-9 {
    gap: 16px;
    margin-bottom: 5px;
    padding-bottom: 20px;
  }

  .check-icon-9 {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .check-icon-9::before {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }

  .check-icon-9 img {
    width: 20px;
    height: 20px;
  }

  .investment-header-9 h2 {
    font-size: 1.6rem;
  }

  .investment-goals-9 {
    gap: 6px;
  }

  .goal-item-9 {
    gap: 15px;
    font-size: 1.1rem;
    padding: 10px 0;
  }

  .goal-bullet-9 {
    width: 10px;
    height: 10px;
  }

  .goal-bullet-9::before {
    width: 16px;
    height: 16px;
  }

  .investment-highlights-9 {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .highlight-card-9 {
    padding: 20px 25px;
    border-radius: 16px;
    gap: 16px;
    flex: 0 1 auto;
    min-width: 250px;
  }

  .highlight-card-9 img {
    width: 40px;
    height: 40px;
  }

  .highlight-info-9 h3 {
    font-size: 1.1rem;
  }

  .highlight-info-9 p {
    font-size: 0.85rem;
  }

  .investment-right-9 {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .slide9-content {
    padding: 0;
  }

  .investment-left-9 {
    width: 90%;
    padding: 90px 0;
    margin: 0 auto;
  }

  .investment-title-9 {
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.1;
  }

  .investment-card-9 {
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .investment-header-9 {
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 18px;
  }

  .check-icon-9 {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .check-icon-9::before {
    width: 65px;
    height: 65px;
    border-radius: 18px;
  }

  .check-icon-9 img {
    width: 25px;
    height: 25px;
  }

  .investment-header-9 h2 {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .investment-goals-9 {
    gap: 15px;
  }

  .goal-item-9 {
    gap: 12px;
    font-size: 0.95rem;
    padding: 8px 0;
  }

  .goal-bullet-9 {
    width: 8px;
    height: 8px;
  }

  .goal-bullet-9::before {
    width: 14px;
    height: 14px;
  }

  .investment-highlights-9 {
    display: none;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .highlight-card-9 {
    padding: 15px 20px;
    border-radius: 15px;
    gap: 15px;
    width: 100%;
    max-width: 300px;
  }

  .highlight-card-9 img {
    width: 35px;
    height: 35px;
  }

  .highlight-info-9 h3 {
    font-size: 1rem;
    margin-bottom: 3px;
  }

  .highlight-info-9 p {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .investment-right-9 {
    display: none !important;
  }
}

@media (max-height: 700px) {
  .slide9-content {
    padding-top: 150px;
    padding-bottom: 120px;
  }
}

.investment-highlights-9 {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.highlight-card-9 {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(34, 197, 94, 0.1);
  flex: 1;
  min-width: 150px;
  margin-bottom: 20px;
}

.highlight-card-9:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.highlight-card-9 img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.highlight-info-9 h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 3px;
  line-height: 1.2;
}

.highlight-info-9 p {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.3;
}

.investment-right-9 {
  display: none;
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  z-index: 2;
  position: relative;
}

.investment-right-9 img {
  width: 100%;
  max-width: 300px;
  height: 380px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.investment-right-9 img:hover {
  transform: scale(1.02);
}
