/* ═══════════════════════════════════════════════════════════════
   PETERIKAGRO — Premium Agribusiness Design System v4.1
   Aesthetic: Organic Luxury × Modern Precision
   Fonts: DM Serif Display + DM Sans
   
   PALET WARNA — HASIL SCAN LOGO ASLI (60/30/10 Rule)
   
   ✦ PRIMARY   60% → Krem/Beige  #e8dfc0  — tubuh hewan, background
   ✦ SECONDARY 30% → Hijau       #1a8c2e  — circle logo, elemen struktural
   ✦ ACCENT    10% → Emas        #d4a017  — jagung, CTA, highlight
   
   Warna tambahan dari logo:
   ✦ Oranye Cabai : #e8650a  — aksen mikro
   ✦ Olive        : #8a9620  — daun & detail
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  /* ══════════════════════════════════════
     PRIMARY 60% — KREM/BEIGE
     Dari tubuh hewan di logo
     ══════════════════════════════════════ */
  --cream-deep:  #c8bc96;    /* krem sangat gelap */
  --cream-dark:  #d8cfab;    /* krem gelap */
  --cream:       #e8dfc0;    /* ← KREM UTAMA LOGO (exact) */
  --cream-light: #f0e9d2;    /* krem terang */
  --cream-pale:  #f7f3e8;    /* krem very pale */
  --cream-white: #faf8f0;    /* krem near-white */
  --cream-pure:  #fdfcf7;    /* krem white */

  /* ══════════════════════════════════════
     SECONDARY 30% — HIJAU
     Dari circle & silhouette logo
     ══════════════════════════════════════ */
  --g-950: #031a08;    /* ultra-deep forest */
  --g-900: #063310;    /* deep forest */
  --g-850: #0a4018;    /* forest dark */
  --g-800: #0b4d17;    /* forest */
  --g-700: #10641e;    /* forest medium */
  --g-600: #157a26;    /* hijau logo gelap */
  --g-500: #1a8c2e;    /* ← WARNA HIJAU UTAMA LOGO (exact) */
  --g-450: #22a035;    /* hijau logo terang */
  --g-400: #2aab3f;    /* hijau segar */
  --g-300: #5cc46f;    /* hijau muda */
  --g-200: #9ddcaa;    /* hijau pale */
  --g-100: #d0f0d8;    /* hijau very pale */
  --g-50:  #eaf8ed;    /* hijau near-white */

  /* ══════════════════════════════════════
     ACCENT 10% — EMAS JAGUNG
     Dari biji jagung di logo
     ══════════════════════════════════════ */
  --gold-dark:   #9a7010;    /* emas gelap */
  --gold-deep:   #b88c14;    /* emas medium */
  --gold:        #d4a017;    /* ← EMAS JAGUNG LOGO (exact) */
  --gold-light:  #e8b520;    /* emas terang */
  --gold-bright: #f0c840;    /* emas bright */
  --gold-pale:   #fdf0c0;    /* emas very pale */
  --gold-glow:   rgba(212,160,23,.22);

  /* ══════════════════════════════════════
     ORANYE CABAI — aksen mikro logo
     ══════════════════════════════════════ */
  --chili:        #e8650a;
  --chili-dark:   #b84d08;
  --chili-light:  #f08040;
  --chili-pale:   #fff0e6;

  /* ══════════════════════════════════════
     OLIVE — daun & detail logo
     ══════════════════════════════════════ */
  --olive:       #8a9620;
  --olive-dark:  #5e6815;
  --olive-light: #aabf28;

  /* Neutral — sedikit warm tint sesuai palet krem */
  --n-900: #1a160e;
  --n-800: #2e2718;
  --n-700: #4a3e28;
  --n-500: #7a6e52;
  --n-400: #9a9080;
  --n-300: #bfb8a8;
  --n-200: #ddd8cc;
  --n-100: #f0ede6;
  --white: #ffffff;

  /* Marketplace Colors */
  --shopee:    #ee4d2d;
  --tokped:    #03ac0e;
  --lazada:    #0f146b;
  --bukalapak: #e31e26;
  --tiktok:    #010101;
  --wa:        #25d366;
  --wa-dark:   #128c7e;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* Border Radius */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-2xl: 36px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs:    0 1px 3px rgba(0,0,0,.06);
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md:    0 6px 24px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.06);
  --shadow-xl:    0 32px 64px rgba(0,0,0,.18);
  --shadow-green: 0 8px 32px rgba(26,140,46,.32);
  --shadow-gold:  0 8px 24px rgba(212,160,23,.30);
  --shadow-chili: 0 6px 20px rgba(232,101,10,.26);

  /* Transition */
  --ease:     cubic-bezier(.22,1,.36,1);
  --ease-in:  cubic-bezier(.4,0,1,1);
  --ease-out: cubic-bezier(0,0,.6,1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  /*
    BODY BACKGROUND — PRIMARY 60% KREM
    Gradasi krem hangat dari logo. Warna dominan halaman.
    Natural, organik, sesuai identitas agribisnis.
  */
  background: linear-gradient(160deg, #f5f0e2 0%, #f0ebd8 30%, #ebe5d0 60%, #f2ecde 100%);
  background-attachment: fixed;
  color: var(--n-900);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); }

