.green-font{
  background: linear-gradient(135deg, #47A50A 0%, #6BCB2E 30%, #7EE045 50%, #6BCB2E 70%, #47A50A 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(71, 165, 10, 0.3);
  animation: greenShimmer 3s ease infinite;
  position: relative;
}
.green-font::after{
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(135deg, #47A50A 0%, #6BCB2E 30%, #7EE045 50%, #6BCB2E 70%, #47A50A 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(8px);
  opacity: 0.5;
  animation: greenShimmer 3s ease infinite;
}
@keyframes greenShimmer{
  0%{
    background-position: 0% 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0% 50%;
  }
}
.hero-items{
  display: flex;
  align-items: center;

}
.hero-item{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 5px 0;
  border-radius: 20px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(71, 165, 10, 0.11) 100%);
  box-shadow: 
    0 4px 6px rgba(71, 165, 10, 0.05),
    0 8px 20px rgba(71, 165, 10, 0.08),
    0 15px 35px rgba(71, 165, 10, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: heroItemFadeIn 0.6s ease forwards;
  opacity: 0;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.hero-item::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(71, 165, 10, 0.3), transparent);
  animation: shimmer 3s infinite;
}
.hero-items > .col-lg-4:nth-child(2) .hero-item{
  animation-delay: 0.15s;
}
.hero-items > .col-lg-4:nth-child(3) .hero-item{
  animation-delay: 0.3s;
}
.hero-item:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 8px 15px rgba(71, 165, 10, 0.12),
    0 15px 35px rgba(71, 165, 10, 0.15),
    0 25px 50px rgba(71, 165, 10, 0.18);
}
.hero-item:hover .hero-item-desc{
  transform: scale(1.1);
}
@keyframes heroItemFadeIn{
  from{
    opacity: 0;
    transform: translateY(30px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer{
  0%{
    transform: translateX(-100%);
  }
  100%{
    transform: translateX(100%);
  }
}
@media (prefers-reduced-motion: reduce){
  .hero-item{
    animation: none;
    opacity: 1;
  }
  .hero-item::before{
    animation: none;
  }
  .hero-item:hover{
    transform: none;
  }
  .hero-item:hover .hero-item-desc{
    transform: none;
  }
}
.hero-item-title{
  color: rgba(102, 102, 102, 1);
  font-size: 13px;
  margin-bottom: 5px;
}
.hero-item-desc{
  color: rgba(71, 165, 10, 1);
  font-weight: 600;
  font-size: 30px;
  transition: transform 0.3s ease;
}
.hero-item-desc span{
  font-weight: 300;
  font-size: 16px;
}
.hero-items1{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.hero-item1{
  display: flex;
  align-items: center;
  font-size: 15px;
  color: black;
}
.hero-item1-img{
  margin-right: 5px;
}

.all-item{
  padding: 35px 20px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(246, 255, 242, 0.95) 100%);
  border-radius: 20px;
  box-shadow: 
    0 4px 6px rgba(71, 165, 10, 0.05),
    0 8px 20px rgba(71, 165, 10, 0.08),
    0 15px 35px rgba(71, 165, 10, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.all-item::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(71, 165, 10, 0.4), rgba(126, 224, 69, 0.6), rgba(71, 165, 10, 0.4), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.all-item::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(71, 165, 10, 0.05) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.all-item:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 8px 15px rgba(71, 165, 10, 0.12),
    0 15px 35px rgba(71, 165, 10, 0.15),
    0 25px 50px rgba(71, 165, 10, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
.all-item:hover::before{
  left: 100%;
}
.all-item:hover::after{
  opacity: 1;
}
@media (prefers-reduced-motion: reduce){
  .all-item{
    transition: none;
  }
  .all-item::before{
    transition: none;
    left: 0;
  }
  .all-item::after{
    transition: none;
    opacity: 0;
  }
  .all-item:hover{
    transform: none;
  }
}
.why-item-icon{
  display: inline-block;
  transition: all 0.3s ease;
}
.why-item-icon img{
  width: 50px;
  height: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.why-item-icon img::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(71, 165, 10, 0.2);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}
.all-item:hover .why-item-icon{
  transform: translateX(5px);
}
.all-item:hover .why-item-icon img{
  transform: rotate(10deg) scale(1.15);
  filter: drop-shadow(0 4px 12px rgba(71, 165, 10, 0.4));
}
.why-item-title{
  color: rgba(0, 0, 0, 1);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: -15px;
}
.why-item-title::after{
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(71, 165, 10, 1), rgba(126, 224, 69, 0.8));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.all-item:hover .why-item-title{
  color: rgba(71, 165, 10, 1);
  transform: translateX(5px);
}
.all-item:hover .why-item-title::after{
  width: 60%;
}
.why-item-desc{
  color: rgba(102, 102, 102, 1);
  font-size: 14px;
  line-height: 1.7;
  transition: all 0.3s ease;
}
.all-item:hover .why-item-desc{
  color: rgba(71, 165, 10, 0.8);
  transform: translateX(3px);
}
.why-item{
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.promo-section .promo-wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.promo-section .promo-wrap > div{
  display: flex;
  align-items: stretch;
}
.why-item-desc{
  flex: 1;
}
.need-item{
  position: relative;
  padding: 10px;
  text-align: center;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.need-item::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(71, 165, 10, 0.08), transparent);
  transition: left 0.6s ease;
}
.need-item:hover::before{
  left: 100%;
}
.need-item:hover{
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(71, 165, 10, 0.6);
  box-shadow: 0 25px 50px -12px rgba(71, 165, 10, 0.25), 0 0 0 1px rgba(71, 165, 10, 0.1);
}
.need-item-img{
  position: relative;
  margin-bottom: 25px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.need-item-img::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(71, 165, 10, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.need-item:hover .need-item-img{
  transform: translateY(-8px) rotate(5deg) scale(1.08);
}
.need-item:hover .need-item-img::after{
  opacity: 1;
}
.need-item-img img{
  width: 100%;
  max-width: 140px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(71, 165, 10, 0.15));
  transition: filter 0.4s ease;
}
.need-item:hover .need-item-img img{
  filter: drop-shadow(0 15px 30px rgba(71, 165, 10, 0.3));
}
.need-item-title{
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.need-item-title::after{
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(71, 165, 10, 1), rgba(102, 204, 51, 1));
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.need-item:hover .need-item-title{
  color: rgba(71, 165, 10, 1);
  transform: translateY(-3px);
}
.need-item:hover .need-item-title::after{
  width: 60%;
}
.need-item-desc{
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.need-item:hover .need-item-desc{
  color: rgba(71, 165, 10, 0.85);
  transform: translateY(-2px);
}
.section-heading h2{
  font-size: 32px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 20px;
}
.section-heading span{
  font-size: 16px;
  color: rgba(102, 102, 102, 1);
  line-height: 1.8;
  display: block;
  padding-bottom: 30px;
  position: relative;
}
.section-heading span::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 4px;
  background: linear-gradient(90deg, rgba(35, 149, 2, 1), rgba(130, 190, 23, 1));
  border-radius: 2px;
}
.how-item{
  position: relative;
  padding: 30px 15px;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.how-item::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(71, 165, 10, 0.05), transparent);
  transition: left 0.8s ease;
}
.how-item:hover::before{
  left: 100%;
}
.how-item:hover{
  transform: translateY(-15px) rotateX(2deg);
  border-color: rgba(71, 165, 10, 0.5);
  box-shadow: 0 30px 60px -15px rgba(71, 165, 10, 0.2), 0 0 0 2px rgba(71, 165, 10, 0.05);
}
.how-item-num{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(130, 190, 23, 1), rgba(35, 149, 2, 1));
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(71, 165, 10, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.how-item:hover .how-item-num{
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 12px 35px rgba(71, 165, 10, 0.5);
}
.how-item-img{
  margin-bottom: 25px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-item-img::after{
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(71, 165, 10, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.how-item:hover .how-item-img{
  transform: translateY(-10px) rotate(3deg);
}
.how-item:hover .how-item-img::after{
  opacity: 1;
}
.how-item-img img{
  margin-top: 10px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(71, 165, 10, 0.15));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-item:hover .how-item-img img{
  filter: drop-shadow(0 20px 40px rgba(71, 165, 10, 0.25));
  transform: scale(1.05);
}
.how-item-title{
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.how-item-title::after{
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(35, 149, 2, 1), rgba(130, 190, 23, 1));
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-item:hover .how-item-title{
  color: rgba(71, 165, 10, 1);
  transform: translateY(-5px);
}
.how-item:hover .how-item-title::after{
  width: 80px;
}
.how-item-desc{
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-item:hover .how-item-desc{
  color: rgba(71, 165, 10, 0.85);
  transform: translateY(-3px);
}
.footer-section{
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}
.footer-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 0%, rgba(71, 165, 10, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.footer-section::after{
  content: '';
  position: absolute;
  bottom: 0;
  right: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 100%, rgba(130, 190, 23, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.footer-wrap{
  position: relative;
  z-index: 2;
}
.footer-brand{
  position: relative;
}
.footer-brand a{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.footer-brand a:hover{
  transform: translateX(5px);
}
.footer-brand a img{

  filter: drop-shadow(0 0 15px rgba(71, 165, 10, 0.3));
  transition: all 0.3s ease;
}
.footer-brand a:hover img{
  filter: drop-shadow(0 0 25px rgba(71, 165, 10, 0.5));
  transform: scale(1.1);
}

.footer-brand a:hover span{
  color: rgba(71, 165, 10, 1);
}
.footer-brand p{
  text-align: left;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 0;
  transition: color 0.3s ease;
}
.footer-brand:hover p{
  color: rgba(71, 165, 10, 1);
}
.footer-links{
  text-align: left;
}
.footer-links h4{
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-links h4::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, rgba(71, 165, 10, 1), rgba(130, 190, 23, 1));
  border-radius: 3px;
}
.footer-links ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li{
  margin-bottom: 12px;
}
.footer-links li a{
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}
.footer-links li a::before{
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: rgba(71, 165, 10, 1);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}
.footer-links li a:hover{
  color: rgba(71, 165, 10, 1);
  padding-left: 15px;
}
.footer-links li a:hover::before{
  opacity: 1;
}
.footer-contact{
  text-align: left;
}
.footer-contact h4{
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-contact h4::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, rgba(71, 165, 10, 1), rgba(130, 190, 23, 1));
  border-radius: 3px;
}
.contact-item{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.contact-item:hover{
  transform: translateX(8px);
}
.contact-item img{
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 8px rgba(71, 165, 10, 0.3));
  transition: all 0.3s ease;
}
.contact-item:hover img{
  filter: drop-shadow(0 0 15px rgba(71, 165, 10, 0.6));
  transform: scale(1.15);
}
.contact-item span{
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}
.contact-item:hover span{
  color: rgba(71, 165, 10, 1);
}
.footer-bottom{
  position: relative;
  z-index: 2;
  padding-top: 30px;
  text-align: center;
}
.footer-line{
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(71, 165, 10, 0.3), transparent);
  margin-bottom: 25px;
}
.footer-line::before{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(35, 149, 2, 1), rgba(130, 190, 23, 1));
  animation: footerLineGrow 2s ease-in-out infinite;
}
@keyframes footerLineGrow{
  0%, 100%{
    width: 0;
  }
  50%{
    width: 60%;
  }
}
.footer-bottom p{
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  transition: color 0.3s ease;
}
.footer-bottom p:hover{
  color: rgba(71, 165, 10, 1);
}
.product-hero{
  background-image: url(../web/product-bg.png) !important;
}
.pt-items{
  display: flex;
}
.pt-item{
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.pt-item::before{
  content: '';
  position: absolute;
  top: 0;
  left:0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(71, 165, 10, 0.08), transparent);
  transition: left 0.8s ease;
}
.pt-item:hover::before{
  left: 100%;
}
.pt-item:hover{
  width: 120%;
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(71, 165, 10, 0.4);
  box-shadow: 0 5px 5px -15px rgba(71, 165, 10, 0.15), 0 0 0 1px rgba(71, 165, 10, 0.05);
}
.pt-item-img{
  position: relative;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.pt-item-img::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(71, 165, 10, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pt-item:hover .pt-item-img{
  transform: rotate(8deg) scale(1.1);
}
.pt-item:hover .pt-item-img::after{
  opacity: 1;
}
.pt-item-img img{
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 8px 20px rgba(71, 165, 10, 0.15));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.pt-item:hover .pt-item-img img{
  filter: drop-shadow(0 12px 30px rgba(71, 165, 10, 0.3));
}
.pt-item-info{
  flex: 1;
}
.pt-item-title{
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pt-item:hover .pt-item-title{
  color: rgba(71, 165, 10, 0.8);
  transform: translateX(5px);
}
.pt-item-desc{
  font-size: 18px;
  font-weight: 700;
  color: rgba(71, 165, 10, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pt-item-desc-span{
  font-size: 14px;
  font-weight: 600;
}
.pt-item:hover .pt-item-desc{
  transform: translateX(8px);
  text-shadow: 0 2px 10px rgba(71, 165, 10, 0.3);
}
.criteria-section{
  position: relative;
  overflow: hidden;
}
.criteria-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(71, 165, 10, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.criteria-col{
  position: relative;
}
.criteria-title{
  font-size: 26px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}
.criteria-title::before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, rgba(71, 165, 10, 1), rgba(130, 190, 23, 1));
  border-radius: 4px;
}
.criteria-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.criteria-item{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(243, 252, 239, 1);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.criteria-item::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(71, 165, 10, 0.06), transparent);
  transition: left 0.6s ease;
}
.criteria-item:hover::before{
  left: 100%;
}
.criteria-item:hover{
  transform: translateX(10px);
  border-color: rgba(71, 165, 10, 0.2);
  box-shadow: 0 8px 30px rgba(71, 165, 10, 0.12);
}
.criteria-item img{
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(71, 165, 10, 0.2));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.criteria-item:hover img{
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 4px 12px rgba(71, 165, 10, 0.4));
}
.criteria-item span{
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.criteria-item:hover span{
  color: rgba(71, 165, 10, 1);
  font-weight: 600;
}
.faq-section{
  position: relative;
  overflow: hidden;
}
.faq-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 0%, rgba(71, 165, 10, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.faq-section::after{
  content: '';
  position: absolute;
  bottom: 0;
  right: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 100%, rgba(130, 190, 23, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.faq-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.faq-content{
  flex: 1;
  padding-right: 40px;
}
.faq-title{
  font-size: 36px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 20px;
  position: relative;
}
.faq-title::after{
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, rgba(71, 165, 10, 1), rgba(130, 190, 23, 1));
  border-radius: 4px;
}
.faq-desc{
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 600px;
}
.faq-image{
  position: relative;
}
.faq-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(71, 165, 10, 0.15));
  animation: faqFloat 6s ease-in-out infinite;
}
@keyframes faqFloat{
  0%, 100%{
    transform: translateY(0) rotate(0deg);
  }
  50%{
    transform: translateY(-15px) rotate(2deg);
  }
}
.faq-image-glow{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(71, 165, 10, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: faqGlow 4s ease-in-out infinite;
}
@keyframes faqGlow{
  0%, 100%{
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50%{
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.8;
  }
}
.faq-accordion{
  position: relative;
  z-index: 2;
}
.accordion-item{
  margin-bottom: 12px;
}
.accordion-header{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.accordion-header::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(71, 165, 10, 0.08), transparent);
  transition: left 0.6s ease;
}
.accordion-header:hover::before{
  left: 100%;
}
.accordion-header:hover{
  transform: translateX(8px);
  border-color: rgba(71, 165, 10, 0.2);
  box-shadow: 0 10px 40px rgba(71, 165, 10, 0.1);
}
.accordion-header.active{
  border-color: rgba(71, 165, 10, 0.4);
  box-shadow: 0 15px 50px rgba(71, 165, 10, 0.15);
}
.accordion-icon{
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(71, 165, 10, 0.08);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-header:hover .accordion-icon{
  background: rgba(71, 165, 10, 0.15);
  transform: scale(1.1);
}
.accordion-header.active .accordion-icon{
  background: rgba(71, 165, 10, 0.2);
}
.q-icon, .i-icon{
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 8px rgba(71, 165, 10, 0.2));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-header:hover .q-icon{
  transform: rotate(10deg) scale(1.15);
}
.accordion-title{
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  color: #1C1C1C;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-header:hover .accordion-title{
  color: rgba(71, 165, 10, 1);
}
.accordion-toggle{
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(71, 165, 10, 0.2));
}
.accordion-header.active .accordion-toggle{
  transform: rotate(45deg);
  filter: drop-shadow(0 4px 12px rgba(71, 165, 10, 0.4));
}
.accordion-content{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-10px);
}
.accordion-header.active + .accordion-content{
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding: 0 28px 22px;
  animation: contentFadeIn 0.5s ease;
}
@keyframes contentFadeIn{
  0%{
    opacity: 0;
    transform: translateY(-10px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}
.accordion-content .accordion-icon{
  margin-bottom: 12px;
}
.accordion-content span{
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  display: block;
  padding-left: 58px;
  margin-top: -52px;
}
@media (max-width: 768px){
  .faq-header{
    flex-direction: column;
    text-align: center;
  }
  .faq-content{
    padding-right: 0;
    margin-bottom: 30px;
  }
  .faq-title::after{
    left: 50%;
    transform: translateX(-50%);
  }
  .faq-image{
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
}
.privacy-section{
  position: relative;
  overflow: hidden;
}
.privacy-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(71, 165, 10, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.privacy-header{
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.privacy-icon{
  display: inline-block;
  margin-bottom: 25px;
  animation: privacyIconPulse 3s ease-in-out infinite;
}
@keyframes privacyIconPulse{
  0%, 100%{
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(71, 165, 10, 0.3));
  }
  50%{
    transform: scale(1.05);
    filter: drop-shadow(0 0 35px rgba(71, 165, 10, 0.5));
  }
}
.privacy-title{
  font-size: 42px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 12px;
  position: relative;
}
.privacy-title::after{
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, rgba(71, 165, 10, 1), rgba(130, 190, 23, 1));
  border-radius: 4px;
}
.privacy-subtitle{
  font-size: 14px;
  color: #666;
  margin-top: 25px;
  font-weight: 500;
}
.privacy-divider{
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(71, 165, 10, 0.2), transparent);
  margin-top: 30px;
}
.privacy-content{
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.privacy-intro{
  background: rgba(255, 255, 255, 0.9);
  padding: 35px 40px;
  border-radius: 24px;
  margin-bottom: 35px;
  border: 2px solid rgba(71, 165, 10, 0.1);
  transition: all 0.4s ease;
}
.privacy-intro:hover{
  border-color: rgba(71, 165, 10, 0.3);
  box-shadow: 0 15px 50px rgba(71, 165, 10, 0.08);
}
.privacy-intro p{
  font-size: 16px;
  color: #333;
  line-height: 1.9;
  margin: 0;
}
.privacy-section-item{
  display: flex;
  gap: 25px;
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 35px;
  border-radius: 24px;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.privacy-section-item::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(71, 165, 10, 0.05), transparent);
  transition: left 0.6s ease;
}
.privacy-section-item:hover::before{
  left: 100%;
}
.privacy-section-item:hover{
  transform: translateX(8px);
  border-color: rgba(71, 165, 10, 0.2);
  box-shadow: 0 10px 40px rgba(71, 165, 10, 0.08);
}
.section-number{
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(71, 165, 10, 1), rgba(130, 190, 23, 1));
  color: white;
  font-size: 22px;
  font-weight: 700;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.privacy-section-item:hover .section-number{
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(71, 165, 10, 0.4);
}
.section-content{
  flex: 1;
}
.section-title{
  font-size: 20px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 12px;
  transition: color 0.4s ease;
}
.privacy-section-item:hover .section-title{
  color: rgba(71, 165, 10, 1);
}
.section-text{
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 22px;
}
.subsection{
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid rgba(71, 165, 10, 0.3);
  transition: all 0.4s ease;
}
.privacy-section-item:hover .subsection{
  border-left-color: rgba(71, 165, 10, 1);
  padding-left: 25px;
}
.subsection-title{
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  transition: color 0.4s ease;
}
.privacy-section-item:hover .subsection-title{
  color: rgba(71, 165, 10, 1);
}
.subsection-text{
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.contact-info{
  margin-top: 15px;
}
.info-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333;
}
.info-icon{
  font-size: 20px;
}
.privacy-footer{
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  position: relative;
  z-index: 2;
}
.footer-border{
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(71, 165, 10, 0.3), transparent);
  margin-bottom: 25px;
  position: relative;
}
.footer-border::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(71, 165, 10, 1), rgba(130, 190, 23, 1));
  animation: footerBorderGrow 3s ease-in-out infinite;
}
@keyframes footerBorderGrow{
  0%, 100%{
    width: 0;
  }
  50%{
    width: 40%;
  }
}
.footer-text{
  font-size: 14px;
  color: #666;
  margin: 0;
}
@media (max-width: 768px){
  .privacy-title{
    font-size: 32px;
  }
  .privacy-section-item{
    flex-direction: column;
    padding: 25px;
  }
  .section-number{
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
.delete-section{
  position: relative;
  overflow: hidden;
}
.delete-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(71, 165, 10, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.delete-header{
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
.delete-title{
  font-size: 32px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 20px;
  position: relative;
}
.delete-divider{
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, rgba(71, 165, 10, 1), rgba(130, 190, 23, 1));
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
}
.delete-divider::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  animation: deleteDividerPulse 2s ease-in-out infinite;
}
@keyframes deleteDividerPulse{
  0%, 100%{
    width: 0;
  }
  50%{
    width: 100%;
  }
}
.delete-list{

  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.delete-item{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 25px 30px;
  border-radius: 20px;
  margin-bottom: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.delete-item::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(71, 165, 10, 0.06), transparent);
  transition: left 0.6s ease;
}
.delete-item:hover::before{
  left: 100%;
}
.delete-item:hover{
  transform: translateX(10px);
  border-color: rgba(71, 165, 10, 0.2);
  box-shadow: 0 10px 40px rgba(71, 165, 10, 0.1);
}
.delete-num{
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(130, 190, 23, 1), rgba(35, 149, 2, 1));
  color: white;
  font-size: 20px;
  font-weight: 700;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(71, 165, 10, 0.3);
}
.delete-item:hover .delete-num{
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 8px 25px rgba(71, 165, 10, 0.5);
}
.delete-content{
  flex: 1;
}
.delete-item-title{
  font-size: 17px;
  font-weight: 600;
  color: #1C1C1C;
  margin-bottom: 10px;
  transition: color 0.4s ease;
}
.delete-item:hover .delete-item-title{
  color: rgba(71, 165, 10, 1);
}
.delete-item-desc{
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  transition: color 0.4s ease;
}
.delete-item:hover .delete-item-desc{
  color: #444;
}
@media (max-width: 768px){
  .delete-title{
    font-size: 26px;
  }
  .delete-item{
    padding: 20px;
  }
  .delete-num{
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}
.div-flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.white-item{
  background-color: white;
}
.p-why-item{
  text-align: center;
  width: 100%;
}

.delete-form-section{
  position: relative;
}
.delete-form-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(71, 165, 10, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(130, 190, 23, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.delete-form-header{
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.delete-form-title{
  font-size: 32px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 20px;
}
.delete-form-divider{
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, rgba(71, 165, 10, 1), rgba(130, 190, 23, 1));
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
}
.delete-form-divider::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  animation: deleteDividerPulse 2s ease-in-out infinite;
}
.delete-form-wrapper{
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.delete-form{
  background: rgba(255, 255, 255, 0.95);
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(230, 230, 230, 0.5);
  position: relative;
  overflow: hidden;
}
.delete-form::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(130, 190, 23, 1), rgba(35, 149, 2, 1));
}
.form-header{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(230, 230, 230, 0.8);
}
.form-icon{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245, 250, 242, 1);
  padding: 6px;
  transition: transform 0.3s ease;
}
.form-icon:hover{
  transform: scale(1.1);
}
.form-header-text{
  font-size: 20px;
  font-weight: 600;
  color: #1C1C1C;
}
.form-group{
  margin-bottom: 28px;
}
.form-label{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1C;
  margin-bottom: 8px;
}
.form-hint{
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}
.form-input{
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  color: #333;
  border: 2px solid rgba(220, 220, 220, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.form-input:focus{
  border-color: rgba(71, 165, 10, 0.6);
  box-shadow: 0 0 0 4px rgba(71, 165, 10, 0.08);
  background: white;
}
.form-input::placeholder{
  color: #aaa;
}
.form-input.error{
  border-color: rgba(255, 71, 87, 0.6);
  animation: inputShake 0.5s ease;
}
@keyframes inputShake{
  0%, 100%{ transform: translateX(0); }
  20%, 60%{ transform: translateX(-8px); }
  40%, 80%{ transform: translateX(8px); }
}
.form-hint-text{
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}
.captcha-group{
  position: relative;
}
.captcha-row{
  display: flex;
  gap: 12px;
}
.captcha-input{
  flex: 1;
}
.captcha-code{
  min-width: 110px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(71, 165, 10, 1);
  color: white;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(71, 165, 10, 0.3);
  user-select: none;
  position: relative;
  overflow: hidden;
}
.captcha-code::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.captcha-code:hover::before{
  left: 100%;
}
.captcha-code:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(71, 165, 10, 0.4);
}
.captcha-code:active{
  transform: translateY(0);
}
.checkbox-group{
  margin-bottom: 30px;
}
.checkbox-label{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
}
.custom-checkbox{
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox-custom{
  width: 20px;
  height: 20px;
  border: 2px solid rgba(200, 200, 200, 0.8);
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}
.custom-checkbox:checked + .checkbox-custom{
  background: rgba(71, 165, 10, 1);
  border-color: rgba(71, 165, 10, 1);
}
.custom-checkbox:checked + .checkbox-custom::after{
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  animation: checkAnim 0.3s ease;
}
@keyframes checkAnim{
  0%{ transform: rotate(0deg) scale(0); }
  100%{ transform: rotate(45deg) scale(1); }
}
.checkbox-text{
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.error-message{
  display: none;
  font-size: 13px;
  color: rgba(255, 71, 87, 1);
  margin-top: 8px;
  animation: errorFadeIn 0.3s ease;
}
.error-message.show{
  display: block;
}
@keyframes errorFadeIn{
  0%{ opacity: 0; transform: translateY(-10px); }
  100%{ opacity: 1; transform: translateY(0); }
}
.submit-btn{
  width: 100%;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(90deg, rgba(130, 190, 23, 1), rgba(35, 149, 2, 1));
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(71, 165, 10, 0.35);
}
.submit-btn::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.submit-btn:hover::before{
  left: 100%;
}
.submit-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(71, 165, 10, 0.5);
}
.submit-btn:active{
  transform: translateY(-1px);
}
.submit-btn:disabled{
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.modal-overlay{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.show{
  opacity: 1;
  visibility: visible;
}
.modal-box{
  background: white;
  border-radius: 28px;
  padding: 60px 50px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: scale(0.3) translateY(100px) rotate(-10deg);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2), 0 30px 100px rgba(0, 0, 0, 0.25);
}
.modal-overlay.show .modal-box{
  transform: scale(1) translateY(0) rotate(0deg);
  opacity: 1;
}
.modal-box::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, rgba(130, 190, 23, 1), rgba(35, 149, 2, 1));
  box-shadow: 0 0 20px rgba(71, 165, 10, 0.4);
}
.modal-icon{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 45px;
  animation: modalIconAnim 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
}
.modal-icon.success{
  background: linear-gradient(135deg, rgba(130, 190, 23, 0.15), rgba(35, 149, 2, 0.15));
  color: rgba(71, 165, 10, 1);
  box-shadow: 0 0 40px rgba(71, 165, 10, 0.2);
}
.modal-icon.error{
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.15), rgba(255, 100, 100, 0.15));
  color: rgba(255, 71, 87, 1);
  box-shadow: 0 0 40px rgba(255, 71, 87, 0.2);
}
@keyframes modalIconAnim{
  0%{ transform: scale(0) rotate(-180deg); opacity: 0; }
  50%{ transform: scale(1.3) rotate(10deg); }
  70%{ transform: scale(0.9) rotate(-5deg); }
  100%{ transform: scale(1) rotate(0deg); opacity: 1; }
}
.modal-title{
  font-size: 28px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 18px;
  animation: modalTitleAnim 0.6s ease 0.2s both;
}
@keyframes modalTitleAnim{
  0%{ opacity: 0; transform: translateY(-20px); }
  100%{ opacity: 1; transform: translateY(0); }
}
.modal-message{
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
  animation: modalMessageAnim 0.6s ease 0.3s both;
}
@keyframes modalMessageAnim{
  0%{ opacity: 0; transform: translateY(20px); }
  100%{ opacity: 1; transform: translateY(0); }
}
.modal-btn{
  padding: 18px 50px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(90deg, rgba(130, 190, 23, 1), rgba(35, 149, 2, 1));
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(71, 165, 10, 0.4);
  position: relative;
  overflow: hidden;
  animation: modalBtnAnim 0.6s ease 0.4s both;
}
@keyframes modalBtnAnim{
  0%{ opacity: 0; transform: translateY(20px) scale(0.9); }
  100%{ opacity: 1; transform: translateY(0) scale(1); }
}
.modal-btn::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.7s ease;
}
.modal-btn:hover::before{
  left: 100%;
}
.modal-btn:hover{
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(71, 165, 10, 0.5);
}
.modal-btn:active{
  transform: translateY(-1px) scale(0.98);
}

.modal-glow{
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(80px);
  animation: glowAnim 4s ease-in-out infinite;
}
.modal-glow.success-glow{
  background: rgba(71, 165, 10, 0.2);
  top: -150px;
  right: -150px;
}
.modal-glow.error-glow{
  background: rgba(255, 71, 87, 0.2);
  top: -150px;
  right: -150px;
}
@keyframes glowAnim{
  0%, 100%{ transform: scale(1); opacity: 0.4; }
  50%{ transform: scale(1.4); opacity: 0.7; }
}

.modal-particles{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.modal-particle{
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0;
}
.modal-overlay.show .modal-particle{
  animation: particleAnim 2s ease-out forwards;
}
.modal-particle.success-particle{
  background: rgba(71, 165, 10, 0.6);
}
.modal-particle.error-particle{
  background: rgba(255, 71, 87, 0.6);
}
@keyframes particleAnim{
  0%{ opacity: 0; transform: scale(0) translateY(0); }
  20%{ opacity: 1; }
  100%{ opacity: 0; transform: scale(1) translateY(-100px); }
}

.modal-corner-deco{
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0;
  animation: cornerDecoAnim 0.8s ease 0.5s both;
}
.modal-corner-deco.success-deco{
  background: rgba(71, 165, 10, 0.08);
}
.modal-corner-deco.error-deco{
  background: rgba(255, 71, 87, 0.08);
}
.modal-corner-deco.top-left{
  top: 20px;
  left: 20px;
}
.modal-corner-deco.top-right{
  top: 20px;
  right: 20px;
}
.modal-corner-deco.bottom-left{
  bottom: 20px;
  left: 20px;
}
.modal-corner-deco.bottom-right{
  bottom: 20px;
  right: 20px;
}
@keyframes cornerDecoAnim{
  0%{ opacity: 0; transform: scale(0); }
  100%{ opacity: 1; transform: scale(1); }
}

.why-item-title1::after{
  content: '';
  position: absolute;
  bottom: -4px;
  left: 20%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(71, 165, 10, 1), rgba(126, 224, 69, 0.8));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.need-item-img-d{
  width: 15%;
}
.need-item-img-d-div{
  display: flex;
  align-items: center;
  justify-content: center;
}