@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #edf6f0;
  --bg-soft: #e2f0e7;
  --surface: #ffffff;
  --surface-2: #f6fbf8;
  --primary: #2f9d63;
  --primary-light: #5bbf83;
  --primary-deep: #1e7f4d;
  --accent: #4a9d72;
  --text: #18392b;
  --text-muted: #3f5d4f;
  --border: #c5ddd0;
  --shadow: 0 12px 36px rgba(28, 101, 64, 0.12);
  --container: 1160px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;
}

* {
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
img {
  pointer-events: none;
  -webkit-touch-callout: none;
}
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(
      ellipse 75% 50% at 88% 8%,
      rgba(91, 191, 131, 0.14),
      transparent 55%
    ),
    radial-gradient(
      ellipse 65% 45% at 8% 18%,
      rgba(47, 157, 99, 0.1),
      transparent 50%
    ),
    linear-gradient(165deg, #f8fcfa 0%, var(--bg) 42%, #e4f2e9 100%);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  padding-top: 3.8rem;
}
main,
header,
footer,
section {
  width: 100%;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 0.5rem;
  z-index: 99;
}
.skip-link:focus {
  left: 8px;
}
.top-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 60;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 61;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(246, 251, 248, 0.94) 100%
  );
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(189, 217, 200, 0.9);
  transition:
    box-shadow 0.25s,
    background 0.25s;
}
header.scrolled {
  box-shadow: 0 8px 24px rgba(21, 57, 43, 0.1);
  background: rgba(255, 255, 255, 0.98);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}
/* Standardisasi gap di seluruh website */
:root {
  --gap-xs: 0.35rem;
  --gap-sm: 0.5rem;
  --gap-md: 0.75rem;
  --gap-lg: 1rem;
  --gap-xl: 1.25rem;
  --gap-2xl: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background: transparent;
  padding: 0;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(30, 127, 77, 0.18);
}
footer .brand img {
  width: 52px;
  height: 52px;
  border: none;
  background: transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}