/* ─── UTILITIES ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── SECTION TITLE ─── */
.section-title {
  text-align: center;
  margin-bottom: 64px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--g-100);
  color: var(--g-600);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--r-full);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid var(--g-200);
  margin-bottom: 1rem;
}

.tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--g-500);
  border-radius: 50%;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--g-800);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--n-500);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ─── BUTTONS ─── */
/* SECONDARY 30% — Hijau logo */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--g-500);
  color: var(--white);
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-green);
  letter-spacing: .2px;
}

.btn-green:hover {
  background: var(--g-600);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(26,140,46,.42);
  color: var(--white);
}

/* Outline button — krem/hijau */
.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: transparent;
  color: var(--g-600);
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--g-300);
  cursor: pointer;
  transition: all .3s var(--ease);
  letter-spacing: .2px;
}

.btn-outline-green:hover {
  background: var(--g-50);
  border-color: var(--g-450);
  transform: translateY(-2px);
  color: var(--g-700);
}

/* ─── NAVBAR ─── */
/* PRIMARY 60% — Krem/Beige agar logo hijau kontras & menonjol */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: linear-gradient(135deg, var(--cream-pale) 0%, var(--cream-light) 50%, var(--cream-pale) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* Border bawah: garis tipis hijau logo sebagai penegas */
  border-bottom: 2px solid rgba(26,140,46,.18);
  box-shadow: 0 2px 20px rgba(180,160,100,.18), 0 1px 0 rgba(255,255,255,.80);
  transition: all .4s var(--ease);
}

/* Saat scroll: sedikit lebih gelap agar tetap terbaca */
.header.scrolled {
  height: 64px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 50%, var(--cream) 100%);
  box-shadow: 0 4px 28px rgba(160,140,80,.22), 0 1px 0 rgba(255,255,255,.60);
  border-bottom: 2px solid rgba(26,140,46,.22);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  /* Border tipis rapat — pas dengan tepi logo, tanpa celah */
  border: 1.5px solid rgba(26,140,46,.35);
  box-shadow: 0 2px 10px rgba(0,0,0,.10);
  transition: transform .3s var(--ease);
}

.logo img:hover {
  transform: scale(1.06);
}

.header.scrolled .logo img {
  height: 40px;
  width: 40px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  /* Teks nama brand: hijau logo agar selaras */
  color: var(--g-700);
  letter-spacing: -.3px;
}

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1px;
}

.navbar ul li a {
  /* Link nav: hijau gelap agar terbaca di atas krem */
  color: var(--g-700);
  font-size: 0.87rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all .22s;
  display: block;
  letter-spacing: .1px;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  /* Hover: background hijau pale + teks hijau kuat */
  background: rgba(26,140,46,.10);
  color: var(--g-600);
}

/* CTA nav — ACCENT 10% Emas jagung, tetap kontras di atas krem */
.nav-shop-btn {
  background: var(--g-500) !important;
  color: var(--white) !important;
  border-radius: var(--r-full) !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  letter-spacing: .2px !important;
  box-shadow: 0 4px 14px rgba(26,140,46,.28) !important;
}

.nav-shop-btn:hover {
  background: var(--g-600) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 20px rgba(26,140,46,.38) !important;
}

/* ─── HAMBURGER ─── */
#menuToggle {
  display: none;
  /* Ikon hamburger: hijau agar kontras di navbar krem */
  color: var(--g-600);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}

