:root{
  --orange:#ff6500;
  --orange-dark:#e95400;
  --green:#0b4a35;
  --green-2:#155d42;
  --cream:#fff8ee;
  --cream-2:#fff2de;
  --line:#eedfcb;
  --text:#1d211f;
  --muted:#68706b;
  --white:#fff;
  --shadow:0 12px 35px rgba(37,29,20,.09);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--text);
  background:#fffdfa;
  line-height:1.55;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit}
.container{width:min(1180px,calc(100% - 40px));margin-inline:auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(11,74,53,.08);
  backdrop-filter:blur(14px);
}
.nav-wrap{
  min-height:78px;
  display:flex;
  align-items:center;
  gap:28px;
}
.brand{width:225px;flex:0 0 auto}
.brand img{width:100%;height:56px;object-fit:contain;object-position:left center}

.main-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:36px;
  font-weight:750;
  font-size:14px;
}
.main-nav a{
  position:relative;
  padding:28px 0 24px;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:50%;
  right:50%;
  bottom:15px;
  height:3px;
  border-radius:999px;
  background:var(--orange);
  transition:.18s ease;
}
.main-nav a:hover::after,.main-nav a.active::after{left:0;right:0}
.nav-cta{margin-left:18px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:46px;
  padding:0 20px;
  border:1px solid transparent;
  border-radius:13px;
  font-size:14px;
  font-weight:800;
  transition:transform .15s ease,box-shadow .15s ease,background .15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-orange{
  color:#fff;
  background:linear-gradient(135deg,var(--orange),#ff7b16);
  box-shadow:0 8px 18px rgba(255,101,0,.24);
}
.btn-orange:hover{background:linear-gradient(135deg,var(--orange-dark),var(--orange))}
.btn-green{
  color:#fff;
  background:linear-gradient(135deg,var(--green),var(--green-2));
  box-shadow:0 8px 18px rgba(11,74,53,.16);
}
.btn-outline{
  color:var(--green);
  background:#fff;
  border-color:rgba(11,74,53,.52);
}
.btn-outline:hover{background:#f5faf7}

.mini-paw{
  width:50px!important;
  height:50px!important;
  object-fit:contain!important;
  flex:0 0 50px;
}

.chevron{
  width:8px;
  height:8px;
  border-top:2px solid currentColor;
  border-right:2px solid currentColor;
  transform:rotate(45deg);
  margin-left:3px;
}

.menu-toggle{display:none}

.hero{
  padding:18px 0 10px;
  background:#fffdfa;
}
.hero-shell{
  width:min(1180px,calc(100% - 40px));
  min-height:340px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(0,47%) minmax(0,53%);
  overflow:hidden;
  border:1px solid #f0e0c8;
  border-radius:24px;
  background:linear-gradient(90deg,#fff9ef 0%,#fff8ed 48%,#ffecd1 100%);
  box-shadow:0 10px 28px rgba(37,29,20,.06);
}
.hero-copy{
  position:relative;
  z-index:2;
  align-self:center;
  padding:38px 44px 38px 44px;

  /* lindungi text + button dari artwork yang overlap */
  background:linear-gradient(
    90deg,
    #fff9ef 0%,
    #fff9ef 72%,
    rgba(255,249,239,.98) 82%,
    rgba(255,249,239,.82) 90%,
    rgba(255,249,239,0) 100%
  );
}
.eyebrow{
  margin:0 0 10px;
  color:var(--orange-dark);
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero h1{
  margin:0;
  color:var(--green);
  font-size:clamp(46px,4.2vw,68px);
  line-height:.95;
  letter-spacing:-.045em;
}
.hero h1 span{color:var(--orange)}
.hero h2{
  margin:18px 0 10px;
  color:var(--green);
  font-size:clamp(23px,2.2vw,31px);
  line-height:1.15;
}
.hero-desc{
  max-width:575px;
  margin:0;
  color:#3e4642;
  font-size:17px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:26px}
.hero-visual{
  position:relative;
  z-index:1;
  min-width:0;
  min-height:340px;
  height:auto;
  align-self:stretch;
  overflow:hidden;

  /* artwork masuk 208px ke area kiri */
  margin-left:-208px;
  width:calc(100% + 208px);

  background:
    url('../assets/hero-home.png') center bottom / cover no-repeat;
}
.hero-visual::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:230px;
  pointer-events:none;

  /* blend lembut supaya seam nggak keliatan ditempel */
  background:linear-gradient(
    90deg,
    #fff9ef 0%,
    rgba(255,249,239,.98) 28%,
    rgba(255,249,239,.82) 58%,
    rgba(255,249,239,.38) 78%,
    rgba(255,249,239,0) 100%
  );
}
.hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:42% bottom;
  opacity:0;
  pointer-events:none;
}

.section{padding:28px 0 12px}
.section-heading{text-align:center;margin-bottom:24px}
.section-heading h2{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0;
  font-size:27px;
  letter-spacing:-.02em;
  line-height:1.1;
}
.section-heading h2 img{
  width:50px!important;
  height:50px!important;
  object-fit:contain;
  flex:0 0 50px;
}
.section-heading p{margin:3px 0 0;color:var(--muted);font-size:14px}
.section-heading.compact{margin-bottom:16px}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.feature-card{
  position:relative;
  height:196px;
  min-height:196px;
  padding:12px 13px 14px;
  overflow:visible;
  text-align:center;
  background:linear-gradient(180deg,#fffdfa,#fff8ef);
  border:1px solid var(--line);
  border-radius:16px;
  transition:.18s ease;
}
.feature-card:hover{
  transform:translateY(-4px);
  border-color:#ecc89c;
  box-shadow:var(--shadow);
}
.feature-icon{
  position:absolute;
  top:-8px;
  left:50%;
  width:128px;
  height:128px;
  max-width:none;
  object-fit:contain;
  transform:translateX(-50%);
}
.feature-card h3{
  margin:104px 0 5px;
  color:#1d2520;
  font-size:14px;
  line-height:1.25;
}
.feature-card p{
  margin:0;
  color:#4e5651;
  font-size:12px;
  line-height:1.48;
}

.impact-section{padding:22px 0 10px}
.impact-card{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:18px 10px;
  background:#fffaf3;
  border:1px solid var(--line);
  border-radius:18px;
}
.impact-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  min-height:68px;
  padding:4px 4px;
  border-right:1px solid #eadbc9;
  overflow:visible;
}
.impact-item:last-child{border-right:0}
.impact-item>img{
  width:128px;
  height:128px;
  object-fit:contain;
  flex:0 0 128px;

  /* pakai ukuran asli asset tanpa menaikkan tinggi card */
  margin-block:-35px;
}
.impact-item div{display:flex;flex-direction:column}
.impact-item strong{
  color:var(--green);
  font-size:27px;
  line-height:1;
}
.impact-item span{
  margin-top:6px;
  color:#59615c;
  font-size:12px;
}

.values-section{padding:22px 0 24px}
.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.value-card{
  display:flex;
  align-items:center;
  gap:4px;
  min-height:116px;
  padding:10px 10px;
  background:#fffaf3;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:visible;
}
.value-card>img{
  width:128px;
  height:128px;
  object-fit:contain;
  flex:0 0 128px;

  /* tampilkan ukuran asli asset tanpa menaikkan tinggi card */
  margin-block:-34px;
  margin-inline:-10px -2px;
}
.value-card h3{margin:0 0 2px;color:var(--green);font-size:15px}
.value-card p{margin:0;color:#5a625d;font-size:12px;line-height:1.5}

.cta-section{padding:0 0 22px}
.cta-banner{
  min-height:104px;
  display:grid;
  grid-template-columns:132px 1fr auto;
  align-items:center;
  gap:20px;
  padding:8px 28px 8px 10px;
  overflow:hidden;
  color:#fff;
  border-radius:17px;
  background:
    radial-gradient(circle at 14% 22%,rgba(255,255,255,.08) 0 3px,transparent 4px),
    linear-gradient(135deg,#0a5439,#063b2d);
  background-size:42px 42px,auto;
}
.cta-mascot-wrap{
  position:relative;
  align-self:center;
  width:132px;
  height:88px;
  overflow:visible;
}
.cta-mascot-wrap img{
  position:absolute;
  left:50%;
  bottom:-48px;
  width:192px;
  height:192px;
  max-width:none;
  object-fit:contain;
  object-position:center bottom;
  transform:translateX(-50%);
}
.cta-copy h2{margin:0 0 2px;font-size:18px;line-height:1.25}
.cta-copy p{margin:0;color:#e1eee7;font-size:13px}

.footer{
  padding:30px 0 18px;
  background:#fff;
  border-top:1px solid #eee4d6;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr repeat(4,1fr);
  gap:40px;
}
.footer h3{margin:0 0 9px;font-size:13px}
.footer a,.footer p{display:block;margin:5px 0;color:#454d48;font-size:12px}
.footer a:hover{color:var(--orange)}
.footer-brand img{
  width:205px;
  height:48px;
  object-fit:contain;
  object-position:left center;
}
.footer-brand p{max-width:230px;line-height:1.6}
.copyright{
  margin-top:26px;
  padding-top:17px;
  border-top:1px solid #f0e9df;
  color:#777f7a;
  text-align:center;
  font-size:11px;
}

@media (max-width:1100px){
  .brand{width:190px}
  .main-nav{gap:22px}
  .nav-cta{padding-inline:14px}
  .feature-grid{grid-template-columns:repeat(3,1fr)}
  .values-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1.4fr repeat(2,1fr)}
}

@media (max-width:820px){
  .container{width:min(100% - 28px,680px)}
  .nav-wrap{min-height:68px}
  .brand{width:180px}
  .brand img{height:48px}

  .menu-toggle{
    margin-left:auto;
    width:42px;
    height:42px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    background:#fff;
    border:1px solid #dedfdc;
    border-radius:11px;
  }
  .menu-toggle span{
    width:19px;
    height:2px;
    display:block;
    background:var(--green);
    border-radius:9px;
  }
  .main-nav{
    display:none;
    position:absolute;
    left:14px;
    right:14px;
    top:66px;
    padding:10px;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:#fff;
    border:1px solid #ece4d9;
    border-radius:15px;
    box-shadow:var(--shadow);
  }
  .main-nav.open{display:flex}
  .main-nav a{padding:12px 14px;border-radius:9px}
  .main-nav a::after{display:none}
  .main-nav a:hover,.main-nav a.active{background:#fff2e6;color:var(--orange-dark)}
  .nav-cta{display:none}

  .hero-shell{
    width:min(100% - 28px,680px);
    grid-template-columns:1fr;
  }
  .hero-copy{
    padding:34px 20px 22px;
    width:100%;
    margin-inline:auto;
  }
  .hero-copy{
    background:none;
  }
  .hero-visual{
    min-height:255px;
    height:auto;
    align-self:stretch;
    margin-left:0;
    width:100%;
    background-position:center bottom;
  }
  .hero-visual::before{
    width:0;
  }
  .hero h1{font-size:50px}
  .hero-desc{font-size:15px}

  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .impact-card{grid-template-columns:repeat(2,1fr)}
  .impact-item{border-right:0;border-bottom:1px solid #eadbc9;padding:15px}
  .impact-item:nth-child(odd){border-right:1px solid #eadbc9}
  .impact-item:nth-last-child(-n+2){border-bottom:0}

  .cta-banner{
    grid-template-columns:90px 1fr;
    padding:10px 12px;
  }
  .cta-mascot-wrap img{width:82px;height:76px}
  .cta-banner .btn{grid-column:1/-1;width:100%}

  .footer-grid{grid-template-columns:1fr 1fr;gap:24px}
  .footer-brand{grid-column:1/-1}
}

@media (max-width:480px){
  .container{width:calc(100% - 22px)}
  .hero-shell{
    width:calc(100% - 22px);
    border-radius:20px;
  }
  .hero-copy{padding:28px 15px 20px}
  .hero h1{font-size:43px}
  .hero h2{font-size:21px}
  .hero-actions .btn{width:100%}
  .hero-visual{
    min-height:215px;
    height:auto;
    align-self:stretch;
    margin-left:0;
    width:100%;
    background-position:center bottom;
  }
  .hero-visual::before{
    width:0;
  }

  .feature-grid{gap:10px}
  .feature-card{min-height:174px;padding:15px 8px}
  .feature-icon{width:62px;height:62px}
  .feature-card h3{font-size:13px}
  .feature-card p{font-size:11px}

  .impact-item{gap:7px;padding:12px 7px}
  .impact-item>img{width:44px;height:44px;flex-basis:44px}
  .impact-item strong{font-size:22px}
  .impact-item span{font-size:10px}

  .values-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-brand{grid-column:auto}
}

/* V4.6 — impact icons besar tanpa membesarkan card */
@media (max-width:820px){
  .impact-item>img{
    width:58px;
    height:58px;
    flex-basis:58px;
    margin-block:0;
  }
}
@media (max-width:480px){
  .impact-item>img{
    width:44px;
    height:44px;
    flex-basis:44px;
    margin-block:0;
  }
}

/* V4.8 — value icons 128px desktop, card tetap */
@media (max-width:820px){
  .value-card>img{
    width:62px;
    height:62px;
    flex-basis:62px;
    margin:0;
  }
  .value-card{
    gap:13px;
    padding:16px 17px;
  }
}
@media (max-width:480px){
  .value-card>img{
    width:62px;
    height:62px;
    flex-basis:62px;
    margin:0;
  }
}


/* V4.9 — CTA mascot desktop 192px, banner tetap compact */
@media (max-width:820px){
  .cta-mascot-wrap{
    width:90px;
    height:76px;
    overflow:hidden;
  }
  .cta-mascot-wrap img{
    position:static;
    width:82px;
    height:76px;
    max-width:100%;
    transform:none;
  }
}


/* V5.2 — 6 icon Fitur Unggulan 128x128 desktop */
@media (max-width:820px){
  .feature-card{
    height:174px;
    min-height:174px;
    padding:15px 8px;
  }
  .feature-icon{
    position:static;
    width:62px;
    height:62px;
    max-width:100%;
    margin:0 auto 7px;
    transform:none;
  }
  .feature-card h3{
    margin:2px 0 5px;
  }
}


/* V5.3 — white paw icon for orange CTA buttons */
.paw-white{
  width:50px!important;
  height:50px!important;
  object-fit:contain!important;
  flex:0 0 50px;
}


/* V5.5 — navbar CTA compact */
.nav-cta{
  min-height:46px;
  padding:0 18px;
  gap:8px;
}
.nav-cta .paw-white{
  width:28px!important;
  height:28px!important;
  flex:0 0 28px!important;
}


.chevron-white{
  border-top-color:#fff;
  border-right-color:#fff;
}

.section-heading.left{
  text-align:left;
}

.about-section{
  padding:22px 0 18px;
}
.about-panel{
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(320px,.98fr);
  align-items:center;
  gap:16px;
  padding:12px 34px 0;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(135deg,#fffaf3 0%,#fffdf9 50%,#f8fbf7 100%);
  box-shadow:0 10px 28px rgba(37,29,20,.05);
  overflow:hidden;
}
.about-copy{
  padding:0 0 20px;
  transform:translateY(-4px);
}
.about-heading{
  margin-bottom:12px;
}
.about-heading h2{
  font-size:26px;
}
.about-lead,
.about-sub{
  max-width:560px;
  margin:0;
  color:#49524d;
  font-size:16px;
  line-height:1.7;
}
.about-sub{margin-top:10px;max-width:560px}
.about-actions{
  margin-top:18px;
}
.about-visual{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:300px;
  padding-top:8px;
}
.about-visual img{
  width:min(100%,500px);
  height:auto;
  object-fit:contain;
  object-position:center center;
  transform:translateY(-10px);
}

@media (max-width:1100px){
  .about-panel{
    grid-template-columns:1fr;
    padding:24px 22px 0;
  }
  .about-copy{padding-bottom:12px}
  .about-visual{min-height:auto}
  .about-visual img{width:min(100%,420px)}
}

@media (max-width:820px){
  .about-panel{
    padding:22px 18px 0;
    border-radius:20px;
  }
  .about-copy{
    padding-bottom:6px;
  }
  .about-heading h2{
    font-size:24px;
  }
  .about-lead,
  .about-sub{
    font-size:15px;
  }
  .about-actions .btn{
    width:100%;
  }
  .about-visual{
    min-height:auto;
    margin-top:8px;
  }
  .about-visual img{
    width:min(100%,360px);
  }
}

@media (max-width:480px){
  .about-panel{
    padding:18px 14px 0;
  }
  .about-lead,
  .about-sub{
    font-size:14px;
    line-height:1.65;
  }
}


/* About v3 — desktop gap atas diperkecil */
@media (max-width:820px){
  .about-copy{
    transform:none;
  }
}


/* =========================================================
   ABOUT V4 — mobile polish only. Desktop rules stay intact.
   ========================================================= */
@media (max-width:820px){
  body{overflow-x:hidden}
  .container{width:calc(100% - 24px)}

  .site-header{background:rgba(255,255,255,.985)}
  .nav-wrap{min-height:64px;gap:12px}
  .brand{width:154px}
  .brand img{height:44px}
  .menu-toggle{width:40px;height:40px;border-radius:12px}
  .main-nav{left:12px;right:12px;top:60px;border-radius:14px}

  .hero{padding:10px 0 8px}
  .hero-shell{
    width:calc(100% - 20px);
    min-height:0;
    border-radius:20px;
    grid-template-columns:1fr;
  }
  .hero-copy{
    padding:24px 18px 18px;
    transform:none;
    background:linear-gradient(180deg,#fff9ef 0%,#fff8ed 100%);
  }
  .eyebrow{font-size:11px;letter-spacing:.075em;margin-bottom:8px}
  .hero h1{font-size:48px;line-height:.98;letter-spacing:-.045em}
  .hero h2{font-size:24px;line-height:1.18;margin:14px 0 8px}
  .hero-desc{font-size:14px;line-height:1.6}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:18px}
  .hero-actions .btn{min-height:44px;padding:0 12px;font-size:12px;white-space:nowrap}
  .hero-actions .paw-white{width:24px!important;height:24px!important;flex-basis:24px!important}
  .hero-visual{
    min-height:220px;
    margin-left:0;
    width:100%;
    background-position:58% bottom;
    background-size:cover;
  }
  .hero-visual::before{display:none}

  .section{padding:22px 0 8px}
  .section-heading{margin-bottom:16px;padding-inline:6px}
  .section-heading h2{font-size:23px;gap:6px;justify-content:center}
  .section-heading h2 img{width:32px!important;height:32px!important;flex-basis:32px!important}
  .section-heading p{font-size:12px;line-height:1.45;margin-top:4px}

  .feature-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .feature-card{
    height:auto;
    min-height:184px;
    padding:12px 10px 13px;
    border-radius:15px;
    overflow:hidden;
  }
  .feature-icon{
    position:static;
    width:84px;
    height:84px;
    margin:0 auto 2px;
    transform:none;
  }
  .feature-card h3{margin:0 0 5px;font-size:12.5px;line-height:1.25}
  .feature-card p{font-size:10.5px;line-height:1.48}

  .about-section{padding:18px 0 10px}
  .about-panel{
    grid-template-columns:1fr;
    gap:0;
    padding:18px 16px 0;
    border-radius:20px;
  }
  .about-copy{padding:0;transform:none}
  .about-heading{margin-bottom:10px;padding:0;text-align:left}
  .about-heading h2{font-size:23px;justify-content:flex-start}
  .about-lead,.about-sub{font-size:14px;line-height:1.62;max-width:none}
  .about-sub{margin-top:8px}
  .about-actions{margin-top:14px}
  .about-actions .btn{width:auto;min-height:44px;padding-inline:16px;font-size:12px}
  .about-visual{min-height:0;margin-top:4px;padding-top:0}
  .about-visual img{width:min(100%,330px);transform:translateY(5px)}

  .impact-section{padding:18px 0 8px}
  .impact-card{grid-template-columns:repeat(2,minmax(0,1fr));padding:0;border-radius:16px;overflow:hidden}
  .impact-item{min-height:92px;padding:10px 8px;gap:5px;border-bottom:1px solid #eadbc9}
  .impact-item:nth-child(odd){border-right:1px solid #eadbc9}
  .impact-item:nth-child(even){border-right:0}
  .impact-item:nth-last-child(-n+2){border-bottom:0}
  .impact-item>img{width:64px;height:64px;flex-basis:64px;margin:0}
  .impact-item strong{font-size:21px}
  .impact-item span{font-size:10px;margin-top:3px;line-height:1.25}

  .values-section{padding:18px 0 18px}
  .values-grid{grid-template-columns:1fr;gap:9px}
  .value-card{min-height:92px;padding:10px 12px;gap:8px;border-radius:15px;overflow:hidden}
  .value-card>img{width:76px;height:76px;flex-basis:76px;margin:0}
  .value-card h3{font-size:14px}
  .value-card p{font-size:11px;line-height:1.45}

  .cta-section{padding:0 0 14px}
  .cta-banner{
    grid-template-columns:74px 1fr;
    gap:10px;
    min-height:0;
    padding:10px 12px 12px;
    border-radius:16px;
  }
  .cta-mascot-wrap{width:74px;height:72px;overflow:hidden;align-self:end}
  .cta-mascot-wrap img{position:static;width:72px;height:72px;max-width:100%;transform:none}
  .cta-copy h2{font-size:14px;line-height:1.3}
  .cta-copy p{font-size:11px;margin-top:2px}
  .cta-banner .btn{grid-column:1/-1;width:100%;min-height:44px;font-size:12px;padding-inline:14px}
  .cta-banner .paw-white{width:26px!important;height:26px!important;flex-basis:26px!important}

  .footer{padding:22px 0 14px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:20px 18px}
  .footer-brand{grid-column:1/-1}
  .footer-brand img{width:175px;height:42px}
  .footer-brand p{max-width:290px;font-size:11px}
  .footer h3{font-size:12px}
  .footer a,.footer p{font-size:11px;margin:4px 0}
  .footer-grid>div:last-child{grid-column:1/-1}
  .copyright{margin-top:18px;padding-top:12px;font-size:10px}
}

@media (max-width:420px){
  .container{width:calc(100% - 20px)}
  .brand{width:146px}
  .hero-shell{width:calc(100% - 16px)}
  .hero h1{font-size:44px}
  .hero h2{font-size:22px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn{width:100%;font-size:12px}
  .hero-visual{min-height:205px;background-position:60% bottom}
  .section-heading h2{font-size:21px}
  .section-heading h2 img{width:30px!important;height:30px!important;flex-basis:30px!important}
  .feature-grid{gap:8px}
  .feature-card{min-height:178px;padding-inline:8px}
  .feature-icon{width:78px;height:78px}
  .feature-card h3{font-size:12px}
  .feature-card p{font-size:10px}
  .about-panel{padding:16px 14px 0}
  .about-heading h2{font-size:21px}
  .about-visual img{width:min(100%,300px)}
  .impact-item{min-height:86px}
  .impact-item>img{width:56px;height:56px;flex-basis:56px}
  .impact-item strong{font-size:19px}
  .value-card>img{width:68px;height:68px;flex-basis:68px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:18px 14px}
}

@media (max-width:350px){
  .feature-grid{grid-template-columns:1fr}
  .feature-card{min-height:164px}
  .hero h1{font-size:40px}
  .impact-card{grid-template-columns:1fr}
  .impact-item,.impact-item:nth-child(odd){border-right:0;border-bottom:1px solid #eadbc9}
  .impact-item:last-child{border-bottom:0}
}


/* =========================================================
   Mobile clean v5
   - About full-bleed
   - Dampak section removed from HTML
   - Nilai-Nilai Kami 2 columns
   - Footer hidden on mobile
   ========================================================= */

@media (max-width:820px){

  /* About jadi full block mengikuti lebar viewport */
  .about-section{
    padding:12px 0 8px;
  }

  .about-section > .container{
    width:100%;
    max-width:none;
  }

  .about-panel{
    width:100%;
    border-left:0;
    border-right:0;
    border-radius:0;
    padding:18px 18px 0;
    box-shadow:none;
  }

  .about-copy{
    padding:0 0 8px;
  }

  .about-heading{
    margin-bottom:10px;
  }

  .about-lead,
  .about-sub{
    max-width:none;
  }

  .about-actions{
    margin-top:14px;
  }

  .about-visual{
    margin-top:2px;
  }

  .about-visual img{
    width:min(92%,360px);
  }

  /* Nilai-Nilai Kami = 2 kolom di mobile */
  .values-section{
    padding:12px 0 16px;
  }

  .values-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .value-card{
    min-height:150px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    gap:4px;
    padding:10px 8px 12px;
    text-align:center;
    overflow:hidden;
  }

  .value-card>img{
    width:76px;
    height:76px;
    flex:0 0 76px;
    margin:-4px auto -2px;
  }

  .value-card h3{
    margin:0 0 3px;
    font-size:13px;
    line-height:1.2;
  }

  .value-card p{
    font-size:10px;
    line-height:1.4;
  }

  /* Footer tidak ditampilkan di mobile */
  .footer{
    display:none;
  }
}

@media (max-width:360px){
  .about-panel{
    padding-inline:14px;
  }

  .values-grid{
    gap:8px;
  }

  .value-card{
    min-height:146px;
    padding-inline:6px;
  }

  .value-card>img{
    width:68px;
    height:68px;
    flex-basis:68px;
  }

  .value-card p{
    font-size:9.5px;
  }
}


/* V6 — koreksi: card Tentang tetap boxed, hanya tombol yang full width di mobile */
@media (max-width:820px){
  .about-section{
    padding:12px 0 8px;
  }

  .about-section > .container{
    width:min(100% - 28px,680px);
    max-width:680px;
    margin-inline:auto;
  }

  .about-panel{
    width:100%;
    border:1px solid var(--line);
    border-radius:20px;
    padding:18px 18px 0;
    box-shadow:0 10px 28px rgba(37,29,20,.05);
  }

  .about-actions{
    width:100%;
    margin-top:14px;
  }

  .about-actions .btn{
    width:100%;
    max-width:none;
    justify-content:center;
  }
}

@media (max-width:480px){
  .about-section > .container{
    width:calc(100% - 22px);
  }

  .about-panel{
    padding:16px 14px 0;
    border-radius:18px;
  }
}


/* V7 — mobile: sembunyikan ilustrasi kucing About */
@media (max-width:820px){
  .about-visual{
    display:none!important;
  }

  .about-panel{
    padding-bottom:18px;
  }
}


/* V8 — desktop footer centered, tanpa link columns */
.footer-grid-centered{
  display:block;
}

.footer-brand-centered{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.footer-brand-centered img{
  width:220px;
  height:54px;
  object-position:center center;
}

.footer-brand-centered p{
  max-width:420px;
  margin:10px auto 0;
}

.footer-social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:18px;
}

.footer-social-link{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  margin:0 !important;
  border-radius:999px;
  background:#f6efe5;
  border:1px solid #ead8c4;
  transition:.18s ease;
}

.footer-social-link img{
  width:22px;
  height:22px;
  object-fit:contain;
}

.footer-social-link:hover{
  transform:translateY(-2px);
  background:#fff4e7;
  border-color:#e3c39f;
}

@media (max-width:820px){
  .footer-grid-centered,
  .footer-brand-centered,
  .footer-social{
    display:none !important;
  }
}


/* V10 — header: Toko + icon Cart/Account */
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:14px;
}

.header-icon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:1px solid #dfe7e2;
  border-radius:12px;
  background:#fff;
  color:var(--green);
  box-shadow:0 6px 16px rgba(11,74,53,.08);
  transition:.16s ease;
}

.header-icon-btn:hover{
  transform:translateY(-1px);
  border-color:#b8d2c6;
  background:#f6fbf8;
  box-shadow:0 8px 18px rgba(11,74,53,.12);
}

.header-icon-btn svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* tombol CTA navbar lama tidak dipakai lagi */
.nav-cta{
  display:none!important;
}

@media (max-width:1100px){
  .main-nav{
    gap:18px;
  }

  .header-actions{
    gap:8px;
    margin-left:8px;
  }

  .header-icon-btn{
    width:40px;
    height:40px;
  }
}

@media (max-width:820px){
  .header-actions{
    margin-left:0;
    gap:8px;
  }

  .header-icon-btn{
    width:40px;
    height:40px;
    box-shadow:none;
  }

  /* hamburger tetap di kanan, icon cart/account tetap terlihat */
  .menu-toggle{
    margin-left:auto;
  }
}

@media (max-width:420px){
  .header-actions{
    gap:6px;
  }

  .header-icon-btn{
    width:36px;
    height:36px;
    border-radius:10px;
  }

  .header-icon-btn svg{
    width:20px;
    height:20px;
  }
}


/* V11 — desktop header 3-area: logo kiri, menu center, actions kanan */
@media (min-width:821px){
  .nav-wrap{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:24px;
  }

  .brand{
    justify-self:start;
  }

  .main-nav{
    justify-self:center;
    margin-left:0;
    gap:34px;
  }

  .header-actions{
    justify-self:end;
    margin-left:0;
  }
}


/* V12 — spacing header setelah tambah Leaderboard */
@media (min-width:821px){
  .main-nav{
    gap:26px;
  }
}

@media (max-width:1100px) and (min-width:821px){
  .main-nav{
    gap:18px;
    font-size:13px;
  }
}


/* V13 — compact bilingual language switch */
.language-switch{
  display:inline-flex;
  align-items:center;
  gap:2px;
  padding:3px;
  border:1px solid #dfe7e2;
  border-radius:11px;
  background:#f7faf8;
  box-shadow:0 5px 14px rgba(11,74,53,.06);
}

.language-option{
  min-width:34px;
  height:34px;
  padding:0 8px;
  border:0;
  border-radius:8px;
  background:transparent;
  color:#66736d;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  transition:.16s ease;
}

.language-option:hover{
  color:var(--green);
  background:#edf6f1;
}

.language-option.active{
  color:#fff;
  background:var(--green);
  box-shadow:0 3px 8px rgba(11,74,53,.18);
}

@media (max-width:1100px) and (min-width:821px){
  .language-switch{
    padding:2px;
  }

  .language-option{
    min-width:30px;
    height:32px;
    padding:0 6px;
    font-size:11px;
  }
}

@media (max-width:820px){
  .language-switch{
    order:-1;
    box-shadow:none;
  }

  .language-option{
    min-width:30px;
    height:34px;
    padding:0 6px;
    font-size:11px;
  }
}

@media (max-width:420px){
  .language-switch{
    padding:2px;
  }

  .language-option{
    min-width:27px;
    height:32px;
    padding:0 5px;
    font-size:10px;
  }
}


/* =========================================================
   V14 — Home icon + Google Play download CTA
   ========================================================= */

.nav-home-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.nav-home-icon{
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.btn-download-app{
  min-height:50px;
  padding:6px 16px 6px 12px;
  gap:10px;
  color:#202522;
  background:#fff;
  border:1px solid rgba(11,74,53,.45);
  box-shadow:0 7px 16px rgba(11,74,53,.08);
}

.btn-download-app:hover{
  background:#f8fbf9;
  border-color:rgba(11,74,53,.65);
}

.google-play-icon{
  width:31px;
  height:31px;
  flex:0 0 31px;
}

.google-play-icon .play-green{fill:#34A853}
.google-play-icon .play-blue{fill:#4285F4}
.google-play-icon .play-red{fill:#EA4335}
.google-play-icon .play-yellow{fill:#FBBC04}

.download-app-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.02;
}

.download-app-copy small{
  font-size:8px;
  font-weight:800;
  letter-spacing:.09em;
  color:#68716c;
}

.download-app-copy strong{
  margin-top:3px;
  font-size:14px;
  color:#17201b;
}

.anchor-target{
  display:block;
  position:relative;
  top:-90px;
  visibility:hidden;
}

@media (max-width:820px){
  .nav-home-icon{
    width:18px;
    height:18px;
  }

  .btn-download-app{
    width:100%;
    min-height:52px;
  }
}

@media (max-width:420px){
  .btn-download-app{
    min-height:50px;
  }

  .google-play-icon{
    width:29px;
    height:29px;
    flex-basis:29px;
  }
}


/* V15 — hero fokus ke app store */
.hero-store-actions{
  align-items:center;
  gap:12px;
}

/* Siap ditambah App Store badge di samping Google Play nanti */
.hero-store-actions .btn-download-app{
  flex:0 0 auto;
}

@media (max-width:820px){
  .hero-store-actions{
    width:100%;
  }

  .hero-store-actions .btn-download-app{
    width:100%;
  }
}


/* V16 — tambah CTA Android APK di samping Google Play */
.hero-store-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
}

.hero-store-actions .btn-download-app{
  flex:0 0 auto;
}

.btn-download-apk{
  background:#f7fbf8;
}

.btn-download-apk:hover{
  background:#edf6f1;
}

.android-icon{
  width:31px;
  height:31px;
  flex:0 0 31px;
  fill:none;
  stroke:#2f7d32;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

@media (max-width:820px){
  .hero-store-actions{
    width:100%;
    flex-direction:column;
    align-items:stretch;
  }

  .hero-store-actions .btn-download-app{
    width:100%;
  }
}

/* =========================================================
   V18 — Static one-page landing refresh
   Beranda | Fitur | Cara Kerja | Tentang | FAQ | Kontak
   ========================================================= */

.section-kicker{
  margin:0 0 5px!important;
  color:var(--orange-dark)!important;
  font-size:11px!important;
  line-height:1.2;
  font-weight:900;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.header-download-btn{
  min-height:40px;
  padding:0 15px;
  border-radius:10px;
  color:#fff;
  background:var(--orange);
  box-shadow:0 6px 14px rgba(255,101,0,.18);
  white-space:nowrap;
}
.header-download-btn:hover{background:var(--orange-dark)}

@media (min-width:821px){
  .main-nav{gap:21px}
  .main-nav a{white-space:nowrap}
  .header-actions{gap:9px}
}

.landing-feature-section{padding-top:34px}

/* Step / Cara Kerja */
.how-section{padding:34px 0 18px}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.step-card{
  position:relative;
  min-height:230px;
  padding:24px 24px 22px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(180deg,#fffdfa 0%,#fff7ec 100%);
  box-shadow:0 8px 22px rgba(37,29,20,.035);
}
.step-number{
  position:absolute;
  top:15px;
  right:18px;
  color:rgba(255,101,0,.16);
  font-size:40px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.05em;
}
.step-icon-wrap{
  width:82px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:8px;
}
.step-icon-wrap img{width:82px;height:82px;object-fit:contain}
.step-card h3{margin:4px 0 6px;color:var(--green);font-size:18px}
.step-card p{margin:0;color:#505953;font-size:13px;line-height:1.6}

/* About benefit list */
.benefit-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px 12px;
  margin-top:18px;
}
.benefit-item{
  display:flex;
  align-items:flex-start;
  gap:9px;
  min-width:0;
  padding:10px 11px;
  border:1px solid #eadfce;
  border-radius:12px;
  background:rgba(255,255,255,.72);
}
.benefit-item span{font-size:18px;line-height:1.3}
.benefit-item p{
  margin:0;
  color:#4c554f;
  font-size:12px;
  line-height:1.45;
}

/* FAQ */
.faq-section{padding:34px 0 30px}
.faq-layout{
  display:grid;
  grid-template-columns:minmax(250px,.72fr) minmax(0,1.28fr);
  gap:34px;
  align-items:start;
}
.faq-intro{
  position:sticky;
  top:106px;
  padding:8px 0;
}
.faq-intro h2{
  margin:3px 0 10px;
  color:var(--green);
  font-size:30px;
  line-height:1.12;
  letter-spacing:-.025em;
}
.faq-intro>p:last-child{
  margin:0;
  max-width:360px;
  color:var(--muted);
  font-size:14px;
}
.faq-list{display:grid;gap:10px}
.faq-list details{
  border:1px solid var(--line);
  border-radius:14px;
  background:#fffdfa;
  overflow:hidden;
}
.faq-list summary{
  position:relative;
  padding:16px 46px 16px 18px;
  cursor:pointer;
  list-style:none;
  color:#222824;
  font-size:14px;
  font-weight:800;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{
  content:"+";
  position:absolute;
  right:18px;
  top:50%;
  width:24px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:translateY(-50%);
  border-radius:999px;
  background:#fff0df;
  color:var(--orange-dark);
  font-size:19px;
  line-height:1;
}
.faq-list details[open] summary::after{content:"−"}
.faq-list details[open] summary{color:var(--green)}
.faq-list details p{
  margin:0;
  padding:0 18px 17px;
  color:#59615c;
  font-size:13px;
  line-height:1.65;
}

/* CTA refresh */
.landing-cta-section{padding:4px 0 28px}
.landing-cta-banner{min-height:116px}
.landing-cta-banner .cta-copy p{max-width:600px}

/* Contact */
.contact-section{padding:8px 0 34px}
.contact-panel{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(300px,.92fr);
  gap:28px;
  align-items:center;
  padding:28px 30px;
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(135deg,#fff9f0 0%,#fffdfa 52%,#f5faf7 100%);
  box-shadow:0 10px 28px rgba(37,29,20,.045);
}
.contact-copy h2{
  margin:3px 0 8px;
  color:var(--green);
  font-size:29px;
  line-height:1.1;
}
.contact-copy>p:last-of-type{
  max-width:620px;
  margin:0;
  color:#56605a;
  font-size:14px;
}
.contact-email{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  padding:10px 14px;
  border:1px solid #e9d7c2;
  border-radius:11px;
  background:#fff;
  color:var(--green);
  font-size:14px;
  font-weight:800;
}
.contact-email:hover{border-color:#e1b783;color:var(--orange-dark)}
.contact-email-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:8px;
  background:#fff1e2;
  color:var(--orange);
}
.contact-social-wrap{
  padding:18px;
  border:1px solid rgba(11,74,53,.10);
  border-radius:16px;
  background:rgba(255,255,255,.68);
}
.contact-social-label{
  display:block;
  margin-bottom:10px;
  color:var(--green);
  font-size:13px;
  font-weight:900;
}
.social-chips{display:flex;flex-wrap:wrap;gap:8px}
.social-chips span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 11px;
  border:1px solid #e8ddce;
  border-radius:999px;
  background:#fff;
  color:#465049;
  font-size:11px;
  font-weight:800;
}
.contact-social-wrap small{
  display:block;
  margin-top:10px;
  color:#7a817c;
  font-size:10px;
  line-height:1.5;
}

/* Footer / legal */
.landing-footer{padding-top:26px}
.legal-links{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px 18px;
  margin-top:16px;
}
.legal-links a{
  margin:0!important;
  color:#5a635e;
  font-size:11px;
  font-weight:700;
}
.legal-links a:hover{color:var(--orange-dark)}

@media (max-width:1100px){
  .header-download-btn{display:none}
  .steps-grid{gap:12px}
  .contact-panel{grid-template-columns:1fr}
}

@media (max-width:820px){
  .header-actions{margin-left:0}
  .header-download-btn{display:none}

  .steps-grid{grid-template-columns:1fr;gap:10px}
  .step-card{
    min-height:auto;
    display:grid;
    grid-template-columns:72px 1fr;
    grid-template-areas:"icon title" "icon copy";
    gap:0 12px;
    padding:16px;
  }
  .step-icon-wrap{grid-area:icon;width:68px;height:68px;margin:0}
  .step-icon-wrap img{width:68px;height:68px}
  .step-card h3{grid-area:title;align-self:end;margin:4px 0 3px;font-size:16px}
  .step-card p{grid-area:copy;font-size:12px}
  .step-number{top:12px;right:14px;font-size:32px}

  .benefit-list{grid-template-columns:1fr}

  .faq-layout{grid-template-columns:1fr;gap:14px}
  .faq-intro{position:static;text-align:center;padding:0}
  .faq-intro h2{font-size:25px}
  .faq-intro>p:last-child{margin-inline:auto}

  .contact-panel{padding:22px 18px;border-radius:18px}
  .contact-copy{text-align:center}
  .contact-email{justify-content:center}
  .contact-social-wrap{text-align:center}
  .social-chips{justify-content:center}

  /* Landing page harus tetap punya footer/legal di mobile. */
  .landing-footer{display:block!important}
  .landing-footer .footer-grid-centered,
  .landing-footer .footer-brand-centered,
  .landing-footer .footer-social{display:flex!important}
  .landing-footer .footer-grid-centered{display:block!important}
  .landing-footer .footer-brand-centered{display:flex!important}
  .landing-footer .footer-social{display:flex!important}
}

@media (max-width:480px){
  .landing-feature-section{padding-top:26px}
  .section-kicker{font-size:10px!important}

  .faq-section{padding:28px 0 22px}
  .faq-list summary{padding:14px 42px 14px 14px;font-size:13px}
  .faq-list details p{padding:0 14px 15px;font-size:12px}

  .landing-cta-banner{
    grid-template-columns:74px 1fr;
    min-height:auto;
  }
  .landing-cta-banner .cta-copy h2{font-size:16px}
  .landing-cta-banner .cta-copy p{font-size:11px}

  .contact-section{padding-bottom:22px}
  .contact-panel{padding:18px 14px}
  .contact-copy h2{font-size:24px}
  .contact-copy>p:last-of-type{font-size:12px}
  .contact-email{width:100%;font-size:12px}
  .social-chips{gap:6px}
  .social-chips span{min-height:31px;padding:0 9px;font-size:10px}

  .landing-footer .footer-brand-centered img{width:188px;height:46px}
  .landing-footer .footer-brand-centered p{font-size:11px}
  .legal-links{gap:7px 12px}
  .legal-links a{font-size:10px}
}
\n\n/* v3 compact + low-radius pass */\n:root{--radius-xs:5px;--radius-sm:7px;--radius-md:9px;--radius-lg:11px}\n.btn,.language-switch,.header-download-btn{border-radius:var(--radius-sm)!important}\n.hero-shell,.feature-card,.step-card,.about-panel,.benefit-item,.value-card,.faq-list details,.landing-cta-banner,.contact-panel,.contact-social-wrap{border-radius:var(--radius-md)!important}\n.menu-toggle,.main-nav,.footer-social-link,.legal-links a{border-radius:var(--radius-sm)!important}\n\n.feature-grid{gap:10px}\n.feature-card{\n  height:166px;\n  min-height:166px;\n  padding:9px 10px 10px;\n  overflow:hidden;\n}\n.feature-icon{top:3px;width:88px;height:88px}\n.feature-card h3{margin:78px 0 4px;font-size:12.5px;line-height:1.18}\n.feature-card p{font-size:10.5px;line-height:1.38}\n.feature-card:hover{transform:translateY(-2px)}\n\n.contact-section{padding:4px 0 26px}\n.contact-panel{\n  grid-template-columns:minmax(0,1fr) auto;\n  gap:22px;\n  padding:20px 22px;\n}\n.contact-copy h2{font-size:26px;margin-bottom:6px}\n.contact-copy>p:last-of-type{font-size:13px;line-height:1.55}\n.contact-social-wrap{padding:13px 15px}\n.contact-social-label{margin-bottom:8px}\n.social-icon-row{display:flex;align-items:center;gap:9px;flex-wrap:wrap}\n.social-icon-link{display:inline-flex;width:34px;height:34px;align-items:center;justify-content:center}\n.social-icon-link img{width:34px;height:34px;display:block}\n.contact-email,.contact-email-icon,.social-chips,.contact-social-wrap small{display:none!important}\n\n@media (max-width:1100px){\n  .feature-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}\n  .feature-card{height:150px;min-height:150px}\n  .feature-icon{width:76px;height:76px}\n  .feature-card h3{margin-top:67px}\n}\n@media (max-width:760px){\n  .feature-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}\n  .feature-card{height:146px;min-height:146px;padding:8px}\n  .feature-icon{width:70px;height:70px}\n  .feature-card h3{margin-top:62px;font-size:12px}\n  .feature-card p{font-size:10px;line-height:1.35}\n  .contact-panel{grid-template-columns:1fr;padding:16px 14px;gap:14px}\n  .contact-copy{text-align:left!important}\n  .contact-social-wrap{text-align:left!important}\n  .social-icon-row{justify-content:flex-start}\n}\n@media (max-width:390px){\n  .feature-card{height:140px;min-height:140px}\n  .feature-icon{width:64px;height:64px}\n  .feature-card h3{margin-top:57px;font-size:11.5px}\n  .feature-card p{font-size:9.6px}\n}\n
/* v5 — flat/borderless landing pass */
.site-header{
  box-shadow:none!important;
  border-bottom:0!important;
}

.header-actions{gap:8px!important}
.header-download-btn{display:none!important}
.language-switch{
  display:flex;
  align-items:center;
  gap:4px;
  padding:0!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
}
.language-option{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-width:auto!important;
  height:34px!important;
  padding:0 7px!important;
  color:#52615a!important;
  background:transparent!important;
  border:0!important;
  border-radius:6px!important;
  box-shadow:none!important;
  font-size:11px!important;
  font-weight:800!important;
}
.language-option:hover{background:#f3f6f2!important}
.language-option.active{
  color:var(--green)!important;
  background:#edf5f0!important;
  box-shadow:none!important;
}
.language-flag{
  width:18px!important;
  height:12px!important;
  display:block!important;
  object-fit:cover!important;
  flex:0 0 auto!important;
  border-radius:2px!important;
}

/* Features: editorial rows, no cards. */
.landing-feature-section{padding-bottom:26px}
.feature-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:0 34px!important;
  margin-top:28px!important;
}
.feature-card{
  position:relative!important;
  display:grid!important;
  grid-template-columns:68px minmax(0,1fr)!important;
  grid-template-rows:auto auto!important;
  column-gap:14px!important;
  align-items:center!important;
  height:auto!important;
  min-height:108px!important;
  padding:14px 0!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  overflow:visible!important;
  text-align:left!important;
  transform:none!important;
}
.feature-card:nth-child(n+4){border-top:1px solid rgba(11,74,53,.10)!important}
.feature-card:hover{transform:none!important;box-shadow:none!important;background:transparent!important}
.feature-icon{
  position:static!important;
  grid-column:1!important;
  grid-row:1 / span 2!important;
  width:64px!important;
  height:64px!important;
  object-fit:contain!important;
  margin:0!important;
}
.feature-card h3{
  grid-column:2!important;
  grid-row:1!important;
  margin:0 0 4px!important;
  color:#183d30!important;
  font-size:14px!important;
  line-height:1.25!important;
  text-align:left!important;
}
.feature-card p{
  grid-column:2!important;
  grid-row:2!important;
  margin:0!important;
  color:#5a625d!important;
  font-size:11.5px!important;
  line-height:1.48!important;
  text-align:left!important;
}

/* How it works: horizontal timeline instead of another set of cards. */
.how-section{padding:24px 0 34px!important}
.steps-grid{
  position:relative!important;
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:44px!important;
  margin-top:34px!important;
}
.steps-grid::before{
  content:"";
  position:absolute;
  left:12%;
  right:12%;
  top:29px;
  height:2px;
  background:#e8eee9;
  z-index:0;
}
.step-card{
  position:relative!important;
  z-index:1!important;
  display:block!important;
  min-height:0!important;
  padding:0 8px!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  text-align:center!important;
}
.step-card::before{
  content:"";
  position:absolute;
  top:21px;
  left:50%;
  width:18px;
  height:18px;
  transform:translateX(-50%);
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 6px #fff;
  z-index:-1;
}
.step-number{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:58px!important;
  height:58px!important;
  margin:0 auto 12px!important;
  color:var(--orange)!important;
  background:#fff5ec!important;
  border-radius:50%!important;
  font-size:14px!important;
  font-weight:900!important;
  line-height:1!important;
}
.step-icon-wrap{
  width:44px!important;
  height:44px!important;
  margin:0 auto 7px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
}
.step-icon-wrap img{width:40px!important;height:40px!important;object-fit:contain!important}
.step-card h3{margin:0 0 4px!important;font-size:16px!important;color:var(--green)!important}
.step-card p{max-width:300px;margin:0 auto!important;font-size:12px!important;line-height:1.55!important;color:#59625d!important}

/* Reduce decorative depth across landing page. */
.hero-shell,.about-panel,.value-card,.faq-list details,.landing-cta-banner,
.footer-social-link,.benefit-item{
  box-shadow:none!important;
}
.about-panel,.value-card,.faq-list details,.benefit-item{
  border-color:rgba(11,74,53,.08)!important;
}
.value-card,.faq-list details,.benefit-item{border-radius:7px!important}
.about-panel,.landing-cta-banner,.hero-shell{border-radius:9px!important}
.btn{box-shadow:none!important}
.btn:hover{box-shadow:none!important}

@media (max-width:900px){
  .feature-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:0 24px!important}
  .feature-card:nth-child(n+3){border-top:1px solid rgba(11,74,53,.10)!important}
  .steps-grid{gap:20px!important}
}

@media (max-width:760px){
  .language-option{height:32px!important;padding:0 5px!important}
  .language-flag{width:17px!important;height:11px!important}
  .feature-grid{grid-template-columns:1fr!important;margin-top:20px!important}
  .feature-card{grid-template-columns:58px minmax(0,1fr)!important;min-height:88px!important;padding:11px 0!important}
  .feature-card:nth-child(n+2){border-top:1px solid rgba(11,74,53,.10)!important}
  .feature-icon{width:54px!important;height:54px!important}
  .feature-card h3{font-size:13px!important}
  .feature-card p{font-size:10.8px!important}

  .steps-grid{grid-template-columns:1fr!important;gap:0!important;margin-top:22px!important;padding-left:22px!important}
  .steps-grid::before{left:28px!important;right:auto!important;top:20px!important;bottom:20px!important;width:2px!important;height:auto!important}
  .step-card{
    display:grid!important;
    grid-template-columns:58px minmax(0,1fr)!important;
    grid-template-areas:"number title" "number icon" "number copy"!important;
    column-gap:14px!important;
    padding:10px 0!important;
    text-align:left!important;
  }
  .step-card::before{display:none!important}
  .step-number{grid-area:number!important;width:48px!important;height:48px!important;margin:0!important;align-self:start!important}
  .step-icon-wrap{grid-area:icon!important;width:34px!important;height:30px!important;margin:1px 0 3px!important;justify-content:flex-start!important}
  .step-icon-wrap img{width:30px!important;height:30px!important}
  .step-card h3{grid-area:title!important;margin:3px 0 1px!important;text-align:left!important;font-size:14px!important}
  .step-card p{grid-area:copy!important;max-width:none!important;margin:0!important;text-align:left!important;font-size:11px!important}
}

/* v5.1 — no outline cards; separation comes from spacing/background only */
.feature-card,
.feature-card:nth-child(n+2),
.feature-card:nth-child(n+3),
.feature-card:nth-child(n+4),
.about-panel,
.value-card,
.faq-list details,
.benefit-item,
.hero-shell,
.landing-cta-banner{
  border:0!important;
}
.value-card,.faq-list details,.benefit-item{background:#fafbf8!important}

/* v7 — static contact page */
.contact-page-body{background:#fffdfa}
.contact-page-main{min-height:calc(100vh - 78px)}
.contact-hero-section{padding:72px 0 36px;background:linear-gradient(180deg,#fffaf3 0%,#fffdfa 100%)}
.contact-hero-layout{position:relative;max-width:980px}
.contact-hero-copy{max-width:720px}
.contact-hero-copy .section-kicker{margin-bottom:9px}
.contact-hero-copy h1{margin:0 0 14px;color:var(--green);font-size:clamp(34px,5vw,58px);line-height:1.04;letter-spacing:-1.8px}
.contact-hero-copy>p:last-child{max-width:650px;margin:0;color:#59625d;font-size:15px;line-height:1.7}
.contact-hero-paw{position:absolute;right:24px;top:4px;width:90px;height:90px;object-fit:contain;opacity:.09;transform:rotate(14deg)}

.contact-content-section{padding:28px 0 74px}
.contact-layout{display:grid;grid-template-columns:minmax(0,.88fr) minmax(420px,1.12fr);gap:64px;align-items:start;max-width:1080px}
.contact-info-column{padding-top:10px}
.contact-topic-list{display:grid;gap:0}
.contact-topic-item{display:grid;grid-template-columns:44px minmax(0,1fr);gap:14px;padding:17px 0;border-bottom:1px solid rgba(11,74,53,.10)}
.contact-topic-item:first-child{padding-top:0}
.contact-topic-icon{display:flex;align-items:center;justify-content:center;width:38px;height:38px;background:#fff3e7;border-radius:8px;font-size:18px}
.contact-topic-item h2{margin:0 0 3px;color:var(--green);font-size:15px;line-height:1.3}
.contact-topic-item p{margin:0;color:#626a65;font-size:12px;line-height:1.55}
.contact-safety-note{margin-top:24px;padding:15px 0 0;border-top:2px solid rgba(255,101,0,.20)}
.contact-safety-note strong{display:block;margin-bottom:4px;color:#b84b00;font-size:12px}
.contact-safety-note p{margin:0;color:#68706b;font-size:11.5px;line-height:1.55}
.contact-social-flat{display:flex;align-items:center;gap:14px;margin-top:25px}
.contact-social-flat>span{color:var(--green);font-size:12px;font-weight:800}
.contact-social-icons{display:flex;align-items:center;gap:7px}
.contact-social-icons span{display:inline-flex;width:30px;height:30px;align-items:center;justify-content:center}
.contact-social-icons img{width:30px;height:30px;display:block}

.contact-form-column{padding-left:44px;border-left:1px solid rgba(11,74,53,.11)}
.contact-form{padding:2px 0 0;background:transparent;border:0;box-shadow:none}
.contact-form-heading{margin-bottom:22px}
.contact-form-heading .section-kicker{margin-bottom:7px}
.contact-form-heading h2{margin:0 0 7px;color:var(--green);font-size:25px;line-height:1.2}
.contact-form-heading>p:last-child{margin:0;color:#66706a;font-size:12px}
.contact-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.contact-field{display:grid;gap:6px;color:#26483b;font-size:11px;font-weight:800}
.contact-field-full{grid-column:1/-1}
.contact-field input,.contact-field select,.contact-field textarea{width:100%;margin:0;padding:11px 12px;color:#26302c;background:#fff;border:1px solid #dfded7;border-radius:7px;outline:0;font:inherit;font-size:12px;font-weight:500;transition:border-color .15s ease,box-shadow .15s ease}
.contact-field input,.contact-field select{height:43px}
.contact-field textarea{min-height:132px;resize:vertical;line-height:1.55}
.contact-field input:focus,.contact-field select:focus,.contact-field textarea:focus{border-color:rgba(11,74,53,.55);box-shadow:0 0 0 3px rgba(11,74,53,.06)}
.contact-field input::placeholder,.contact-field textarea::placeholder{color:#a09f98}
.contact-form-actions{display:flex;align-items:center;gap:14px;margin-top:17px}
.contact-submit{min-width:138px;border:0;box-shadow:none!important}
.contact-form-actions small{max-width:255px;color:#92948f;font-size:9.5px;line-height:1.4}
.contact-toast{position:fixed;right:22px;bottom:22px;z-index:100;max-width:320px;padding:11px 14px;color:#fff;background:#123f30;border-radius:7px;font-size:11px;line-height:1.45;opacity:0;transform:translateY(12px);pointer-events:none;transition:.2s ease}
.contact-toast.show{opacity:1;transform:translateY(0)}
.contact-page-footer{margin-top:0}

@media (max-width:900px){
  .contact-hero-section{padding:52px 0 28px}
  .contact-layout{grid-template-columns:1fr;gap:38px;max-width:720px}
  .contact-form-column{padding-left:0;border-left:0;border-top:1px solid rgba(11,74,53,.10);padding-top:34px}
  .contact-hero-paw{width:72px;height:72px;right:12px}
}
@media (max-width:620px){
  .contact-hero-section{padding:40px 0 22px}
  .contact-hero-copy h1{font-size:34px;letter-spacing:-1px}
  .contact-hero-copy>p:last-child{font-size:13px}
  .contact-content-section{padding:20px 0 54px}
  .contact-layout{gap:30px}
  .contact-topic-item{grid-template-columns:38px minmax(0,1fr);gap:11px;padding:14px 0}
  .contact-topic-icon{width:34px;height:34px;font-size:16px}
  .contact-form-grid{grid-template-columns:1fr;gap:12px}
  .contact-field-full{grid-column:auto}
  .contact-form-actions{align-items:flex-start;flex-direction:column}
  .contact-submit{width:100%}
  .contact-form-actions small{max-width:none}
  .contact-social-flat{align-items:flex-start;flex-direction:column;gap:8px}
  .contact-hero-paw{opacity:.06}
  .contact-toast{left:14px;right:14px;bottom:14px;max-width:none}
}

/* v8 — user-provided PNG benefit icons */
.benefit-item{
  align-items:center!important;
  gap:12px!important;
  min-height:70px;
  padding:8px 10px!important;
}
.benefit-icon{
  width:48px;
  height:48px;
  flex:0 0 48px;
  object-fit:contain;
  display:block;
}
@media (max-width:760px){
  .benefit-item{gap:9px!important;min-height:62px;padding:7px 8px!important}
  .benefit-icon{width:40px;height:40px;flex-basis:40px}
}


/* v9 — user PNG feature icons */
.feature-icon{width:72px!important;height:72px!important;object-fit:contain!important}
@media (max-width:760px){.feature-icon{width:58px!important;height:58px!important}}

/* v10 — Cara Kerja uses the supplied PNG artwork; keep timeline flat but let the detailed icons read clearly. */
.step-icon-wrap{
  width:64px!important;
  height:64px!important;
  margin:0 auto 7px!important;
}
.step-icon-wrap img{
  width:60px!important;
  height:60px!important;
  object-fit:contain!important;
}
@media (max-width:760px){
  .step-icon-wrap{
    width:46px!important;
    height:42px!important;
    margin:1px 0 4px!important;
  }
  .step-icon-wrap img{
    width:42px!important;
    height:42px!important;
  }
}

/* Laravel landing integration: real social links */
.contact-social-icons a{
  display:inline-flex;
  width:30px;
  height:30px;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.contact-social-icons a:hover{transform:translateY(-1px)}
.contact-social-empty{color:var(--muted);font-size:11px;line-height:1.45}


/* v233 — live legal pages, secure public deletion request, AJAX form states */
.contact-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.contact-field-error{display:block;min-height:14px;color:#b64237;font-size:10px;font-weight:650;line-height:1.35}
.contact-field.has-error input,.contact-field.has-error select,.contact-field.has-error textarea{border-color:#cf766e!important;box-shadow:0 0 0 3px rgba(183,59,55,.06)!important}
.contact-submit:disabled{opacity:.65;cursor:wait}
.contact-toast.is-error{background:#8f332f}
.legal-links a.active{color:var(--orange);font-weight:800}
.legal-page-body,.delete-account-page-body{background:#fffdfa}
.legal-page-main,.delete-account-main{min-height:65vh}
.legal-hero{padding:60px 0 28px;background:linear-gradient(180deg,#fff9f1 0%,#fffdfa 100%)}
.legal-page-container{max-width:900px}
.legal-hero h1{margin:0;color:var(--green);font-size:clamp(34px,5vw,54px);line-height:1.06;letter-spacing:-1.5px}
.legal-meta{margin:11px 0 0;color:#7b827e;font-size:12px}
.legal-content-section{padding:28px 0 70px}
.legal-document{padding:0;background:transparent;border:0}
.legal-document-text{white-space:pre-wrap;color:#34453e;font-size:14px;line-height:1.8;overflow-wrap:anywhere}
.legal-contact-note{margin:32px 0 0;padding-top:18px;border-top:1px solid rgba(11,74,53,.10);font-size:12px}
.legal-contact-note a{color:var(--green);font-weight:750;text-decoration:none}
.delete-account-lead{max-width:690px;margin:14px 0 0;color:#5e6963;font-size:14px;line-height:1.7}
.delete-account-section{padding:34px 0 76px}
.delete-account-layout{display:grid;grid-template-columns:minmax(0,.9fr) minmax(420px,1.1fr);gap:62px;max-width:1050px;align-items:start}
.delete-account-copy{padding-top:8px}
.delete-account-copy h2{margin:0 0 16px;color:var(--green);font-size:22px}
.delete-account-copy ol{margin:0;padding-left:22px;color:#4f5d56;font-size:13px;line-height:1.75}
.delete-account-copy li+li{margin-top:8px}
.delete-account-warning{margin:24px 0 0;padding:14px 0;border-top:1px solid rgba(244,122,31,.25);border-bottom:1px solid rgba(244,122,31,.25);color:#7c552e;font-size:11.5px;line-height:1.6}
.delete-account-form{padding-left:42px;border-left:1px solid rgba(11,74,53,.11)}
.delete-account-confirm{display:flex;align-items:flex-start;gap:9px;color:#4b5b53;font-size:11px;line-height:1.5;cursor:pointer}
.delete-account-confirm input{width:16px;height:16px;margin:1px 0 0;accent-color:var(--green);flex:0 0 auto}
.delete-confirm-error{margin-top:-8px}
@media(max-width:900px){.delete-account-layout{grid-template-columns:1fr;gap:34px;max-width:720px}.delete-account-form{padding-left:0;padding-top:30px;border-left:0;border-top:1px solid rgba(11,74,53,.10)}}
@media(max-width:620px){.legal-hero{padding:42px 0 22px}.legal-content-section,.delete-account-section{padding-bottom:52px}.legal-document-text{font-size:12.5px;line-height:1.72}.delete-account-layout{gap:26px}}
