:root{
  --bg:#f5f7f1;
  --bg2:#edf2e6;
  --panel:#ffffff;
  --panel-soft:#f7faf3;
  --green:#2f6b3b;
  --green-2:#5a8f48;
  --green-soft:#e6f1df;
  --gold:#b8892d;
  --text:#1f2937;
  --muted:#5f6b63;
  --line:rgba(47,107,59,.12);
  --cta:#3f7f45;
  --max:1200px;
  --radius:22px;
  --shadow:0 16px 40px rgba(75,98,71,.08);
}

*{
  box-sizing:border-box;
}

html{
  margin:0;
  padding:0;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}

body{
  margin:0;
  padding:0;
  font-family:'Poppins',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:linear-gradient(180deg,var(--bg) 0%,#f9fbf6 100%);
  color:var(--text);
  line-height:1.5;
  overflow-x:hidden;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

a{
  text-decoration:none;
  color:inherit;
}

button{
  font:inherit;
}

.container{
  width:min(var(--max),calc(100% - 32px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  background:rgba(245,247,241,.92);
  border-bottom:1px solid var(--line);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:72px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand-badge{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  border:1px solid rgba(184,137,45,.25);
  background:#fff8eb;
  color:var(--gold);
  font-weight:900;
  letter-spacing:.04em;
  flex:0 0 auto;
}

.brand small{
  display:block;
  color:#7c867f;
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:700;
}

.brand strong{
  display:block;
  font-size:18px;
  letter-spacing:.03em;
  color:#162118;
}

.nav{
  display:flex;
  gap:28px;
  color:#5d695f;
  font-size:14px;
  font-weight:600;
}

.nav a:hover{
  color:var(--green);
}

.cta{
  padding:11px 16px;
  border-radius:14px;
  border:1px solid rgba(63,127,69,.18);
  background:var(--green);
  color:#fff;
  font-weight:700;
  font-size:14px;
  box-shadow:0 12px 24px rgba(63,127,69,.14);
}

.menu-btn{
  display:none;
}

.hero-wrap{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at top right,rgba(90,143,72,.15),transparent 24%),
    radial-gradient(circle at left center,rgba(184,137,45,.08),transparent 28%),
    linear-gradient(180deg,var(--bg2) 0%,#f6f9f2 100%);
}

.hero{
  padding:22px 0 56px;
}

.hero-media{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(47,107,59,.14);
  background:#fff;
  box-shadow:0 24px 60px rgba(70,92,58,.14);
}

.hero-media img{
  width:100%;
  aspect-ratio:16/7;
  object-fit:cover;
}

.hero-slide{
  display:none;
  position:relative;
}

.hero-slide.active{
  display:block;
}

.hero-slide-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  background:linear-gradient(180deg,rgba(0,0,0,.10) 10%,rgba(0,0,0,.45) 100%);
  pointer-events:none;
}

.hero-slide-content{
  position:relative;
  z-index:2;
  padding:24px;
  color:#fff;
  max-width:720px;
  pointer-events:auto;
}

.hero-slide-content .btn{
  position:relative;
  z-index:3;
  display:inline-block;
  margin-top:16px;
}

.cards3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:18px;
}

.info-card,
.panel,
.article,
.product,
.service{
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff,var(--panel-soft));
  box-shadow:var(--shadow);
}

.info-card{
  padding:22px;
}

.eyebrow{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:800;
  color:var(--green);
}

.title-main{
  margin:8px 0 0;
  font-size:30px;
  line-height:1.1;
  color:#223124;
  font-weight:900;
}

.desc{
  margin:12px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
}

.section{
  padding:42px 0;
}

.section-head{
  text-align:center;
  margin-bottom:18px;
}

.section-head h2{
  margin:0;
  font-size:40px;
  line-height:1.1;
  color:#233426;
  font-weight:900;
}

.section-head p{
  max-width:780px;
  margin:12px auto 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.85;
}

.stack{
  display:grid;
  gap:14px;
}

.panel{
  padding:24px 26px;
}

.panel h3{
  margin:0;
  font-size:30px;
  line-height:1.15;
  color:#233426;
}

.panel p{
  margin:12px 0 0;
  font-size:15px;
  line-height:1.9;
  color:var(--muted);
}

.services-wrap,
.articles-wrap{
  padding:34px;
  border-radius:30px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#f8fbf4,#edf4e7);
}

.services{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:26px;
}

.service{
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff,#f7fbf3);
}

.service.featured{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:1.1fr 1fr;
}

.service img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:250px;
}

.service-body{
  padding:24px;
}

.service h3,
.article h3{
  margin:0;
  font-size:31px;
  line-height:1.15;
  color:#213324;
}

.service p,
.article p{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.85;
  color:var(--muted);
}

.btn{
  display:inline-block;
  margin-top:18px;
  padding:11px 16px;
  border-radius:14px;
  background:var(--cta);
  color:#fff;
  font-weight:800;
  font-size:14px;
}

.articles{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:24px;
}

.article{
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff,#f8fbf5);
}

.article img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}

