/* =====================================================
   PINUS PACK INDO — v3 | Kit Packega Layout + Green
   ===================================================== */
:root {
  --cream:    #F5F2E8;
  --cream2:   #EEF5EC;
  --dark:     #1B3A2D;
  --dark2:    #243D31;
  --mid:      #2D6A4F;
  --teal:     #3A7D5E;
  --green:    #40916C;
  --green-lt: #52B788;
  --green-xs: #D8F3DC;
  --white:    #FFFFFF;
  --accent:   #F4A21E;
  --accent2:  #E8784E;
  --gray:     #6B7B72;
  --text:     #1B2E25;

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow:    0 4px 20px rgba(27,58,45,0.10);
  --shadow-lg: 0 12px 40px rgba(27,58,45,0.15);
  --transition: all 0.3s ease;
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;color:var(--text);background:var(--white);line-height:1.6;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* ── TOP BAR ─────────────────────────────────────── */
.top-bar{
  background:var(--dark);
  padding:8px 5%;
  display:flex;align-items:center;justify-content:center;gap:36px;
  flex-wrap:wrap;
}
.top-bar-item{
  display:flex;align-items:center;gap:7px;
  font-size:0.78rem;color:rgba(255,255,255,0.75);
}
.top-bar-item svg{width:13px;color:var(--green-lt);flex-shrink:0}

/* ── NAVBAR ──────────────────────────────────────── */
.navbar-wrap{
  position:sticky;top:0;z-index:1000;
  padding:14px 5%;background:var(--cream);
  transition:var(--transition);
}
.navbar-wrap.scrolled{background:rgba(245,242,232,0.97);box-shadow:0 2px 20px rgba(27,58,45,0.08)}
.navbar{
  max-width:900px;margin:0 auto;
  background:var(--white);
  border-radius:var(--radius-xl);
  padding:10px 10px 10px 20px;
  display:flex;align-items:center;justify-content:space-between;
  box-shadow:var(--shadow);
}
.navbar-brand{display:flex;align-items:center;gap:10px}
.brand-logo{
  width:38px;height:38px;border-radius:10px;
  background:linear-gradient(135deg,var(--dark),var(--mid));
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.brand-logo svg{width:20px;color:white}
.brand-name{font-size:1rem;font-weight:800;color:var(--dark);line-height:1.1}
.brand-sub{font-size:0.58rem;color:var(--gray);letter-spacing:1px;text-transform:uppercase}
.nav-links{display:flex;align-items:center;gap:28px}
.nav-links a{
  font-size:0.88rem;font-weight:500;color:var(--text);
  transition:var(--transition);padding-bottom:2px;position:relative;
}
.nav-links a::after{
  content:'';position:absolute;bottom:0;left:0;width:0;height:2px;
  background:var(--green);transition:var(--transition);border-radius:1px;
}
.nav-links a:hover,.nav-links a.active{color:var(--green)}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.nav-right{display:flex;align-items:center;gap:10px}
.lang-switcher{display:flex;border:1.5px solid #D5E8DD;border-radius:20px;overflow:hidden}
.lang-btn{padding:5px 12px;font-size:0.75rem;font-weight:700;background:transparent;border:none;cursor:pointer;color:var(--gray);transition:var(--transition)}
.lang-btn.active{background:var(--dark);color:white}
.btn-nav{
  padding:9px 22px;background:var(--dark);color:white;
  border-radius:var(--radius-xl);font-size:0.84rem;font-weight:700;
  transition:var(--transition);
}
.btn-nav:hover{background:var(--mid)}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer}
.hamburger span{display:block;width:22px;height:2px;background:var(--text);border-radius:2px}
.mobile-nav{
  display:none;position:fixed;top:0;left:0;right:0;bottom:0;
  background:var(--white);z-index:2000;
  flex-direction:column;padding:28px 6%;
  gap:0;overflow-y:auto;
}
.mobile-nav.open{display:flex}
.mobile-nav-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:32px}
.mobile-close{background:none;border:none;cursor:pointer;font-size:1.5rem;color:var(--text)}
.mobile-nav a{padding:16px 0;font-size:1.1rem;font-weight:600;border-bottom:1px solid var(--green-xs);display:block}
.mobile-lang{display:flex;gap:10px;padding-top:20px}

/* ── HERO ────────────────────────────────────────── */
.hero{
  background:var(--cream);padding:60px 5% 0;
  min-height:85vh;display:flex;align-items:center;
}
.hero-inner{
  max-width:1100px;margin:0 auto;width:100%;
  display:grid;grid-template-columns:1fr 1fr;
  gap:40px;align-items:flex-end;
}
.hero-label{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(64,145,108,0.12);border:1px solid rgba(64,145,108,0.25);
  color:var(--green);padding:5px 14px;border-radius:20px;
  font-size:0.76rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;
  margin-bottom:18px;
}
.hero h1{
  font-size:clamp(2.2rem,5.5vw,3.8rem);font-weight:800;
  color:var(--dark);line-height:1.1;margin-bottom:16px;
}
.hero h1 span{color:var(--green)}
.hero-sub{font-size:0.98rem;color:var(--gray);max-width:400px;margin-bottom:28px;line-height:1.7}
.hero-btns{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.btn-main{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 28px;background:var(--dark);color:white;
  border-radius:var(--radius-xl);font-size:0.9rem;font-weight:700;
  transition:var(--transition);
}
.btn-main:hover{background:var(--mid);transform:translateY(-2px)}
.btn-play{
  display:inline-flex;align-items:center;gap:8px;
  font-size:0.88rem;font-weight:600;color:var(--gray);
}
.btn-play-icon{
  width:38px;height:38px;border-radius:50%;background:var(--white);
  box-shadow:var(--shadow);display:flex;align-items:center;justify-content:center;
}
.btn-play-icon svg{width:14px;color:var(--green);margin-left:2px}

/* Hero mini cards row */
.hero-mini-cards{display:flex;gap:10px;margin-top:28px;flex-wrap:wrap}
.hero-mini-card{
  background:var(--white);border-radius:var(--radius);padding:12px 16px;
  box-shadow:var(--shadow);display:flex;align-items:center;gap:10px;
}
.hmc-icon{
  width:36px;height:36px;border-radius:10px;background:var(--green-xs);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.hmc-icon svg{width:18px;color:var(--green)}
.hmc-title{font-size:0.82rem;font-weight:700;line-height:1}
.hmc-sub{font-size:0.7rem;color:var(--gray);margin-top:2px}

/* Hero visual */
.hero-visual{display:flex;align-items:flex-end;justify-content:center;position:relative}
.hero-img-circle{
  width:90%;max-width:420px;aspect-ratio:1;border-radius:50%;
  background:var(--dark);margin:0 auto;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;position:relative;
}
.hero-img-circle img{width:100%;height:100%;object-fit:cover}
.hero-img-ph{
  text-align:center;color:rgba(255,255,255,0.3);
  font-size:0.8rem;padding:20px;
}
.hero-img-ph svg{width:48px;margin:0 auto 10px;opacity:0.3}
.hero-badge-float{
  position:absolute;top:20px;right:-10px;
  background:white;border-radius:var(--radius);padding:10px 14px;
  box-shadow:var(--shadow-lg);display:flex;align-items:center;gap:10px;
}
.hbf-icon{width:34px;height:34px;border-radius:10px;background:var(--green-xs);display:flex;align-items:center;justify-content:center}
.hbf-icon svg{width:17px;color:var(--green)}
.hbf-t{font-size:0.78rem;font-weight:700;white-space:nowrap}
.hbf-s{font-size:0.68rem;color:var(--gray)}

/* ── VISION MISSION + PARTNERS — DARK ────────────── */
.vm-section{background:var(--dark);padding:70px 5%}
.vm-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1.4fr;gap:60px;align-items:center}
.vm-cards{display:flex;flex-direction:column;gap:16px}
.vm-card{border-radius:var(--radius);padding:24px;display:flex;align-items:flex-start;gap:14px}
.vm-card.vision{background:var(--dark2)}
.vm-card.mission{background:var(--mid)}
.vm-card-icon{
  width:46px;height:46px;border-radius:12px;
  background:rgba(255,255,255,0.15);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.vm-card-icon svg{width:22px;color:white}
.vm-card h3{font-size:1rem;font-weight:800;color:white;margin-bottom:6px}
.vm-card p{font-size:0.84rem;color:rgba(255,255,255,0.7);line-height:1.6}
.vm-right .section-label{color:var(--green-lt)}
.vm-right .section-label::before{background:var(--green-lt)}
.vm-right h2{font-size:clamp(1.7rem,3vw,2.3rem);color:white;margin-bottom:14px}
.vm-right p{font-size:0.92rem;color:rgba(255,255,255,0.7);margin-bottom:28px;line-height:1.7}
.partners-label{font-size:0.78rem;color:rgba(255,255,255,0.45);font-weight:600;margin-bottom:14px;letter-spacing:1px}
.partners-row{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.partner-chip{
  padding:7px 18px;border-radius:20px;
  border:1px solid rgba(255,255,255,0.15);
  font-size:0.8rem;color:rgba(255,255,255,0.6);font-weight:600;
}

/* ── STATS — WHITE ──────────────────────────────── */
.stats-section{background:var(--white);padding:56px 5%}
.stats-inner{max-width:700px;margin:0 auto}
.stats-row{display:flex;justify-content:center;gap:60px;flex-wrap:wrap;margin-bottom:28px}
.stat-item{display:flex;align-items:center;gap:14px}
.stat-icon{
  width:52px;height:52px;border-radius:50%;
  background:var(--dark);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.stat-icon svg{width:22px;color:white}
.stat-num{font-size:2rem;font-weight:800;color:var(--dark);line-height:1}
.stat-lbl{font-size:0.78rem;color:var(--gray);margin-top:2px}
.stats-divider{
  border:none;border-top:2px dashed #D5E8DD;margin:0;
}

/* ── WHY CHOOSE US — WHITE ──────────────────────── */
.why-section{background:var(--white);padding:70px 5%}
.why-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1.1fr 1.2fr 1.1fr;gap:40px;align-items:center}
.why-left .section-label{color:var(--green)}
.why-left .section-label::before{background:var(--green)}
.why-left h2{font-size:clamp(1.8rem,3vw,2.4rem);color:var(--dark);margin-bottom:12px}
.why-left p{font-size:0.9rem;color:var(--gray);margin-bottom:24px;line-height:1.7}
.why-center{display:flex;align-items:center;justify-content:center}
.why-img-wrap{
  width:100%;aspect-ratio:3/4;border-radius:var(--radius-lg);
  background:linear-gradient(135deg,var(--mid),var(--green-lt));
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;position:relative;
}
.why-img-wrap img{width:100%;height:100%;object-fit:cover}
.why-img-ph{text-align:center;color:rgba(255,255,255,0.5);font-size:0.8rem;padding:20px}
.why-img-ph svg{width:40px;margin:0 auto 8px;opacity:0.5}
.why-features{display:flex;flex-direction:column;gap:12px}
.why-feat-pill{
  display:flex;align-items:center;gap:12px;
  padding:14px 18px;border-radius:var(--radius-xl);
  transition:var(--transition);cursor:default;
}
.why-feat-pill.dark{background:var(--dark);color:white}
.why-feat-pill.mid{background:var(--mid);color:white}
.why-feat-pill.light{background:var(--cream);color:var(--dark)}
.wfp-icon{
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,0.15);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.why-feat-pill.light .wfp-icon{background:var(--green-xs)}
.wfp-icon svg{width:18px;color:white}
.why-feat-pill.light .wfp-icon svg{color:var(--green)}
.wfp-title{font-size:0.9rem;font-weight:700}
.wfp-sub{font-size:0.75rem;opacity:0.7;margin-top:2px}

/* ── SERVICES — DARK ────────────────────────────── */
.services-section{background:var(--dark);padding:70px 5%}
.services-inner{max-width:1100px;margin:0 auto}
.services-section .section-label{color:var(--green-lt)}
.services-section .section-label::before{background:var(--green-lt)}
.services-section h2{font-size:clamp(1.7rem,3vw,2.3rem);color:white;margin-bottom:8px}
.services-section .section-sub{font-size:0.92rem;color:rgba(255,255,255,0.65);margin-bottom:44px;max-width:520px}
.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.svc-card{border-radius:var(--radius-lg);padding:28px 22px;transition:var(--transition)}
.svc-card:nth-child(1){background:var(--cream)}
.svc-card:nth-child(2){background:var(--mid)}
.svc-card:nth-child(3){background:var(--dark2);border:1px solid rgba(255,255,255,0.08)}
.svc-card:nth-child(4){background:#2A3E35}
.svc-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.svc-icon{
  width:52px;height:52px;border-radius:14px;
  background:rgba(255,255,255,0.15);
  display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.svc-card:nth-child(1) .svc-icon{background:var(--green-xs)}
.svc-icon svg{width:24px;color:white}
.svc-card:nth-child(1) .svc-icon svg{color:var(--green)}
.svc-card h3{font-size:0.98rem;font-weight:800;margin-bottom:10px;color:white}
.svc-card:nth-child(1) h3{color:var(--dark)}
.svc-card p{font-size:0.83rem;line-height:1.6;color:rgba(255,255,255,0.7);margin-bottom:16px}
.svc-card:nth-child(1) p{color:var(--gray)}
.svc-link{
  display:inline-flex;align-items:center;gap:5px;
  font-size:0.8rem;font-weight:700;color:var(--green-lt);transition:var(--transition);
}
.svc-card:nth-child(1) .svc-link{color:var(--green)}
.svc-link:hover{gap:9px}
.svc-link svg{width:13px}

/* ── PRODUCT SHOWCASE — CREAM ────────────────────── */
.product-showcase{background:var(--cream);padding:70px 5%}
.ps-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.ps-visual{position:relative}
.ps-badge{
  position:absolute;top:20px;left:20px;z-index:2;
  background:white;border-radius:var(--radius);padding:10px 16px;
  box-shadow:var(--shadow);display:flex;align-items:center;gap:10px;
}
.ps-badge-icon{
  width:32px;height:32px;border-radius:8px;background:var(--green-xs);
  display:flex;align-items:center;justify-content:center;
}
.ps-badge-icon svg{width:16px;color:var(--green)}
.ps-badge-text{font-size:0.78rem;font-weight:700;color:var(--dark)}
.ps-badge-sub{font-size:0.68rem;color:var(--gray)}
.ps-img-main{
  width:100%;aspect-ratio:4/3;border-radius:var(--radius-xl);
  background:linear-gradient(135deg,var(--mid),var(--green));
  overflow:hidden;display:flex;align-items:center;justify-content:center;
}
.ps-img-main img{width:100%;height:100%;object-fit:cover}
.ps-img-ph{text-align:center;color:rgba(255,255,255,0.5);font-size:0.8rem;padding:20px}
.ps-img-ph svg{width:40px;margin:0 auto 8px;opacity:0.5}
.ps-right .section-label{color:var(--green)}
.ps-right .section-label::before{background:var(--green)}
.ps-right h2{font-size:clamp(1.6rem,2.8vw,2.2rem);color:var(--dark);margin-bottom:16px}
.ps-right p{font-size:0.9rem;color:var(--gray);margin-bottom:28px;line-height:1.7}
.ps-product-list{display:flex;flex-direction:column;gap:12px;margin-bottom:28px}
.ps-product-item{
  display:flex;align-items:center;gap:14px;
  background:white;border-radius:var(--radius);padding:12px 16px;
  box-shadow:0 2px 10px rgba(27,58,45,0.06);transition:var(--transition);
}
.ps-product-item:hover{box-shadow:var(--shadow);transform:translateX(4px)}
.ps-prod-img{
  width:52px;height:52px;border-radius:10px;
  background:var(--green-xs);flex-shrink:0;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.ps-prod-img img{width:100%;height:100%;object-fit:cover}
.ps-prod-img svg{width:24px;color:var(--green)}
.ps-prod-name{font-size:0.9rem;font-weight:700;color:var(--dark)}
.ps-prod-sub{font-size:0.76rem;color:var(--gray)}
.ps-prod-link{
  margin-left:auto;display:flex;align-items:center;gap:4px;
  font-size:0.78rem;font-weight:700;color:var(--green);
}
.ps-prod-link svg{width:13px}

/* ── HOW WE WORK — DARK CARD ────────────────────── */
.how-section{background:var(--white);padding:70px 5%}
.how-inner{max-width:1100px;margin:0 auto}
.how-card{
  background:var(--dark);border-radius:var(--radius-lg);
  padding:48px 44px;display:grid;
  grid-template-columns:1fr 2.5fr;gap:48px;align-items:center;
}
.how-left h2{font-size:clamp(1.6rem,2.8vw,2.2rem);color:white;margin-bottom:12px}
.how-left p{font-size:0.88rem;color:rgba(255,255,255,0.65);line-height:1.7;margin-bottom:24px}
.how-steps{display:flex;align-items:flex-start;gap:0}
.how-step{flex:1;text-align:center}
.how-step-icon{
  width:64px;height:64px;border-radius:50%;
  background:rgba(255,255,255,0.08);border:2px solid rgba(255,255,255,0.15);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 16px;
}
.how-step-icon svg{width:28px;color:rgba(255,255,255,0.8)}
.how-arrow{
  display:flex;align-items:center;padding-top:22px;color:rgba(255,255,255,0.3);
}
.how-arrow svg{width:24px}
.how-step h3{font-size:0.9rem;font-weight:700;color:white;margin-bottom:6px}
.how-step p{font-size:0.78rem;color:rgba(255,255,255,0.55);line-height:1.5}

/* ── TESTIMONIAL — DARK TEAL ─────────────────────── */
.testi-section{background:var(--mid);padding:70px 5%;position:relative;overflow:hidden}
.testi-section::before{
  content:'';position:absolute;width:400px;height:400px;border-radius:50%;
  background:rgba(255,255,255,0.04);right:-100px;top:-150px;pointer-events:none;
}
.testi-inner{max-width:1100px;margin:0 auto}
.testi-section .section-label{color:rgba(255,255,255,0.6);justify-content:center}
.testi-section .section-label::before{background:rgba(255,255,255,0.4)}
.testi-section h2{font-size:clamp(1.7rem,3vw,2.3rem);color:white;text-align:center;margin-bottom:8px}
.testi-section .testi-sub{font-size:0.92rem;color:rgba(255,255,255,0.65);text-align:center;margin-bottom:44px}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.testi-card{
  background:var(--cream);border-radius:var(--radius-lg);
  padding:28px;transition:var(--transition);
}
.testi-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.testi-quote{font-size:2.5rem;color:var(--green);line-height:1;margin-bottom:12px;font-family:serif}
.testi-text{font-size:0.88rem;color:var(--gray);line-height:1.7;margin-bottom:18px}
.testi-stars{display:flex;gap:3px;margin-bottom:16px}
.testi-stars svg{width:15px;fill:var(--accent);color:var(--accent)}
.testi-author{display:flex;align-items:center;gap:12px}
.testi-avatar{
  width:44px;height:44px;border-radius:50%;overflow:hidden;
  background:var(--dark);display:flex;align-items:center;justify-content:center;
  font-weight:800;color:white;font-size:1rem;flex-shrink:0;
}
.testi-avatar img{width:100%;height:100%;object-fit:cover}
.testi-name{font-size:0.88rem;font-weight:700;color:var(--dark)}
.testi-role{font-size:0.74rem;color:var(--gray)}

/* ── CTA BANNER ─────────────────────────────────── */
.cta-section{background:var(--cream);padding:70px 5%}
.cta-inner{
  max-width:1100px;margin:0 auto;
  background:var(--dark);border-radius:var(--radius-xl);
  padding:56px 60px;display:flex;align-items:center;justify-content:space-between;gap:40px;flex-wrap:wrap;
}
.cta-text h2{font-size:clamp(1.5rem,2.8vw,2rem);color:white;margin-bottom:8px}
.cta-text p{font-size:0.92rem;color:rgba(255,255,255,0.65)}
.cta-btns{display:flex;gap:14px;flex-wrap:wrap;flex-shrink:0}
.btn-wa{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 28px;background:#25D366;color:white;
  border-radius:var(--radius-xl);font-weight:700;font-size:0.9rem;
  transition:var(--transition);
}
.btn-wa:hover{background:#20BA5A;transform:translateY(-2px)}
.btn-outline-w{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 28px;border:2px solid rgba(255,255,255,0.3);color:white;
  border-radius:var(--radius-xl);font-weight:700;font-size:0.9rem;
  transition:var(--transition);
}
.btn-outline-w:hover{border-color:white;background:rgba(255,255,255,0.08)}

/* ── FOOTER ──────────────────────────────────────── */
footer{background:var(--dark);padding:64px 5% 24px}
.footer-inner{max-width:1100px;margin:0 auto}
.footer-grid{display:grid;grid-template-columns:1.8fr 1fr 1fr 1.3fr;gap:40px;margin-bottom:44px}
.footer-logo-row{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.footer-brand-name{font-size:1rem;font-weight:800;color:white}
.footer-brand p{font-size:0.84rem;color:rgba(255,255,255,0.55);line-height:1.7;max-width:240px;margin-bottom:18px}
.footer-socials{display:flex;gap:10px}
.social-btn{
  width:34px;height:34px;border-radius:8px;
  background:rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;
  transition:var(--transition);
}
.social-btn:hover{background:var(--mid)}
.social-btn svg{width:15px;color:rgba(255,255,255,0.7)}
.footer-col h4{font-size:0.88rem;font-weight:700;color:white;margin-bottom:16px}
.footer-col ul{display:flex;flex-direction:column;gap:10px}
.footer-col ul a{font-size:0.84rem;color:rgba(255,255,255,0.55);transition:var(--transition)}
.footer-col ul a:hover{color:white;padding-left:4px}
.newsletter-form{display:flex;gap:8px;margin-top:4px}
.newsletter-input{
  flex:1;padding:10px 14px;background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);border-radius:var(--radius-sm);
  color:white;font-size:0.84rem;font-family:inherit;
}
.newsletter-input::placeholder{color:rgba(255,255,255,0.35)}
.newsletter-input:focus{outline:none;border-color:var(--green-lt)}
.newsletter-btn{
  padding:10px 18px;background:var(--green);color:white;
  border:none;border-radius:var(--radius-sm);font-weight:700;font-size:0.84rem;
  cursor:pointer;transition:var(--transition);
}
.newsletter-btn:hover{background:var(--mid)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);padding-top:20px;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px;
  font-size:0.78rem;color:rgba(255,255,255,0.4);
}

/* ── PAGE HERO ──────────────────────────────────── */
.page-hero{background:var(--cream);padding:120px 5% 60px;text-align:center}
.page-hero .section-label{color:var(--green);justify-content:center}
.page-hero .section-label::before{background:var(--green)}
.page-hero h1{font-size:clamp(2rem,5vw,3rem);color:var(--dark);margin-bottom:12px}
.page-hero p{font-size:1rem;color:var(--gray);max-width:480px;margin:0 auto}

/* ── SECTION LABEL ───────────────────────────────── */
.section-label{
  display:inline-flex;align-items:center;gap:8px;
  font-size:0.76rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;
  color:var(--green);margin-bottom:12px;
}
.section-label::before{content:'';display:block;width:18px;height:2px;background:var(--green);border-radius:2px}

/* ── GLOBAL BUTTONS ──────────────────────────────── */
.btn-green{
  display:inline-flex;align-items:center;gap:8px;
  padding:11px 26px;background:var(--dark);color:white;
  border-radius:var(--radius-xl);font-weight:700;font-size:0.88rem;transition:var(--transition);
}
.btn-green:hover{background:var(--mid)}
.btn-outline-dark{
  display:inline-flex;align-items:center;gap:8px;
  padding:11px 26px;border:2px solid var(--dark);color:var(--dark);
  border-radius:var(--radius-xl);font-weight:700;font-size:0.88rem;transition:var(--transition);
}
.btn-outline-dark:hover{background:var(--dark);color:white}

/* ── ABOUT PAGE ──────────────────────────────────── */
.about-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.about-img-wrap{aspect-ratio:1;border-radius:var(--radius-xl);overflow:hidden;background:var(--green-xs);display:flex;align-items:center;justify-content:center;position:relative}
.about-img-wrap img{width:100%;height:100%;object-fit:cover}
.about-stat-badge{
  position:absolute;bottom:20px;left:20px;
  background:white;border-radius:var(--radius);padding:14px 18px;box-shadow:var(--shadow-lg);
}
.about-stat-num{font-size:1.8rem;font-weight:800;color:var(--green);line-height:1}
.about-stat-lbl{font-size:0.72rem;color:var(--gray);margin-top:2px}
.about-content .section-label{color:var(--green)}
.about-content .section-label::before{background:var(--green)}
.about-content h2{font-size:clamp(1.7rem,3vw,2.4rem);color:var(--dark);margin-bottom:14px}
.about-content p{font-size:0.92rem;color:var(--gray);line-height:1.8;margin-bottom:20px}
.about-checks{display:flex;flex-direction:column;gap:12px;margin-bottom:28px}
.check-item{display:flex;align-items:center;gap:10px;font-size:0.9rem;font-weight:500}
.check-icon{width:24px;height:24px;border-radius:6px;background:var(--green-xs);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.check-icon svg{width:12px;color:var(--green)}

/* ── VM PAGE ──────────────────────────────────────── */
.vm-page-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:24px}
.vmp-card{border-radius:var(--radius-lg);padding:36px}
.vmp-card.dark-card{background:var(--dark)}
.vmp-card.mid-card{background:var(--mid)}
.vmp-icon{width:52px;height:52px;border-radius:14px;background:rgba(255,255,255,0.15);display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.vmp-icon svg{width:26px;color:white}
.vmp-card h3{font-size:1.1rem;font-weight:800;color:white;margin-bottom:12px}
.vmp-card p,.vmp-card li{font-size:0.88rem;color:rgba(255,255,255,0.75);line-height:1.8}
.vmp-card ul{padding-left:18px;display:flex;flex-direction:column;gap:6px}

/* ── PRODUCT PAGE ────────────────────────────────── */
.product-filter{display:flex;gap:10px;margin-bottom:32px;flex-wrap:wrap}
.filter-btn{
  padding:8px 22px;border-radius:var(--radius-xl);
  border:1.5px solid #C8E6D0;background:white;
  color:var(--gray);font-size:0.84rem;font-weight:600;cursor:pointer;transition:var(--transition);
}
.filter-btn.active,.filter-btn:hover{background:var(--dark);border-color:var(--dark);color:white}
.product-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:20px}
.product-card{border-radius:var(--radius-lg);overflow:hidden;background:white;border:1.5px solid #E0EDE4;transition:var(--transition)}
.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--green)}
.product-img{aspect-ratio:4/3;background:var(--cream2);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.product-img img{width:100%;height:100%;object-fit:cover}
.product-badge{position:absolute;top:10px;left:10px;padding:3px 10px;border-radius:20px;font-size:0.7rem;font-weight:700;text-transform:uppercase}
.badge-packaging{background:rgba(27,58,45,0.1);color:var(--dark);border:1px solid rgba(27,58,45,0.15)}
.badge-baking{background:rgba(244,162,30,0.12);color:#B26B00;border:1px solid rgba(244,162,30,0.2)}
.product-info{padding:16px}
.product-info h3{font-size:0.95rem;font-weight:700;margin-bottom:6px}
.product-info p{font-size:0.82rem;color:var(--gray);margin-bottom:14px}
.product-cta{
  display:flex;align-items:center;justify-content:center;gap:6px;
  padding:9px;background:var(--cream2);color:var(--dark);
  border-radius:var(--radius-sm);font-size:0.82rem;font-weight:700;transition:var(--transition);
}
.product-cta:hover{background:var(--dark);color:white}

/* ── CONTACT PAGE ────────────────────────────────── */
.contact-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1.5fr;gap:40px;align-items:start}
.contact-info-card{background:var(--dark);border-radius:var(--radius-lg);padding:32px;display:flex;flex-direction:column;gap:22px}
.ci-item{display:flex;align-items:flex-start;gap:14px}
.ci-icon{width:44px;height:44px;border-radius:12px;background:rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ci-icon svg{width:20px;color:var(--green-lt)}
.ci-text h4{font-size:0.8rem;font-weight:700;color:rgba(255,255,255,0.5);margin-bottom:4px;text-transform:uppercase;letter-spacing:1px}
.ci-text p{font-size:0.9rem;color:white;font-weight:500}
.contact-form-card{background:white;border:1.5px solid #D5E8DD;border-radius:var(--radius-lg);padding:36px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-size:0.83rem;font-weight:700;color:var(--dark);margin-bottom:8px}
.form-group input,.form-group textarea{
  width:100%;padding:11px 14px;border:1.5px solid #D5E8DD;border-radius:var(--radius-sm);
  font-size:0.9rem;font-family:inherit;transition:var(--transition);background:white;color:var(--text);
}
.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--green);box-shadow:0 0 0 3px rgba(64,145,108,0.1)}
.form-group textarea{resize:vertical;min-height:120px}
.btn-submit{
  width:100%;padding:13px;background:var(--dark);color:white;border:none;
  border-radius:var(--radius-xl);font-size:0.92rem;font-weight:700;cursor:pointer;transition:var(--transition);
}
.btn-submit:hover{background:var(--mid)}

/* ── SCROLL TOP ──────────────────────────────────── */
.scroll-top{
  position:fixed;bottom:28px;right:28px;z-index:999;
  width:44px;height:44px;border-radius:50%;background:var(--dark);color:white;
  border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;
  opacity:0;transform:translateY(20px);transition:var(--transition);box-shadow:var(--shadow);
}
.scroll-top.show{opacity:1;transform:translateY(0)}
.scroll-top:hover{background:var(--mid)}

/* ── TOAST ───────────────────────────────────────── */
.toast{
  position:fixed;bottom:24px;left:50%;transform:translateX(-50%) translateY(80px);
  background:var(--dark);color:white;padding:13px 26px;
  border-radius:var(--radius);font-size:0.88rem;font-weight:500;
  box-shadow:var(--shadow-lg);opacity:0;transition:var(--transition);z-index:9999;
}
.toast.show{transform:translateX(-50%) translateY(0);opacity:1}

/* ── IMG PLACEHOLDER ─────────────────────────────── */
.img-ph{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;color:rgba(255,255,255,0.3);font-size:0.78rem;text-align:center;padding:20px;width:100%;height:100%}
.img-ph svg{width:36px;opacity:0.35}
.img-ph-dark{color:var(--gray)}
.img-ph-dark svg{color:var(--green)}

/* ── RESPONSIVE ──────────────────────────────────── */
@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr}.hero-visual{display:none}
  .vm-inner{grid-template-columns:1fr}
  .why-inner{grid-template-columns:1fr 1fr;gap:30px}
  .why-center{display:none}
  .services-grid{grid-template-columns:1fr 1fr}
  .ps-inner{grid-template-columns:1fr}
  .how-card{grid-template-columns:1fr}
  .testi-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
  .vm-page-grid{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr}
  .cta-inner{flex-direction:column;text-align:center;padding:40px 32px}
  .cta-btns{justify-content:center}
}
@media(max-width:768px){
  .top-bar{display:none}
  .nav-links,.btn-nav{display:none}
  .hamburger{display:flex}
  .services-grid{grid-template-columns:1fr 1fr}
  .testi-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:28px}
  .why-inner{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .how-steps{flex-direction:column;align-items:center;gap:16px}
  .how-arrow{transform:rotate(90deg);padding:0}
}
@media(max-width:480px){
  .hero-btns{flex-direction:column}
  .stats-row{gap:30px}
  .services-grid{grid-template-columns:1fr}
}