/* ─── HERO ─── */
/* SECONDARY 30% deep green — kontras terhadap PRIMARY krem di body */
.home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 1.5rem 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 65% at 50% -5%, rgba(26,140,46,.26) 0%, transparent 52%),
    radial-gradient(ellipse 45% 55% at 12% 90%, rgba(26,140,46,.13) 0%, transparent 50%),
    radial-gradient(ellipse 35% 35% at 88% 72%, rgba(212,160,23,.10) 0%, transparent 50%),
    radial-gradient(ellipse 25% 25% at 92% 8%,  rgba(232,101,10,.07) 0%, transparent 45%),
    radial-gradient(ellipse 20% 20% at 5% 20%,  rgba(138,150,32,.05) 0%, transparent 40%),
    linear-gradient(160deg, var(--g-950) 0%, var(--g-900) 30%, #0a4018 60%, var(--g-850) 100%);
}

/* Grain texture organik */
.home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .55;
}

/* Dot grid — krem logo */
.home::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232,223,192,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

/* Badge hero — ACCENT 10% Emas */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,160,23,.13);
  border: 1px solid rgba(212,160,23,.28);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--r-full);
  margin-bottom: 2rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}

.home h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 400;
  color: var(--cream-light);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
}

/* Em highlight — SECONDARY hijau segar */
.home h1 em {
  font-style: italic;
  color: var(--g-300);
}

.home h2 {
  color: rgba(232,223,192,.55);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero CTA utama — ACCENT 10% Emas jagung */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 36px;
  background: var(--gold);
  color: var(--g-900);
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-gold);
}

.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(212,160,23,.52);
  color: var(--g-900);
}

/* Hero CTA sekunder — outline krem */
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  background: rgba(232,223,192,.07);
  color: var(--cream);
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid rgba(232,223,192,.22);
  cursor: pointer;
  transition: all .3s var(--ease);
  backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
  background: rgba(232,223,192,.13);
  transform: translateY(-3px);
  color: var(--cream-pale);
  border-color: rgba(232,223,192,.40);
}

/* Hero scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(232,223,192,.30);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(232,223,192,.22);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-mouse::after {
  content: '';
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 2.2s ease infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  75% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-img-wrap { position: relative; }

/* Badge about — SECONDARY 30% Hijau */
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--g-500);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--r-lg);
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-green);
  border: 3px solid var(--cream-white);
  line-height: 1.3;
}

.about-badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-light);    /* ACCENT 10% */
  margin-bottom: 3px;
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--g-800);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.about-content p {
  color: var(--n-500);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 2rem 0;
}

/* Feature item — background krem PRIMARY */
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--g-700);
  background: var(--cream-pale);
  padding: 10px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--cream-dark);
  transition: all .22s;
}

.about-feature-item:hover {
  border-color: var(--g-300);
  background: var(--g-50);
  color: var(--g-600);
}

.about-feature-item i {
  color: var(--g-500);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Service card — background krem PRIMARY */
.service-card {
  background: var(--cream-pale);
  border-radius: var(--r-xl);
  padding: 2.4rem 2.2rem;
  border: 1px solid var(--cream-dark);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}

/* Accent bar atas — SECONDARY ke ACCENT */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g-500), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--g-200);
  background: var(--cream-white);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,.14);
}

/* Icon gradients — semua dari palet logo */
.si-1 { background: linear-gradient(135deg, var(--g-700), var(--g-450)); }
.si-2 { background: linear-gradient(135deg, var(--g-500), var(--g-400)); }
.si-3 { background: linear-gradient(135deg, var(--gold-deep), var(--gold-light)); }
.si-4 { background: linear-gradient(135deg, var(--olive-dark), var(--olive-light)); }
.si-5 { background: linear-gradient(135deg, var(--chili-dark), var(--chili-light)); }
.si-6 { background: linear-gradient(135deg, var(--g-800), var(--g-500)); }

.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--g-800);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--n-500);
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ─── COUNTERS ─── */
/* SECONDARY deep green — kontras dramatis di antara section krem */
.counters {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 65% 75% at 50% 50%, rgba(26,140,46,.13) 0%, transparent 68%),
    radial-gradient(ellipse 35% 35% at 88% 85%, rgba(212,160,23,.07) 0%, transparent 50%),
    radial-gradient(ellipse 25% 25% at 12% 15%, rgba(138,150,32,.05) 0%, transparent 45%),
    linear-gradient(140deg, var(--g-950) 0%, var(--g-900) 45%, #0a4018 75%, var(--g-850) 100%);
  position: relative;
  overflow: hidden;
}