.article-body{
  padding:22px;
}

.article h3{
  font-size:24px;
  color:#1f2d20;
}

.products-section{
  padding-top:40px;
}

.products-head h2{
  color:#223426;
}

.products{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:24px;
}

.product{
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff,#f5f8f1);
}

.product-media{
  padding:16px;
  background:linear-gradient(180deg,#edf4e7,#e4eddc);
}

.product-media img{
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:16px;
  width:100%;
}

.product-body{
  padding:18px;
}

.product-body strong{
  font-size:19px;
  line-height:1.3;
  color:#233426;
}

.band{
  background:linear-gradient(180deg,#eff5e8,#e6efdd);
  padding:54px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.band h2{
  margin:0;
  text-align:center;
  font-size:38px;
  font-weight:900;
  color:#223426;
}

.band p{
  max-width:860px;
  margin:14px auto 0;
  text-align:center;
  color:var(--muted);
  font-size:15px;
  line-height:1.9;
}

footer{
  background:#f1f6eb;
  padding:46px 0 28px;
  border-top:1px solid var(--line);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:22px;
}

.footer-card h4{
  margin:0;
  font-size:22px;
  color:#223426;
}

.footer-card p,
.footer-card div{
  color:var(--muted);
  font-size:14px;
  line-height:1.9;
}

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.tag{
  padding:6px 10px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fbfdf8;
  font-size:12px;
  color:#4f5f52;
}

.links{
  display:grid;
  gap:4px;
  margin-top:12px;
}

.copyright{
  margin-top:28px;
  padding-top:20px;
  border-top:1px solid var(--line);
  text-align:center;
  color:#7f8b81;
  font-size:13px;
}

@media(max-width:980px){
  .nav,
  .cta{
    display:none;
  }

  .menu-btn{
    display:grid;
    place-items:center;
    width:42px;
    height:42px;
    border-radius:12px;
    border:1px solid var(--line);
    background:transparent;
    color:#223426;
  }

  .hero-media img{
    aspect-ratio:16/10;
  }

  .cards3,
  .articles,
  .products,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .service.featured{
    grid-template-columns:1fr;
  }
}

@media(max-width:640px){
  .container{
    width:min(var(--max),calc(100% - 20px));
  }

  .topbar-inner{
    min-height:64px;
  }

  .hero{
    padding:14px 0 30px;
  }

  .hero-media{
    border-radius:24px;
    background:#fff;
  }

  .hero-media img{
    width:100%;
    height:auto;
    aspect-ratio:16/11;
    object-fit:cover;
    border-radius:22px 22px 0 0;
  }

  .hero-slide{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
  }

  .hero-slide-overlay{
    position:relative !important;
    inset:auto !important;
    display:block !important;
    background:#fff !important;
    pointer-events:auto !important;
  }

  .hero-slide-content{
    position:relative !important;
    inset:auto !important;
    transform:none !important;
    padding:22px 18px 24px !important;
    color:#173425 !important;
    background:#fff !important;
    max-width:100% !important;
  }

  .hero-slide-content h1,
  .hero-slide-content h2,
  .title-main{
    margin:0 0 12px !important;
    font-size:24px !important;
    line-height:1.22 !important;
    letter-spacing:-.4px !important;
    color:#173425 !important;
  }

  .hero-slide-content p,
  .desc{
    margin:0 !important;
    font-size:14.5px !important;
    line-height:1.75 !important;
    color:#53645b !important;
  }

  .hero-slide-content .btn{
    margin-top:18px !important;
  }

  .cards3,
  .articles,
  .products,
  .footer-grid,
  .services{
    grid-template-columns:1fr;
  }

  .services-wrap,
  .articles-wrap{
    padding:18px;
    border-radius:24px;
  }

  .panel h3,
  .service h3{
    font-size:24px;
  }

  .section{
    padding:30px 0;
  }

  .section-head h2,
  .band h2{
    font-size:28px;
  }

  .section-head p,
  .panel p,
  .service p,
  .article p,
  .band p{
    font-size:14px;
    line-height:1.8;
  }

  .product-media{
    padding:14px;
  }

  .info-card,
  .panel,
  .article-body,
  .service-body,
  .product-body{
    padding-left:18px;
    padding-right:18px;
  }
}

/* FORCE FIX khusus iPhone Safari */
@supports (-webkit-touch-callout:none){
  @media(max-width:640px){
    .hero-slide-overlay{
      position:relative !important;
      display:block !important;
      background:#fff !important;
    }

    .hero-slide-content{
      position:relative !important;
      color:#173425 !important;
      background:#fff !important;
    }

    .hero-media img{
      height:auto !important;
      max-height:none !important;
    }
  }
}