.brand-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0.85rem;
}
.nav-links a {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.97rem;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--primary-deep);
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  min-height: 36px;
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
}
.lang-toggle .lang-active {
  color: var(--primary-deep);
}
.hamburger {
  display: grid;
  gap: 4px;
  background: none;
  border: 0;
  padding: 6px;
}
.hamburger span {
  width: 23px;
  height: 2px;
  background: var(--primary-deep);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 45, 29, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  z-index: 70;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  position: relative;
  width: min(88vw, 320px);
  padding: 2.5rem 1.25rem;
}
.mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.mobile-close:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.03);
}
.mobile-menu a {
  color: #eafff3;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 157, 99, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: -120% auto auto -30%;
  width: 30%;
  height: 320%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(18deg);
  animation: shimmer 3.8s linear infinite;
}
@keyframes shimmer {
  0% {
    left: -40%;
  }
  100% {
    left: 130%;
  }
}
.btn-ghost {
  border-color: var(--primary);
  color: var(--primary-deep);
  background: linear-gradient(180deg, #fff, var(--surface-2));
}

.hero {
  padding: clamp(2.8rem, 7vw, 6rem) 0;
  background: linear-gradient(
    135deg,
    rgba(246, 251, 248, 0.95) 0%,
    rgba(237, 246, 240, 0.9) 55%,
    rgba(228, 242, 233, 0.92) 100%
  );
  border-radius: 0 0 1.5rem 1.5rem;
}
.hero-wrap {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}
@media (max-width: 767px) {
  .hero-video {
    min-height: 260px;
  }
  .hero-visual {
    min-height: 260px;
  }
}
.eyebrow {
  color: var(--primary-deep);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0.2rem 0;
}
article {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 {
  font-size: clamp(2.05rem, 5vw, 4.1rem);
  line-height: 1.05;
}
h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
}
p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}
.hero-visual {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(47, 157, 99, 0.22);
  box-shadow:
    0 22px 50px rgba(28, 101, 64, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  aspect-ratio: 16 / 10;
  min-height: 280px;
  background: #1a3d2c;
}
.hero-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}
.hero-video-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 42%,
    rgba(0, 0, 0, 0.12) 100%
  );
  pointer-events: none;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(
    circle,
    rgba(91, 191, 131, 0.18),
    transparent 55%
  );
  animation: floatGlow 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.promo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.promo-points span {
  background: linear-gradient(135deg, #fff, var(--surface-2));
  border: 1px solid var(--border);
  color: var(--primary-deep);
  padding: 0.35rem 0.68rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.section {
  padding: clamp(2.2rem, 6vw, 5rem) 0;
}
.section:nth-of-type(even) {
  background: linear-gradient(
    180deg,
    rgba(246, 251, 248, 0.7) 0%,
    rgba(237, 246, 240, 0.45) 100%
  );
}
.grid-2 {
  display: grid;
  gap: 1.3rem;
}
.card {
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.card.pad {
  padding: 1.5rem;
}

.stats {
  display: grid;
  gap: 1rem;
}
.stat {
  padding: 1.15rem 1rem;
  text-align: center;
  background: linear-gradient(165deg, #ffffff 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  box-shadow: 0 6px 20px rgba(30, 127, 77, 0.06);
}
.stat-num {
  font: 700 clamp(1.8rem, 5vw, 2.6rem)/1 var(--font-display);
  color: var(--primary-deep);
}

.filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.chip {
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, var(--surface-2));
  color: var(--text-muted);
  cursor: pointer;
}
.chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.media {
  position: relative;
  aspect-ratio: 2/3;
  background: linear-gradient(160deg, #eaf5ee, #edf5f0);
  flex-shrink: 0;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 210px;
}
.badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: #fff;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.74rem;
  color: var(--primary-deep);
}
.placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--text-muted);
  padding: 1rem;
  text-align: center;
  background: linear-gradient(135deg, #eef8f1, #ddeee4);
}
.product-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body p {
  flex: 1;
  margin-bottom: 0.5rem;
}
.product-body > div:last-child {
  margin-top: auto !important;
}
.price {
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 1.04rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.product-actions {
  display: flex;
  gap: 0.75rem;
}

.about-img {
  max-width: 380px;
  margin: 0 auto;
}
.about-img img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0.8rem;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.9rem 0;
  background: none;
  border: 0;
  color: var(--text);
  text-align: left;
  font-weight: 600;
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

footer {
  margin-top: 2rem;
  padding: 2.2rem 0;
  background: linear-gradient(165deg, #1a6c43 0%, #145532 55%, #0f3f26 100%);
  color: #effff6;
}
footer p,
footer a {
  color: #effff6;
}
footer .brand-title {
  color: #fff;
}
footer .brand-sub {
  color: #d4f5e3;
}
.foot {
  display: grid;
  gap: 1rem;
}
.foot h3 {
  margin: 0.15rem 0 0.4rem;
  font-size: 1.2rem;
}
.socials {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.7rem;
}
.social-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 0;
  flex-shrink: 0;
  overflow: hidden;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.social-icon svg {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: block;
  flex-shrink: 0;
}
/* When SVG has its own colored background rect, fill the container */
.social-icon svg rect:first-child {
  width: 100%;
  height: 100%;
}
.social-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.social-icon:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #fff;
  transform: translateY(-2px);
}
.socials:empty {
  min-height: 40px;
}
.footer-note {
  margin-top: 1rem;
  color: #d8f6e5;
  font-size: 0.92rem;
}
.muted {
  color: var(--text-muted);
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: #113f2a;
  color: #dff8ea;
  padding: 0.7rem 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid #2b6f4c;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.2s;
  z-index: 80;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 80;
}
.modal.open {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  width: min(92vw, 560px);
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1rem;
}

.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.55s;
}
.animate.visible {
  opacity: 1;
  transform: none;
}

/* Story & Review marquee */
.reviews-section {
  overflow: hidden;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.reviews-header {
  margin-bottom: 1.25rem;
}
.reviews-lead {
  max-width: 52ch;
  margin-top: 0.5rem;
}
.reviews-marquee-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.reviews-marquee {
  overflow: hidden;
  width: 100%;
}
.reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.35rem 0 0.75rem;
  animation: reviewScroll 55s linear infinite;
}
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}
@keyframes reviewScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.review-card {
  flex: 0 0 auto;
  width: min(88vw, 340px);
  padding: 1.15rem 1.2rem;
  background: linear-gradient(155deg, #ffffff 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  box-shadow: 0 14px 32px rgba(30, 127, 77, 0.08);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(47, 157, 99, 0.35);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 127, 77, 0.12);
}
.review-avatar--initial {
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.review-avatar--s {
  background: linear-gradient(135deg, #3d7a9a, #6ba8c7);
}
.review-avatar--d {
  background: linear-gradient(135deg, #2a6b4a, #4a9d72);
}
.review-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}
.review-role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  font-weight: 500;
}
.review-stars {
  color: #e8b84a;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}
.review-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    word-break: normal;
    overflow-wrap: break-word;
  }
  .hero {
    border-radius: 0;
  }
  .hero-wrap {
    gap: 1rem;
  }
  .hero-visual {
    width: 100%;
    max-width: 100%;
  }
  .hero-video {
    min-height: 240px;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .promo-points {
    gap: 0.4rem;
  }
  .promo-points span {
    font-size: 0.76rem;
    padding: 0.32rem 0.55rem;
  }
  nav {
    padding: 0.65rem 0;
  }
  .brand-title {
    font-size: 1.25rem;
  }
  .card.pad {
    padding: 1rem;
  }
  .review-card {
    width: min(92vw, 320px);
  }
  .reviews-track {
    animation-duration: 45s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .reviews-marquee-wrap {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (min-width: 768px) {
  .hamburger,
  .mobile-menu {
    display: none;
  }
  .nav-links {
    display: flex;
  }
  .hero-wrap,
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Floating WhatsApp Button ===== */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  animation: floatPulse 2.5s ease-in-out infinite;
}
.floating-wa:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.floating-wa svg {
  flex-shrink: 0;
}
@keyframes floatPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65);
  }
}
@media (max-width: 767px) {
  .floating-wa {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 0.88rem;
  }
}

/* ===== Navbar Social Icons ===== */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.nav-social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(47, 157, 99, 0.1),
    rgba(47, 157, 99, 0.05)
  );
  color: var(--primary-deep);
  transition:
    background 0.2s,
    transform 0.2s,
    color 0.2s;
}
.nav-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== Keunggulan / Features Section ===== */
.keunggulan-section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}
.keunggulan-header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.keunggulan-card {
  background: linear-gradient(155deg, #ffffff 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  text-align: center;
  box-shadow: 0 8px 24px rgba(30, 127, 77, 0.06);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.keunggulan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 127, 77, 0.12);
}
.keunggulan-icon {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
  display: block;
}
.keunggulan-card h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0 0 0.4rem;
  color: var(--text);
}
.keunggulan-card p {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  margin: 0;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .keunggulan-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .keunggulan-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ===== Featured Products on Homepage ===== */
.featured-section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: linear-gradient(
    180deg,
    rgba(246, 251, 248, 0.7) 0%,
    rgba(237, 246, 240, 0.45) 100%
  );
}
.featured-header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.featured-card {
  background: linear-gradient(155deg, #ffffff 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(30, 127, 77, 0.08);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(30, 127, 77, 0.14);
}
.featured-card-img {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, #eaf5ee, #edf5f0);
  overflow: hidden;
}
.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-card-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary-deep);
}
.featured-card-body {
  padding: clamp(0.8rem, 2vw, 1.1rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.featured-card-body h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0 0 0.35rem;
}
.featured-card-body p {
  font-size: 0.9rem;
  margin: 0 0 0.65rem;
  line-height: 1.55;
  flex: 1;
}
.featured-card-body .btn {
  width: 100%;
  font-size: 0.88rem;
  padding: 0.55rem 0.8rem;
  margin-top: auto;
}
.featured-footer {
  text-align: center;
  margin-top: clamp(1.2rem, 3vw, 2rem);
}

@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ===== Buy Platforms Section ===== */
.platforms-section {
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.platforms-header {
  text-align: center;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}
.platforms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 700px;
  margin: 0 auto;
}
.platform-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: clamp(0.85rem, 2vw, 1.15rem) clamp(1rem, 2.5vw, 1.5rem);
  background: linear-gradient(155deg, #ffffff 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 6px 18px rgba(30, 127, 77, 0.06);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.platform-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 127, 77, 0.12);
  border-color: var(--primary-light);
}
.platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.platform-icon--wa {
  background: #25d366;
  color: #fff;
}
.platform-icon--shopee {
  background: #ee4d2d;
  color: #fff;
}
.platform-icon--linktree {
  background: #43e660;
  color: #fff;
}
.platform-card-text h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}
.platform-card-text p {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
}

@media (min-width: 600px) {
  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
}

/* ===== About Checklist ===== */
.about-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}
.about-checklist li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.about-img--logo img {
  object-fit: contain;
  background: transparent;
  padding: 0;
  border: none;
}

/* ===== Responsive: mobile single-column for very small screens ===== */
@media (max-width: 479px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .keunggulan-grid {
    grid-template-columns: 1fr;
  }
  .platforms-grid {
    grid-template-columns: 1fr;
  }
}