.counters::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232,223,192,.030) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.counter-item {
  padding: 2rem 1.5rem;
  background: rgba(232,223,192,.05);
  border-radius: var(--r-xl);
  border: 1px solid rgba(232,223,192,.08);
  backdrop-filter: blur(8px);
  transition: all .3s var(--ease);
}

.counter-item:hover {
  background: rgba(232,223,192,.10);
  transform: translateY(-4px);
  border-color: rgba(212,160,23,.22);
}

/* Icon counter — ACCENT 10% Emas */
.counter-item i {
  color: var(--gold-light);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.counter-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--cream-light);
  line-height: 1;
  margin-bottom: .4rem;
}

/* Label — hijau muda SECONDARY */
.counter-label {
  color: var(--g-300);
  font-size: 0.83rem;
  font-weight: 500;
  opacity: .85;
}

/* ─── TOKO / SHOP ─── */
.shop-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.platform-card {
  border-radius: var(--r-lg);
  padding: 1.8rem 1rem;
  text-align: center;
  color: var(--white);
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity .25s;
}

.platform-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.platform-card:hover::before { opacity: 1; }
.platform-card i { font-size: 2.2rem; }
.platform-card span { font-size: 0.73rem; opacity: .8; font-weight: 400; }

.pc-shopee    { background: linear-gradient(145deg, #ee4d2d, #ff6640); }
.pc-tokopedia { background: linear-gradient(145deg, #03ac0e, #04d411); }
.pc-lazada    { background: linear-gradient(145deg, #0f146b, #1427c2); }
.pc-bukalapak { background: linear-gradient(145deg, #e31e26, #ff3535); }
.pc-tiktok    { background: linear-gradient(145deg, #1a1a1a, #333); }
.pc-wa        { background: linear-gradient(145deg, var(--wa-dark), var(--wa)); }

/* Shop filter */
.shop-filter {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}

.filter-btn {
  padding: 9px 24px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(26,140,46,.20);
  background: var(--cream-pale);
  color: var(--n-700);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all .22s var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--g-500);
  border-color: var(--g-500);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,140,46,.30);
}

/* Product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Product card — PRIMARY krem */
.product-card {
  background: var(--cream-pale);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: all .35s var(--ease);
  box-shadow: var(--shadow-xs);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--g-200);
  background: var(--cream-white);
}

.product-card[style*="display: none"] { display: none !important; }

/* Product image — krem ke hijau pale */
.product-img {
  height: 200px;
  background: linear-gradient(135deg, var(--cream), var(--g-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.badge-diskon   { background: var(--shopee); color: var(--white); }
.badge-terlaris { background: var(--gold); color: var(--g-900); }
.badge-baru     { background: var(--g-500); color: var(--white); }
.badge-organik  { background: var(--g-700); color: var(--g-200); }
.badge-promo    { background: var(--chili); color: var(--white); }

.product-info { padding: 1.4rem; }

/* Rating — ACCENT 10% Emas */
.product-rating {
  color: var(--gold);
  font-size: 0.78rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-info h5 {
  font-weight: 600;
  color: var(--g-800);
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Harga — SECONDARY hijau */
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--g-600);
  font-family: var(--font-display);
}

.price-old {
  font-size: 0.8rem;
  color: var(--n-300);
  text-decoration: line-through;
  font-weight: 400;
  font-family: var(--font-body);
}

.product-shop-btns {
  display: flex;
  gap: .5rem;
}

.shop-btn {
  flex: 1;
  padding: 8px;
  border-radius: var(--r-sm);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--white);
  border: none;
  cursor: pointer;
}

.shop-btn:hover { opacity: .88; transform: translateY(-1px); color: var(--white); }
.sb-shopee    { background: var(--shopee); }
.sb-tokopedia { background: var(--tokped); }
.sb-wa        { background: var(--wa); }

/* ─── PORTFOLIO ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.portfolio-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all .4s var(--ease);
}

.portfolio-card:hover {
  transform: scale(1.025) translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.portfolio-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: .15;
}

/* Portfolio overlay — deep green dari logo */
.portfolio-info {
  position: relative;
  padding: 1.8rem;
  background: linear-gradient(transparent, rgba(3,26,8,.92));
  width: 100%;
}

/* Tag portfolio — ACCENT 10% Emas */
.portfolio-tag {
  display: inline-block;
  background: rgba(212,160,23,.92);
  color: var(--g-900);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--r-full);
  margin-bottom: .7rem;
  letter-spacing: .5px;
}

.portfolio-info h5 {
  color: var(--cream-light);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: .4rem;
}

.portfolio-info p {
  color: rgba(232,223,192,.65);
  font-size: 0.85rem;
  line-height: 1.55;
  font-weight: 300;
}

/* ─── SOCIAL FOLLOW ─── */
.social-follow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.follow-card {
  border-radius: var(--r-xl);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: all .3s var(--ease);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.follow-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.follow-card i { font-size: 2.4rem; margin-bottom: .8rem; display: block; }
.follow-card h5 { font-weight: 700; margin-bottom: .3rem; }
.follow-card p { font-size: 0.82rem; opacity: .75; margin-bottom: 1.4rem; font-weight: 300; }

.follow-btn {
  display: inline-block;
  padding: 8px 22px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.30);
  transition: background .2s;
}

.follow-btn:hover { background: rgba(255,255,255,.25); color: var(--white); }

.fc-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fc-fb { background: linear-gradient(135deg, #1877f2, #0c6dd4); }
.fc-yt { background: linear-gradient(135deg, #ff0000, #b80000); }
.fc-tk { background: linear-gradient(135deg, #1a1a1a, #333); }
.fc-tw { background: linear-gradient(135deg, #1da1f2, #0b87d4); }

/* Mock posts */
.mock-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mock-post {
  border-radius: var(--r-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.8rem;
  cursor: pointer;
  transition: transform .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.mock-post:hover { transform: scale(1.06); }

/* Overlay hover — deep green */
.mock-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,26,8,.86);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream-light);
  opacity: 0;
  transition: opacity .3s;
  text-align: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.mock-post:hover .mock-post-overlay { opacity: 1; }
.mock-post-overlay i { font-size: 1.5rem; margin-bottom: .4rem; color: var(--gold-light); }
.mock-post-overlay p { font-size: 0.78rem; line-height: 1.45; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Testimonial card — PRIMARY krem */
.testimonial-card {
  background: var(--cream-pale);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-xl);
  padding: 2.2rem;
  transition: all .3s var(--ease);
  position: relative;
}

/* Quote mark — hijau pale */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--g-100);
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--g-200);
  background: var(--cream-white);
}

/* Bintang — ACCENT 10% Emas */
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: .8rem;
  letter-spacing: 2px;
}

.testimonial-card > p {
  color: var(--n-500);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Avatar — krem PRIMARY */
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream-light);
  border: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
}

.author-info h6 {
  font-weight: 700;
  color: var(--g-800);
  font-size: 0.9rem;
}

/* Jabatan — SECONDARY hijau */
.author-info span {
  color: var(--g-500);
  font-size: 0.8rem;
}

/* ─── TEAM ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Team card — PRIMARY krem */
.team-card {
  background: var(--cream-pale);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-xs);
  transition: all .35s var(--ease);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--g-200);
  background: var(--cream-white);
}

/* Team image — krem ke hijau pale */
.team-img {
  height: 200px;
  background: linear-gradient(135deg, var(--cream), var(--g-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  overflow: hidden;
}

.team-img img { width: 100%; height: 100%; object-fit: cover; }

.team-info { padding: 1.6rem; }

.team-info h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--g-800);
  margin-bottom: .2rem;
}

/* Jabatan — SECONDARY hijau */
.team-info span {
  color: var(--g-500);
  font-size: 0.82rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: .2px;
}

.team-socials { display: flex; justify-content: center; gap: .5rem; }

.team-socials a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--g-500);
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: all .22s;
}

.team-socials a:hover {
  background: var(--g-500);
  color: var(--white);
  border-color: var(--g-500);
  transform: translateY(-2px);
}

/* ─── CTA BANNER ─── */
/* SECONDARY deep green — ritme visual konsisten */
.cta-banner {
  padding: 100px 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 55% at 25% 50%, rgba(212,160,23,.11) 0%, transparent 58%),
    radial-gradient(ellipse 75% 75% at 50% 50%, rgba(26,140,46,.15) 0%, transparent 68%),
    radial-gradient(ellipse 30% 40% at 80% 20%, rgba(232,101,10,.06) 0%, transparent 50%),
    linear-gradient(140deg, var(--g-950) 0%, var(--g-900) 45%, #0a4018 75%, var(--g-850) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232,223,192,.028) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cta-banner h3 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--cream-light);
  font-weight: 400;
  margin-bottom: 1rem;
}

.cta-banner p {
  position: relative;
  color: var(--g-200);
  margin-bottom: 2.5rem;
  font-size: 1.08rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-weight: 300;
}

.cta-btns {
  position: relative;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── CONTACT ─── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-info h4 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--g-800);
  margin-bottom: 1.6rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

/* Icon kontak — PRIMARY krem background */
.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g-500);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.contact-item-text h6 {
  font-weight: 700;
  color: var(--g-800);
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.contact-item-text p {
  color: var(--n-500);
  font-size: 0.88rem;
  margin: 0;
  font-weight: 300;
}

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: var(--wa);
  color: var(--white);
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 1rem;
  transition: all .28s var(--ease);
  box-shadow: 0 6px 20px rgba(37,211,102,.28);
}

.contact-wa-btn:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.40);
  color: var(--white);
}

/* Form box — PRIMARY krem */
.contact-form-box {
  background: var(--cream-pale);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.contact-form-box h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--g-800);
  margin-bottom: 1.8rem;
  font-size: 1.3rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--g-700);
  display: block;
  margin-bottom: 7px;
  letter-spacing: .3px;
}

/* Input — background krem PRIMARY */
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color .22s, box-shadow .22s, background .22s;
  background: var(--cream-white);
  color: var(--n-900);
}

/* Focus — SECONDARY hijau */
.form-control:focus {
  border-color: var(--g-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,140,46,.12);
}

.form-control::placeholder { color: var(--n-300); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* Submit — SECONDARY hijau */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--g-500);
  color: var(--white);
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .28s var(--ease);
  box-shadow: var(--shadow-green);
  letter-spacing: .2px;
}

