.product-hero {
  position: relative;
  background-image: url("../images/svg/product-bg.svg");
  background-size: cover;
  background-position: bottom;
  margin-top: -100px;
  padding: 200px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-img img {
  width: 100%;
  height: auto;
}

.product-hero-title {
  font-size: clamp(2rem, 5vw, 50px); /* Responsive font size */
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left;
}

.main-title .highlight {
  color: #00d4aa;
}

.description-text {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

.email-section {
  margin-bottom: 40px;
}

.email-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 8px 8px 8px 25px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.email-input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  padding: 8px 15px;
  font-size: 1rem;
  color: #333;
  width: 100%;
}

.email-input::placeholder {
  color: #999;
}





.action-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}



.btn-download {
  background: transparent;
  color: #fff;
  border: 1px solid #ffffff;
  padding: 10px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-download:hover {
  background: #8b45ff;
  color: white;
  transform: translateY(-2px);
  border-color: #8b45ff;
}

.illustration-container {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.people-group {
  position: relative;
  z-index: 3;
}

.person {
  position: absolute;
  width: 80px;
  height: 120px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.person-1 {
  background: linear-gradient(45deg, #4a90e2, #357abd);
  left: -40px;
  top: 20px;
  transform: rotate(-10deg);
}

.person-2 {
  background: linear-gradient(45deg, #f5a623, #d4901a);
  right: -40px;
  top: 60px;
  transform: rotate(10deg);
}

.video-cards {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
}

.video-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 15px;
  width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.video-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.card-1 .avatar {
  background: linear-gradient(45deg, #4a90e2, #357abd);
}

.card-2 .avatar {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.card-3 .avatar {
  background: linear-gradient(45deg, #f39c12, #d68910);
}

.video-card .name {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 5px;
}

.video-card .status {
  font-size: 0.8rem;
  color: #666;
}

.menu-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #666;
}

.plant-decoration {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 60px;
  height: 80px;
  background: linear-gradient(45deg, #00d4aa, #00b894);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  z-index: 1;
}

.plant-decoration::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 40px;
  background: linear-gradient(45deg, #00d4aa, #00b894);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.plant-pot {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 30px;
  background: linear-gradient(45deg, #8b7355, #6b5b47);
  border-radius: 0 0 20px 20px;
}

.video-player {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 20px;
  margin: 50px auto 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  height: auto;
  min-height: 300px;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.play-button:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.9);
}

.play-button i {
  margin-left: 5px;
}

.header {
  padding-top: 150px !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .product-hero {
    padding: 180px 0 80px;
  }

  .illustration-container {
    min-height: 350px;
  }
}

@media (max-width: 992px) {
  .product-hero {
    padding: 150px 0 60px;
    text-align: center;
  }

  .product-hero-title,
  .description-text {
    text-align: center;
  }

  .email-input-group {
    margin: 0 auto;
  }

  .action-buttons {
    justify-content: center;
  }

  .illustration-container {
    margin: 50px auto;
  }
}

@media (max-width: 768px) {
  .product-hero {
    padding: 120px 0 40px;
    min-height: 50vh;
  }

  .illustration-container {
    min-height: 300px;
    margin: 30px 0;
  }

  .video-cards {
    position: relative;
    right: auto;
    top: auto;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
  }

  .video-card {
    width: 150px;
    padding: 10px;
  }

  .action-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }

  .person {
    width: 60px;
    height: 90px;
    font-size: 1.5rem;
  }

  .person-1 {
    left: -20px;
  }

  .person-2 {
    right: -20px;
  }
}

@media (max-width: 576px) {
  .product-hero {
    padding: 150px 0 30px;
    min-height: 50vh;
    margin-top: 0;
  }

  .video-cards {
    flex-direction: column;
    align-items: center;
  }

  .video-card {
    width: 180px;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }



  .email-input-group {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 15px;
  }

  .email-input {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 12px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

 

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 400px) {
  .product-hero-title {
    font-size: 1.8rem;
  }

  .person {
    width: 50px;
    height: 75px;
    font-size: 1.2rem;
  }
}
