*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  background:#ffffff;
  color:#0f172a;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.header{
  position:sticky;
  top:0;
  background:#ffffff;
  border-bottom:1px solid #e2e8f0;
  z-index:999;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  /* padding:18px 0; */
}

.brand{
  /* display:flex; */
  align-items:center;
  gap:14px;
}

.logo{
  width:252px;
  height:100px;
}

.brand h1{
  font-size:22px;
}

.brand p{
  color:#64748b;
  font-size:13px;
}

nav{
  display:flex;
  gap:28px;
}

nav a{
  text-decoration:none;
  color:#334155;
  font-weight:600;
}

.hero{
  padding:30px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hero h2{
  font-size:62px;
  line-height:1.1;
  margin:20px 0;
}

.hero p{
  font-size:20px;
  color:#475569;
}

.badge{
  display:inline-block;
  background:#dcfce7;
  color:#15803d;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
}

.hero-actions{
  margin-top:40px;
  display:flex;
  gap:18px;
}

.primary-btn,
.wa-btn,
.contact-btn,
.wa-small{
  background:#16a34a;
  color:#fff;
  text-decoration:none;
  padding:16px 26px;
  border-radius:16px;
  font-weight:700;
  display:inline-block;
}

.secondary-btn,
.view-btn{
  border:1px solid #cbd5e1;
  color:#0f172a;
  text-decoration:none;
  padding:16px 26px;
  border-radius:16px;
  font-weight:700;
}

.hero-image{
  width:100%;
  border-radius:32px;
  box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.trust-section,
.products-page,
.quote-section,
.contact-section{
  padding:30px 0;
}

.section-head span,
.philosophy span{
  color:#16a34a;
  font-size:18px;
  letter-spacing:3px;
  font-weight:700;
}

.section-head h2,
.philosophy h2{
  margin-top:18px;
  font-size:48px;
  line-height:1.1;
}

.product-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.feature-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.feature-card,
.product-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:28px;
  overflow:hidden;
}

.feature-card{
  padding:34px;
}

/* .product-card img{
  width:100%;
  height:260px;
  object-fit:cover;
} */

.product-card img{
  width:100%;
  height:260px;

  object-fit:contain;

  background:#f8fafc;

  padding:18px;
}

.product-content{
  padding:28px;
}

.product-category{
  color:#16a34a;
  font-weight:700;
  font-size:14px;
}

.product-content h3{
  margin:14px 0;
  font-size:28px;
}

.product-content p{
  color:#475569;
}

.product-bottom{
  margin-top:28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.product-actions{
  display:flex;
  gap:10px;
}

.price,
.detail-price{
  font-size:34px;
  font-weight:900;
  color:#1d4ed8;
}

.philosophy{
  background:#0f172a;
  color:#fff;
  padding:80px 0;
}

.philosophy-box{
  max-width:900px;
  text-align:center;
}

.philosophy p{
  margin-top:24px;
  color:#cbd5e1;
  font-size:20px;
}

.quote-box{
  background:linear-gradient(135deg,#dcfce7,#dbeafe);
  border-radius:40px;
  padding:80px;
  text-align:center;
}

.quote-box h2{
  font-size:48px;
}

.contact-section{
  background:linear-gradient(135deg,#1d4ed8,#16a34a);
  color:#fff;
}

.contact-box{
  text-align:center;
}

.contact-box h2{
  font-size:52px;
}

.contact-box p{
  margin:30px auto;
  max-width:800px;
  font-size:22px;
}

.footer{
  padding:40px 0;
  border-top:1px solid #e2e8f0;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:30px;
}

.footer p{
  color:#64748b;
}

.floating-wa{
  position:fixed;
  right:24px;
  bottom:24px;
  background:#16a34a;
  color:#fff;
  text-decoration:none;
  padding:16px 22px;
  border-radius:999px;
  font-weight:700;
}

.detail-page{
  padding:80px 0;
}

.detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.detail-image{
  width:100%;
  border-radius:32px;
}

.detail-description{
  margin:24px 0 40px;
  font-size:18px;
  color:#475569;
}




.hero-carousel img{
  width:100%;
  border-radius:28px;
  object-fit:cover;
  transition:0.4s ease;
  box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.feature-icon{
  width:74px;
  height:74px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#f0fdf4;

  border-radius:18px;

  margin-bottom:22px;
}

.feature-icon img{
  width:42px;
  opacity:0.9;
}

.feature-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:28px;

  padding:34px;

  min-height:240px;

  transition:0.3s ease;
}

.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,0.06);
}

.feature-card h3{
  margin-bottom:14px;
  line-height:1.2;
  font-size:34px;
}

.feature-card p{
  color:#475569;
  font-size:18px;
}

.category-section{
  padding:30px 0;
}

.category-grid{
  margin-top:60px;

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:28px;
}

.category-card{
  background:#fff;

  border:1px solid #e2e8f0;

  border-radius:28px;

  overflow:hidden;

  transition:0.3s ease;
}

.category-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.category-card img{
  width:100%;
  height:220px;
  object-fit:contain;
  background:#f8fafc;
  padding:18px;
}

.category-content{
  padding:28px;
}

.category-content h3{
  font-size:28px;
  margin-bottom:14px;
}

.category-content p{
  color:#475569;
  margin-bottom:20px;
}

.category-content a{
  text-decoration:none;
  color:#16a34a;
  font-weight:700;
}

.support-section{

  padding:50px 0;

  background:#f8fafc;

}

.support-container{

  display:grid;

  grid-template-columns: 1.5fr 1fr 1fr;

  gap:40px;

  align-items:start;

}

.support-left h2{

  font-size:52px;

  line-height:1.1;

  margin:18px 0 28px;

  color:#071133;

}

.support-label{

  font-size:13px;

  letter-spacing:4px;

  font-weight:700;

  color:#16a34a;

}

.support-text{

  font-size:17px;

  line-height:1.9;

  color:#475569;

  margin-bottom:22px;

}

.support-goal{

  margin-top:35px;

  font-size:18px;

  color:#071133;

}

.support-goal strong{

  color:#16a34a;

}

.support-note{

  margin-top:18px;

  font-size:15px;

  line-height:1.7;

  color:#64748b;

}

.support-bank{

  background:#ffffff;

  padding:38px;

  border-radius:28px;

  box-shadow:0 10px 40px rgba(15,23,42,0.06);

}

.support-bank h3{

  font-size:28px;

  margin-bottom:28px;

  color:#071133;

}

.bank-detail{

  margin-bottom:22px;

}

.bank-detail span{

  display:block;

  font-size:13px;

  letter-spacing:1px;

  color:#64748b;

  margin-bottom:8px;

  text-transform:uppercase;

}

.bank-detail p{

  font-size:17px;

  font-weight:600;

  color:#071133;

}

.support-qr{

  background:#ffffff;

  padding:35px;

  border-radius:28px;

  text-align:center;

  box-shadow:0 10px 40px rgba(15,23,42,0.06);

}

.support-qr img{

  width:100%;

  max-width:280px;

  border-radius:22px;

  margin-bottom:18px;

}

.support-qr h4{

  font-size:24px;

  color:#071133;

}

.support-qr p{

  font-size:15px;

  color:#64748b;

  word-break:break-word;

}

.payment-note{

  margin-top:18px;

  padding:14px 16px;

  background:#f8fafc;

  border:1px solid #e2e8f0;

  border-radius:16px;

  font-size:14px;

  line-height:1.6;

  color:#475569;

}

/* MOBILE */

@media(max-width:900px){

  .hero-grid,
  .product-grid,
  .detail-grid{
    grid-template-columns:1fr;
  }

  .feature-grid{
    grid-template-columns:repeat(2,1fr);
  }

  nav{
    display:none;
  }

  .hero h2,
  .section-head h2,
  .philosophy h2,
  .contact-box h2{
    font-size:38px;
  }

  .quote-box h2{
    font-size:32px;
  }

  .footer-grid{
    flex-direction:column;
  }

  .category-grid{
  grid-template-columns:1fr;
  }

}

@media(max-width:1100px){

  .support-container{

    grid-template-columns:1fr;

  }

}