.submit-btn:hover {
  background: var(--g-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26,140,46,.40);
}

/* ─── FAQ ─── */
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Accordion — border krem/hijau */
.accordion-item {
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r-lg);
  margin-bottom: .8rem;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.accordion-item:hover { border-color: var(--g-200); }

.accordion-item.open {
  border-color: var(--g-300);
  box-shadow: var(--shadow-sm);
}

/* Accordion header — PRIMARY krem */
.accordion-header-new {
  padding: 1.3rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--cream-pale);
  transition: background .2s;
  user-select: none;
  gap: 1rem;
}

.accordion-header-new:hover { background: var(--cream-white); }

.accordion-header-new h5 {
  font-weight: 600;
  color: var(--g-800);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.45;
}

/* Ikon accordion — SECONDARY hijau */
.accordion-header-new i {
  color: var(--g-500);
  font-size: 0.85rem;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}

.accordion-header-new.open i { transform: rotate(45deg); }

/* Accordion body — PRIMARY krem */
.accordion-body-new {
  display: none;
  padding: 0 1.6rem 1.4rem;
  background: var(--cream-pale);
}

.accordion-body-new p {
  color: var(--n-500);
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 300;
}

/* ─── FOOTER ─── */
/* SECONDARY deep green — konsisten dengan Hero/Counters/CTA */
.footer-main {
  background:
    radial-gradient(ellipse 55% 35% at 82% 18%, rgba(26,140,46,.07) 0%, transparent 50%),
    radial-gradient(ellipse 38% 28% at 18% 82%, rgba(212,160,23,.04) 0%, transparent 45%),
    var(--g-950);
  padding: 80px 0 0;
  border-top: 1px solid rgba(232,223,192,.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* Brand footer — krem PRIMARY */
.footer-about .logo-text {
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}

.footer-about p {
  color: rgba(232,223,192,.38);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.footer-social-links { display: flex; gap: .6rem; flex-wrap: wrap; }

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--white);
  opacity: .65;
  transition: all .22s;
}

.footer-social-links a:hover {
  opacity: 1;
  transform: scale(1.2) translateY(-2px);
}

.fsl-ig { background: #C13584; }
.fsl-fb { background: #1877f2; }
.fsl-yt { background: #ff0000; }
.fsl-tk { background: #2d2d2d; }
.fsl-tw { background: #1da1f2; }
.fsl-wa { background: var(--wa); }

/* Heading footer col — SECONDARY hijau muda */
.footer-col h5 {
  color: var(--g-300);
  font-weight: 700;
  margin-bottom: 1.3rem;
  font-size: 0.88rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul li a {
  color: rgba(232,223,192,.38);
  font-size: 0.88rem;
  transition: color .2s;
  font-weight: 300;
}

.footer-col ul li a:hover { color: var(--cream-light); }

.footer-newsletter p {
  color: rgba(232,223,192,.38);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
}

.footer-newsletter form { display: flex; flex-direction: column; gap: .7rem; }

.footer-newsletter input[type=email] {
  padding: 11px 16px;
  background: rgba(232,223,192,.06);
  border: 1px solid rgba(232,223,192,.10);
  border-radius: var(--r-md);
  color: var(--cream-light);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color .2s;
}

.footer-newsletter input[type=email]:focus { border-color: var(--g-400); }
.footer-newsletter input[type=email]::placeholder { color: rgba(232,223,192,.25); }

/* Newsletter button — SECONDARY hijau */
.footer-newsletter button {
  padding: 11px;
  background: var(--g-500);
  color: var(--white);
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background .22s, box-shadow .22s;
}

.footer-newsletter button:hover {
  background: var(--g-450);
  box-shadow: var(--shadow-green);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.8rem 1.5rem;
  border-top: 1px solid rgba(232,223,192,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(232,223,192,.28);
  font-size: 0.82rem;
}

/* Copyright highlight — ACCENT 10% Emas */
.footer-bottom strong { color: var(--gold-light); }
.footer-bottom a { color: rgba(232,223,192,.28); transition: color .2s; }
.footer-bottom a:hover { color: var(--cream-light); }

/* ─── SOCIAL FLOATING ─── */
.social-floating {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-floating a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-md);
}

.social-floating a:hover { transform: scale(1.18) translateX(-4px); }
.sf-wa  { background: var(--wa); }
.sf-ig  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.sf-fb  { background: #1877f2; }
.sf-yt  { background: #ff0000; }
.sf-tk  { background: #1a1a1a; }
.sf-tt  { background: #1da1f2; }

@media (max-width: 960px) {
  #menuToggle { display: block; }
  .navbar {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    /* Mobile dropdown: krem sedikit lebih gelap */
    background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
    padding: 1.2rem 1.5rem 1.8rem;
    border-top: 1px solid rgba(26,140,46,.12);
    box-shadow: 0 20px 40px rgba(160,140,80,.20);
  }
  .navbar.active { display: block; }
  .navbar ul { flex-direction: column; gap: 4px; }
  .navbar ul li a {
    color: var(--g-700);
    padding: 12px 14px;
  }
  .navbar ul li a:hover { background: rgba(26,140,46,.08); }
  .header { padding: 0 1.5rem; }
}

@media (max-width: 768px) { .social-floating { display: none; } }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: var(--wa);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 990;
  box-shadow: 0 6px 24px rgba(37,211,102,.42);
  animation: waPulse 2.8s ease-in-out infinite;
  transition: transform .25s var(--ease);
}

.wa-float:hover { transform: scale(1.1); color: var(--white); }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.42); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.70); }
}

/* ─── BACK TO TOP ─── */
/* SECONDARY hijau */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 22px;
  width: 44px;
  height: 44px;
  background: var(--g-600);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 990;
  box-shadow: var(--shadow-green);
  transition: all .3s var(--ease);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--g-500);
  transform: translateY(-4px);
  color: var(--white);
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ─── RESPONSIVE FINAL ─── */
@media (max-width: 768px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .about-features { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section-title { margin-bottom: 44px; }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile-first: tulis default dulu untuk mobile */
.container {
  width: 100%;
  padding: 0 16px;
}

/* Tablet (≥768px) */
@media (min-width: 768px) {
  .container {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 24px;
  }
}

/* Desktop (≥1024px) */
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
    padding: 0 32px;
  }
}

/* Wide (≥1280px) */
@media (min-width: 1280px) {
  .container {
    max-width: 1440px;
  }
}