@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --black: #141414;
  --charcoal: #191919;
  --text: #161616;
  --muted: #4f4f4f;
  --cream: #fbf8ef;
  --white: #ffffff;
  --yellow: #ffc72c;
  --yellow-dark: #e4aa00;
  --maroon: #8f1742;
  --maroon-dark: #751033;
  --pink: #e98fbe;
  --green: #2f7b48;
  --orange: #ee4d2d;
  --blue: #006fee;
  --line: #ece7dc;
  --shadow-hard: 0 5px 0 #0d0d0d;
  --shadow-soft: 0 18px 36px rgba(20, 20, 20, 0.12);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main,
section,
.footer {
  max-width: 100vw;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.container,
.hero-container,
.nav-container {
  width: calc(100% - 48px);
  max-width: var(--max);
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 10010;
  width: 0;
  height: 3px;
  background: var(--yellow);
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  transition: box-shadow 180ms ease, padding 180ms ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 26px rgba(20, 20, 20, 0.08);
}

.nav-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.nav-logo-img,
.footer-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav-link {
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 700;
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--maroon);
}

.nav-powered {
  display: none;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-tool,
.nav-sign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 3px 0 var(--black);
}

.nav-tool {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.nav-tool svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-sign {
  min-width: 118px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 3px 0 var(--black);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 10002;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--black);
  transition: transform 200ms ease, opacity 160ms ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 138px 0 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 72%, rgba(246, 225, 153, 0.24), transparent 18%),
    radial-gradient(circle at 38% 20%, rgba(230, 214, 178, 0.2), transparent 15%),
    var(--cream);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(220, 200, 151, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 220px;
  height: 220px;
  left: -72px;
  bottom: 116px;
}

.hero::after {
  width: 180px;
  height: 180px;
  right: -54px;
  top: 132px;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  width: 100%;
  max-width: 600px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.eyebrow svg,
.section-tag svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(56px, 6.4vw, 86px);
  font-weight: 800;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 700;
}

h3 {
  margin-bottom: 8px;
  font-size: 25px;
  font-weight: 700;
}

.hero-copy > p {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.cta-actions,
.product-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn,
.product-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border-radius: 999px;
  color: var(--black);
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.product-order:hover,
.nav-tool:hover,
.nav-sign:hover {
  transform: translateY(-2px);
}

.btn-primary,
.product-order {
  background: var(--yellow);
  box-shadow: var(--shadow-hard);
}

.btn-ghost {
  border: 2px solid var(--yellow);
  background: var(--white);
  box-shadow: var(--shadow-hard);
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: #128c7e;
}

.brand-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}

.hero-stats {
  display: none;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 5% -10% 0 2%;
  z-index: -2;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 46px, rgba(255, 199, 44, 0.72) 48px 68px, transparent 70px 112px);
  border-radius: 50%;
  opacity: 0.86;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 4% 2% 12% 12%;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 24%, var(--yellow) 0 10px, transparent 11px),
    radial-gradient(circle at 78% 16%, var(--yellow) 0 16px, transparent 17px),
    radial-gradient(circle at 88% 64%, #f1b91c 0 13px, transparent 14px),
    radial-gradient(circle at 14% 76%, #f1b91c 0 15px, transparent 16px),
    radial-gradient(ellipse at center, rgba(255, 181, 34, 0.56), rgba(255, 199, 44, 0.08) 52%, transparent 72%);
}

.hero-card {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(380px, 68vw);
  height: min(510px, 78vw);
  aspect-ratio: 3 / 4;
  padding: 0;
  border-radius: 8px;
  background: url("../images/optimized/produk-original.webp") center / contain no-repeat;
  transform: translate(-50%, -50%) rotate(3deg);
  filter: drop-shadow(0 24px 20px rgba(20, 20, 20, 0.18));
  animation: heroBag 4.8s ease-in-out infinite;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  opacity: 0;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 10%;
  padding: 13px 18px;
  border: 2px solid #f1dba2;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.12);
}

.hero-note span {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
}

.hero-note strong {
  display: block;
  margin-top: 3px;
}

@keyframes heroBag {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(3deg) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(1deg) translateY(-12px);
  }
}

section {
  scroll-margin-top: 90px;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-header h2 {
  overflow-wrap: normal;
  text-wrap: balance;
}

.section-header p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.partners {
  position: relative;
  padding: 86px 0 92px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse at 18% 45%, rgba(255, 199, 44, 0.13), transparent 30%),
    radial-gradient(ellipse at 82% 50%, rgba(255, 199, 44, 0.12), transparent 28%),
    var(--maroon);
}

.partners::before,
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 48%, rgba(255, 154, 89, 0.22) 0 15%, transparent 16%),
    radial-gradient(ellipse at 50% 38%, rgba(255, 154, 89, 0.15) 0 17%, transparent 18%),
    radial-gradient(ellipse at 88% 44%, rgba(255, 154, 89, 0.18) 0 15%, transparent 16%);
  opacity: 0.72;
  pointer-events: none;
}

.partners .container,
.cta .container {
  position: relative;
  z-index: 1;
}

.partners .section-tag,
.partners h2,
.partners .section-header p {
  color: var(--white);
}

.partners h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--white);
  text-align: center;
}

.partner-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--yellow);
  overflow: hidden;
}

.partner-mark img {
  width: 68px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0.05);
}

.partner-dekatlokal .partner-logo-color {
  position: absolute;
  opacity: 0;
  transition: opacity 160ms ease;
}

.partner-dekatlokal:hover .partner-logo-color {
  opacity: 1;
}

.partner-dekatlokal:hover .partner-logo-neutral {
  opacity: 0;
}

.partner-dekatlokal:hover .partner-logo-color {
  filter: none;
}

.partner-copy strong,
.partner-copy span {
  display: block;
  text-align: center;
}

.partner-copy strong {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.partner-copy span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
}

.about {
  position: relative;
  padding: 150px 0 138px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.5), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 220, 180, 0.4), transparent 35%),
    linear-gradient(135deg, #ffa5d8 0%, #ff8cc5 50%, #ffc3e0 100%);
}

.about::before,
.about::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 58px;
  background-size: 92px 58px;
  background-repeat: repeat-x;
  pointer-events: none;
}

.about::before {
  top: 0;
  background-image: radial-gradient(circle at 46px 58px, transparent 45px, var(--white) 46px);
}

.about::after {
  bottom: 0;
  transform: rotate(180deg);
  background-image: radial-gradient(circle at 46px 58px, transparent 45px, var(--white) 46px);
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 76px;
}

.about-grid::before {
  content: "";
  position: absolute;
  left: 2%;
  top: 50%;
  width: min(430px, 38vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-50%);
}

.about-media {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  justify-self: center;
  box-shadow: none;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.about-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.about .section-tag {
  color: var(--black);
}

.about-copy p {
  color: #2e1e27;
}

.about-points {
  display: grid;
  gap: 15px;
  margin: 28px 0 0;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #151515;
  font-weight: 800;
}

.about-points svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  padding: 5px;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products,
.testimonials {
  padding: 112px 0;
  background: var(--white);
}

.products .section-header,
.testimonials .section-header {
  max-width: 760px;
}

.products h2,
.testimonials h2 {
  font-size: clamp(40px, 4.5vw, 58px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px 56px;
}

.product-card,
.product-card-featured {
  display: block;
  grid-column: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.product-card:hover {
  transform: none;
  box-shadow: none;
}

.product-media {
  position: relative;
  display: grid;
  place-items: end center;
  height: 360px;
  margin-bottom: 24px;
  background: transparent;
}

.product-media::before {
  content: "";
  position: absolute;
  inset: auto 6% 0;
  height: 54%;
  z-index: 0;
  background: repeating-radial-gradient(ellipse at center, transparent 0 30px, rgba(255, 199, 44, 0.42) 32px 42px, transparent 44px 72px);
  border-radius: 50% 50% 0 0;
}

.product-card:nth-child(2n) .product-media::before {
  background: repeating-radial-gradient(ellipse at center, transparent 0 30px, rgba(125, 94, 57, 0.32) 32px 42px, transparent 44px 72px);
}

.product-card:nth-child(3n) .product-media::before {
  background: repeating-radial-gradient(ellipse at center, transparent 0 30px, rgba(86, 156, 217, 0.34) 32px 42px, transparent 44px 72px);
}

.product-media img {
  position: relative;
  z-index: 1;
  width: min(78%, 285px);
  height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 16px 12px rgba(20, 20, 20, 0.12));
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 3px 0 var(--black);
  font-size: 12px;
  font-weight: 950;
}

.product-info {
  display: block;
  min-height: 0;
  padding: 0;
}

.product-info h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-info h3::after {
  content: "";
  flex: 0 0 auto;
  width: 94px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffc72c' d='m10 1.7 2.4 5 5.5.8-4 3.9.9 5.5-4.8-2.6-4.9 2.6.9-5.5-4-3.9 5.5-.8L10 1.7Z'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 18px 18px;
  filter: drop-shadow(0 1px 0 var(--yellow-dark));
}

.product-info p {
  min-height: 46px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 16px;
}

.product-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 54px;
  margin-bottom: 18px;
}

.product-prices span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 8px;
  border: 1px solid #f0d37a;
  border-radius: 8px;
  color: #6f4d00;
  background: #fff8df;
  font-size: 12px;
  font-weight: 800;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.product-order {
  width: 100%;
  min-height: 50px;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 4px 0 var(--black);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.testimonials {
  background:
    radial-gradient(circle at 18% 38%, rgba(255, 199, 44, 0.14), transparent 20%),
    radial-gradient(circle at 85% 45%, rgba(255, 199, 44, 0.16), transparent 20%),
    linear-gradient(90deg, rgba(255, 244, 248, 0.72), rgba(255, 255, 255, 0.9), rgba(255, 250, 225, 0.72));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.testimonial-card {
  position: relative;
  min-height: 250px;
  padding: 30px 32px;
  border: 0;
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 18px 32px rgba(20, 20, 20, 0.12);
}

.testimonial-card::before {
  content: "";
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, #ffd9b5 0 18%, transparent 19%),
    radial-gradient(circle at 50% 100%, #252525 0 38%, transparent 39%),
    linear-gradient(135deg, #f7d09b, #b56b39);
}

.quote-mark {
  display: none;
}

.testimonial-card p {
  color: #252525;
}

.testimonial-card p::before {
  content: "";
  display: block;
  width: 104px;
  height: 20px;
  margin-bottom: 18px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffc72c' d='m10 1.7 2.4 5 5.5.8-4 3.9.9 5.5-4.8-2.6-4.9 2.6.9-5.5-4-3.9 5.5-.8L10 1.7Z'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 20px 20px;
}

.testimonial-card strong,
.testimonial-card span:last-child {
  display: block;
}

.testimonial-card strong {
  position: absolute;
  left: 104px;
  top: 35px;
  font-size: 22px;
  font-weight: 950;
}

.testimonial-card span:last-child {
  position: absolute;
  left: 104px;
  top: 68px;
  color: var(--muted);
}

.faq {
  padding: 96px 0;
  background: #fffaf0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 44px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 100px;
  align-self: start;
}

.faq-copy p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 2px solid #f2d682;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 900;
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 20px;
  color: var(--muted);
  overflow: hidden;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 20px;
}

.cta {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
  color: var(--white);
  background: var(--maroon);
}

.cta::before {
  background:
    radial-gradient(ellipse at 12% 50%, rgba(255, 154, 89, 0.22) 0 15%, transparent 16%),
    radial-gradient(ellipse at 50% 45%, rgba(255, 154, 89, 0.14) 0 15%, transparent 16%),
    radial-gradient(ellipse at 88% 48%, rgba(255, 154, 89, 0.18) 0 15%, transparent 16%);
}

.cta-inner {
  max-width: 760px;
  text-align: center;
}

.cta .section-tag,
.cta h2,
.cta p {
  color: var(--white);
}

.cta h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.cta p {
  margin-bottom: 30px;
}

.cta-actions {
  justify-content: center;
}

.btn-shopee {
  color: var(--black);
  background: var(--yellow);
  box-shadow: var(--shadow-hard);
}

.btn-shopee svg {
  fill: currentColor;
  stroke: none;
}

.floating-group {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: grid;
  gap: 8px;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  width: 132px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.18);
}

.fb-wa {
  background: #128c7e;
}

.fb-shopee {
  background: var(--orange);
}

.fb-tiktok {
  background: #111111;
}

.floating-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.footer {
  padding: 82px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 72px;
}

.footer-logo {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 24px;
}

.footer-brand p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 20px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--yellow);
}

.footer-partner-logos {
  display: grid;
  gap: 12px;
}

.footer-partner-logos a,
.footer-partner-logos > img {
  display: flex;
  align-items: center;
  min-height: 36px;
}

.footer-partner-logos img {
  width: 155px;
  height: 30px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.78;
  filter: grayscale(1) brightness(1.85);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--yellow);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    justify-self: center;
  }

  .hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 470px;
  }

  .partner-logos,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }
}

@media (max-width: 820px) {
  .container,
  .hero-container,
  .nav-container {
    width: calc(100% - 32px);
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .nav-tools {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 84px 24px 34px;
    background: var(--charcoal);
    transform: translateX(100%);
    transition: transform 240ms ease;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    font-size: 20px;
  }

  .nav-powered {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-weight: 900;
  }

  .nav-powered span {
    color: var(--yellow);
  }

  .nav-toggle.active {
    position: fixed;
    top: 14px;
    right: 16px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 70px;
  }

  .hero-container {
    min-width: 0;
  }

  h1 {
    font-size: clamp(44px, 12vw, 64px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-height: 380px;
    overflow: hidden;
  }

  .hero-card {
    width: min(318px, 78vw);
    height: 410px;
  }

  .partners,
  .products,
  .testimonials,
  .faq,
  .cta {
    padding: 76px 0;
  }

  .partner-logos,
  .product-grid,
  .testimonial-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .partner-mark {
    width: 82px;
    height: 82px;
  }

  .about {
    padding: 112px 0 104px;
  }

  .about-grid::before {
    left: 50%;
    top: 18%;
    width: min(360px, 86vw);
    transform: translate(-50%, -50%);
  }

  .about-media {
    width: min(360px, 86vw);
  }

  .product-media {
    height: 330px;
  }

  .product-card,
  .testimonial-card {
    width: 100%;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .container,
  .hero-container,
  .nav-container {
    width: calc(100% - 28px);
  }

  .nav-logo-img {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: visible;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: left;
  }

  .hero-copy > p,
  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .eyebrow,
  .section-tag {
    font-size: 13px;
  }

  h1 {
    font-size: clamp(39px, 11vw, 48px);
    overflow-wrap: break-word;
  }

  h2,
  .products h2,
  .testimonials h2,
  .cta h2 {
    font-size: clamp(29px, 8.4vw, 36px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .product-order {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-height: 330px;
    overflow: hidden;
  }

  .hero-visual::before {
    inset: 5% -18% 0 -18%;
  }

  .hero-visual::after {
    inset: 8% 0 12%;
  }

  .hero-card {
    width: min(274px, 72vw);
    height: 330px;
  }

  .hero-note {
    right: 0;
    bottom: 12px;
    max-width: 142px;
    padding: 10px 12px;
  }

  .hero-note strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .partners h2 {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(28px, 7.6vw, 32px);
    line-height: 1.12;
  }

  .section-header {
    margin-bottom: 42px;
  }

  .partner-logo {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .product-grid {
    gap: 52px;
  }

  .product-media {
    height: 292px;
    margin-bottom: 18px;
  }

  .product-media img {
    height: 278px;
  }

  .product-info h3 {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    font-size: 22px;
  }

  .product-info h3::after {
    font-size: 14px;
  }

  .product-actions {
    grid-template-columns: 1fr 50px;
  }

  .testimonial-card strong {
    font-size: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .floating-group {
    right: 12px;
    bottom: 12px;
  }

  .floating-btn {
    width: 44px;
    justify-content: center;
    padding: 0;
  }

  .floating-btn span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .footer {
    padding-bottom: 90px;
  }
}

/* Modern lightweight refinement */
:root {
  --chip-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%23d99d00' stroke-width='2' opacity='.55'%3E%3Cellipse cx='34' cy='30' rx='18' ry='13' transform='rotate(-18 34 30)'/%3E%3Cellipse cx='66' cy='68' rx='16' ry='11' transform='rotate(24 66 68)'/%3E%3C/g%3E%3Cg fill='%23ffc72c' opacity='.22'%3E%3Cellipse cx='34' cy='30' rx='15' ry='10' transform='rotate(-18 34 30)'/%3E%3Cellipse cx='66' cy='68' rx='13' ry='8' transform='rotate(24 66 68)'/%3E%3C/g%3E%3C/svg%3E");
  --wa-mark: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23128c7e' d='M16.1 3.1a12.7 12.7 0 0 0-10.8 19.4L3.8 28.9l6.6-1.6a12.7 12.7 0 1 0 5.7-24.2Zm0 22.8c-2 0-3.8-.6-5.4-1.6l-.4-.2-3.9.9.9-3.8-.2-.4a10.1 10.1 0 1 1 9 5.1Zm5.6-7.5c-.3-.2-1.8-.9-2.1-1-.3-.1-.5-.2-.7.2-.2.3-.8 1-.9 1.2-.2.2-.3.2-.6.1-1.7-.8-2.8-1.5-3.9-3.4-.3-.5.3-.5.8-1.6.1-.2 0-.4 0-.6-.1-.2-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.6.1-.9.4-.3.3-1.2 1.2-1.2 2.8s1.2 3.2 1.3 3.4c.2.2 2.3 3.5 5.5 4.9.8.3 1.4.5 1.9.6.8.2 1.5.2 2.1.1.6-.1 1.8-.7 2.1-1.5.3-.7.3-1.4.2-1.5-.1-.1-.3-.2-.6-.3Z'/%3E%3C/svg%3E");
  --cursor-default: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23141414' d='M5 3.8 18.7 12 12 13.3 8.8 20.1 5 3.8Z'/%3E%3Cpath fill='%23ffc72c' d='M7.1 7.3 14.4 11.7 10.8 12.4 9 16.1 7.1 7.3Z'/%3E%3C/svg%3E") 4 4;
  --cursor-pointer: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='%23ffc72c' stroke='%23141414' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='2.7' fill='%23141414'/%3E%3C/svg%3E") 12 12;
}

html {
  scrollbar-color: var(--yellow) #fff3c8;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fff3c8;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #fff3c8;
  border-radius: 999px;
  background: var(--yellow);
}

body {
  cursor: var(--cursor-default), auto;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
}

a,
button,
.btn,
.product-order,
.icon-btn,
.floating-btn {
  cursor: var(--cursor-pointer), pointer;
}

h1 {
  font-size: clamp(50px, 5.8vw, 78px);
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  font-weight: 600;
  letter-spacing: 0;
}

h3 {
  font-weight: 600;
  letter-spacing: 0;
}

.section-tag,
.eyebrow,
.btn,
.product-order,
.nav-link,
.nav-sign,
.partner-copy strong,
.footer-column h3,
.faq-question,
.product-badge,
.hero-note span {
  font-weight: 700;
}

section {
  position: relative;
  overflow: hidden;
}

.section-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: var(--chip-pattern);
  background-size: 118px 118px;
  animation: chipPatternDrift 30s linear infinite;
}

.hero .section-pattern {
  opacity: 0.14;
  background-size: 132px 132px;
}

.partners .section-pattern,
.cta .section-pattern {
  opacity: 0.1;
}

section > .container,
section > .hero-container {
  position: relative;
  z-index: 1;
}

@keyframes chipPatternDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 118px 96px;
  }
}

.nav-logo {
  width: 58px;
  height: 58px;
  justify-content: center;
  padding: 7px;
  border-radius: 18px;
  background: #fff5ce;
  box-shadow: 0 3px 0 var(--black);
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.nav-menu-logo {
  display: none;
}

.nav-tools {
  gap: 0;
}

.nav-sign {
  min-width: 96px;
  height: 44px;
  font-size: 14px;
}

.hero-card {
  background-image: url("../images/optimized/produk-original.webp");
}

.btn[href*="wa.me"]::before,
.product-order::before {
  content: "";
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-right: 8px;
  background: var(--wa-mark) center / contain no-repeat;
}

.about {
  padding: 108px 0 102px;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.44), transparent 23%),
    linear-gradient(180deg, #ffd95b 0%, #ffc72c 100%);
}

.about::before {
  background-image: radial-gradient(circle at 46px 58px, transparent 45px, var(--white) 46px);
}

.about::after {
  background-image: radial-gradient(circle at 46px 58px, transparent 45px, var(--white) 46px);
}

.about-grid::before {
  background: rgba(255, 255, 255, 0.68);
}

.about-copy p,
.about-points div {
  color: #29210b;
}

.about h2 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
}

.about-points svg {
  background: var(--maroon);
}

.products {
  min-height: calc(100vh - 90px);
  padding: 42px 0 44px;
}

.products .section-header {
  max-width: 650px;
  margin-bottom: 18px;
}

.products h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.products .section-header p {
  font-size: 15px;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 24px;
}

.product-media {
  height: 150px;
  margin-bottom: 10px;
  place-items: center;
}

.product-media::before {
  inset: auto 7% 0;
  height: 48%;
  background: repeating-radial-gradient(ellipse at center, transparent 0 18px, rgba(255, 199, 44, 0.38) 20px 28px, transparent 30px 50px);
}

.product-card:nth-child(2n) .product-media::before {
  background: repeating-radial-gradient(ellipse at center, transparent 0 18px, rgba(125, 94, 57, 0.26) 20px 28px, transparent 30px 50px);
}

.product-card:nth-child(3n) .product-media::before {
  background: repeating-radial-gradient(ellipse at center, transparent 0 18px, rgba(86, 156, 217, 0.28) 20px 28px, transparent 30px 50px);
}

.product-media img {
  width: min(82%, 162px);
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 12px 10px rgba(20, 20, 20, 0.12));
}

.product-info h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.product-info h3::after {
  width: 75px;
  height: 15px;
  background-size: 15px 15px;
}

.product-info p {
  min-height: 32px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.product-prices {
  min-height: 0;
  margin-bottom: 10px;
  gap: 4px;
}

.product-prices span {
  min-height: 22px;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 600;
}

.product-actions {
  grid-template-columns: 1fr 38px;
  gap: 8px;
}

.product-order {
  min-height: 36px;
  padding: 0 14px;
  font-size: 12px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  box-shadow: 0 3px 0 var(--black);
}

.icon-btn img,
.btn-shopee img,
.floating-btn img,
.footer-socials img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.product-badge {
  top: 8px;
  left: 8px;
  padding: 5px 7px;
  font-size: 10px;
}

.testimonial-card p::before {
  width: 100px;
  height: 20px;
  background-size: 20px 20px;
}

.btn-shopee svg {
  display: none;
}

.fb-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #515bd4);
}

.footer-logo {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.footer-partner-logos {
  gap: 10px;
}

.footer-partner-logo {
  display: grid;
  place-items: center;
  width: 172px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-partner-logo img {
  width: 132px;
  height: 34px;
  object-fit: contain;
  object-position: center;
  opacity: 0.84;
  filter: grayscale(1) brightness(1.9);
}

.footer-partner-logo img[src*="rumah-bumn"] {
  width: 144px;
  height: 42px;
}

.partner-mark img[src*="rumah-bumn"] {
  width: 78px;
  height: 56px;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-menu-logo {
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    margin: 0 auto 14px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 4px 0 var(--yellow);
  }

  .nav-menu-logo img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: contain;
  }

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

  .product-card {
    max-width: none;
  }

  .product-media {
    height: 160px;
  }

  .product-media img {
    height: 160px;
  }

  .product-info p {
    min-height: 48px;
    font-size: 12px;
  }

  .product-actions {
    grid-template-columns: 1fr 36px;
  }

  .product-order,
  .icon-btn {
    min-height: 36px;
    height: 36px;
  }
}

@media (max-width: 560px) {
  .nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .nav-logo-img {
    width: 38px;
    height: 38px;
  }

  .products {
    padding: 54px 0 60px;
  }

  .product-grid {
    gap: 24px 14px;
  }

  .product-media {
    height: 142px;
    margin-bottom: 8px;
  }

  .product-media img {
    height: 142px;
  }

  .product-info h3 {
    font-size: 15px;
  }

  .product-info h3::after {
    width: 60px;
    height: 12px;
    background-size: 12px 12px;
  }

  .product-info p {
    min-height: 44px;
    font-size: 11.5px;
  }

  .product-prices span {
    font-size: 9.5px;
  }

  .product-order {
    padding: 0 8px;
    font-size: 11px;
  }

  .product-order::before {
    width: 15px;
    height: 15px;
    margin-right: 5px;
  }

  .footer-partner-logo {
    width: 168px;
  }
}

/* Final UI refinement */
:root {
  --leaf: #1d7f45;
  --leaf-2: #2ea85d;
  --leaf-dark: #135c36;
  --soft-green: #eaf8df;
}

body {
  font-family: "Plus Jakarta Sans", "Aptos", "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", "Aptos", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h1 {
  font-weight: 650;
}

h2,
h3 {
  font-weight: 600;
}

.section-tag,
.eyebrow,
.btn,
.product-order,
.nav-link,
.nav-sign,
.footer-column h3,
.faq-question,
.product-badge,
.hero-note span {
  font-weight: 600;
}

.navbar {
  background: rgba(255, 250, 226, 0.9);
}

.nav-logo {
  width: auto;
  height: 74px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav-logo:hover {
  transform: translateY(-1px);
}

.nav-logo-img {
  width: 128px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--leaf-dark);
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.07);
}

.eyebrow strong {
  font-size: 14px;
  font-weight: 600;
}

.hero-card {
  background-image: url("../images/optimized/produk-original.webp");
}

.hero-card img,
.product-media img {
  image-rendering: auto;
}

.partners {
  margin-bottom: 0;
  padding: 84px 0 74px;
  background:
    linear-gradient(180deg, #1a7742 0%, #249955 100%);
  color: var(--white);
}

.partners::before,
.partners::after,
.cta::before,
.cta::after {
  display: none;
}

.partners .section-pattern,
.about .section-pattern,
.cta .section-pattern {
  opacity: 0.07;
}

.partners .section-header {
  margin-bottom: 34px;
}

.partners .section-tag,
.partners h2 {
  color: var(--white);
}

.partners .section-header p {
  display: none;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(16px, 4vw, 44px);
  max-width: 880px;
  margin: 0 auto;
}

.partner-logo {
  min-height: 92px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.partner-mark {
  width: 100%;
  height: 84px;
  border-radius: 0;
  background: transparent;
}

.partner-mark img {
  width: 100%;
  max-width: 190px;
  height: 64px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.partner-dekatlokal .partner-logo-color {
  filter: none;
}

.partner-dekatlokal:hover .partner-logo-neutral {
  opacity: 0;
}

.partner-dekatlokal:hover .partner-logo-color {
  opacity: 1;
}

.partner-mark img[src*="rumah-bumn"] {
  width: 190px;
  height: 72px;
}

.partner-mark img[src*="bri"] {
  width: 190px;
  height: 54px;
}

.about {
  margin-top: -1px;
  padding: 82px 0 92px;
  background:
    linear-gradient(180deg, #249955 0%, #2ea85d 10%, #ffd85f 42%, #ffc72c 100%);
}

.about::before,
.about::after {
  width: 140px;
  height: 56px;
  opacity: 0.35;
  background-image: radial-gradient(circle at 28px 28px, transparent 26px, rgba(255,255,255,0.55) 27px);
}

.about::before {
  top: 16px;
}

.about::after {
  bottom: 18px;
}

.about-grid::before {
  inset: 10px auto auto 48%;
  width: 92px;
  height: 92px;
  opacity: 0.42;
}

.about h2 {
  max-width: 640px;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.04;
}

.about-copy p {
  max-width: 600px;
  font-size: 16px;
}

.about-points {
  gap: 10px;
}

.about-points div {
  min-height: 46px;
  padding: 10px 12px;
}

.products {
  padding: 44px 0 48px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 14px;
}

.product-media {
  height: 156px;
  margin-bottom: 10px;
}

.product-media img {
  width: min(84%, 174px);
  height: 156px;
  object-fit: contain;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-info p {
  min-height: 34px;
}

.product-prices {
  min-height: 28px;
}

.product-actions {
  margin-top: auto;
}

.testimonials {
  overflow: hidden;
  background:
    linear-gradient(180deg, #fffaf0 0%, #fff3c8 100%);
}

.testimonial-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 6px 0 14px;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 90px;
  height: 100%;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fffaf0 0%, rgba(255,250,240,0) 100%);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fffaf0 0%, rgba(255,250,240,0) 100%);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonialLoop 42s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  position: relative;
  flex: 0 0 310px;
  min-height: 210px;
  padding: 22px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 0 rgba(20, 20, 20, 0.08), 0 22px 38px rgba(20, 20, 20, 0.1);
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border: 2px solid var(--black);
  border-radius: 16px;
  box-shadow: 0 4px 0 var(--black);
}

.testimonial-avatar svg {
  width: 25px;
  height: 25px;
  fill: var(--black);
}

.avatar-green {
  background: #8de6a4;
}

.avatar-yellow {
  background: #ffd75e;
}

.avatar-pink {
  background: #ff9fc8;
}

.avatar-blue {
  background: #9bdcff;
}

.testimonial-card .quote-mark {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 52px;
  line-height: 1;
  color: rgba(255, 199, 44, 0.75);
}

.testimonial-card p {
  margin-bottom: 14px;
  color: #2a2a2a;
}

.testimonial-card p::before {
  display: none;
}

@keyframes testimonialLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.faq {
  overflow: visible;
}

.faq-copy {
  position: sticky;
  top: 118px;
  align-self: start;
}

.cta {
  background:
    linear-gradient(180deg, var(--leaf) 0%, var(--leaf-dark) 100%);
}

.cta-inner {
  box-shadow: none;
}

.floating-group {
  gap: 10px;
  transition: transform 0.34s ease, opacity 0.28s ease;
}

.floating-group.in-footer {
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 34px));
}

.floating-btn {
  display: grid;
  place-items: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 18px;
}

.floating-btn svg,
.floating-btn img {
  width: 25px;
  height: 25px;
  margin: 0;
}

.footer {
  padding: 66px 0 0;
}

.footer-logo {
  width: 138px;
  height: 78px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 138px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.footer-brand p {
  max-width: 320px;
}

.footer-partner-logos {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px 18px;
}

.footer-partner-logo {
  width: 150px;
  height: 54px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-partner-logo img {
  width: 138px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.95;
  filter: grayscale(1) brightness(2.4);
}

.footer-partner-logo img[src*="rumah-bumn"] {
  width: 142px;
  height: 50px;
}

.footer-partner-logo img[src*="bri"] {
  width: 142px;
  height: 38px;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-logo {
    height: 62px;
  }

  .nav-logo-img {
    width: 112px;
    height: auto;
  }

  .nav-menu-logo {
    width: 112px;
    height: 112px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-menu-logo img {
    width: 132px;
    height: auto;
    border-radius: 0;
  }

  .partner-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .partner-mark {
    height: 64px;
  }

  .partner-mark img,
  .partner-mark img[src*="rumah-bumn"],
  .partner-mark img[src*="bri"] {
    max-width: 100%;
    width: 100%;
    height: 54px;
  }

  .about {
    padding-top: 68px;
  }

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

  .product-card {
    min-height: 368px;
    padding: 12px;
  }

  .product-media {
    height: 150px;
  }

  .product-media img {
    width: min(92%, 156px);
    height: 150px;
  }

  .product-info p {
    min-height: 48px;
  }

  .product-prices {
    min-height: 48px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-copy {
    position: static;
  }

  .footer {
    padding-top: 50px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 560px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-logo {
    height: 58px;
  }

  .nav-logo-img {
    width: 104px;
    height: auto;
  }

  .partners {
    padding: 62px 0 54px;
  }

  .container,
  .hero-container,
  .nav-container {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
  }

  .hero-copy,
  .hero-copy > p,
  .hero-actions,
  .cta-actions {
    max-width: calc(100vw - 44px);
    overflow-wrap: anywhere;
  }

  .hero-copy > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .btn {
    box-sizing: border-box;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-visual {
    max-width: calc(100vw - 44px);
    overflow: hidden;
  }

  .hero-note {
    right: auto;
    left: 50%;
    bottom: 4px;
    width: 146px;
    max-width: 146px;
    transform: translateX(-50%);
  }

  .partner-logos {
    gap: 8px;
  }

  .partner-mark {
    height: 52px;
  }

  .partner-mark img,
  .partner-mark img[src*="rumah-bumn"],
  .partner-mark img[src*="bri"] {
    height: 42px;
  }

  .about {
    padding: 58px 0 64px;
  }

  .product-card {
    min-height: 354px;
    padding: 10px;
  }

  .product-grid {
    gap: 16px 12px;
  }

  .product-media {
    height: 136px;
  }

  .product-media img {
    height: 136px;
  }

  .product-prices {
    min-height: 44px;
  }

  .product-order {
    min-width: 0;
  }

  .product-actions {
    margin-top: auto;
  }

  .floating-group {
    right: 10px;
    bottom: 12px;
    grid-template-columns: repeat(2, 42px);
    gap: 7px;
  }

  .floating-btn {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    box-shadow: 0 4px 0 var(--black);
  }

  .floating-btn svg,
  .floating-btn img {
    width: 21px;
    height: 21px;
  }

  .testimonial-card {
    flex-basis: 268px;
    min-height: 224px;
  }

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 34px;
  }

  .footer {
    padding-top: 42px;
  }

  .footer-logo,
  .footer-logo-img {
    width: 148px;
    height: auto;
  }

  .footer-bottom {
    margin-top: 24px;
    padding-bottom: 18px;
  }
}

/* Requested UI polish */
.hero {
  overflow: hidden;
}

.hero-visual {
  overflow: visible;
}

.hero-visual::before {
  inset: 5% 2% 3% 2%;
}

.hero-visual::after {
  inset: 5% 5% 13% 8%;
}

.eyebrow {
  border: 2px solid rgba(20, 20, 20, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #fff7cf 100%);
  box-shadow: 0 5px 0 rgba(20, 20, 20, 0.85), 0 16px 28px rgba(20, 20, 20, 0.1);
  transform: rotate(-1deg);
}

.eyebrow svg {
  width: 22px;
  height: 22px;
  color: #e2a800;
  filter: drop-shadow(0 2px 0 rgba(20, 20, 20, 0.18));
}

.hero-nagih {
  display: inline-block;
  margin-left: 0.1em;
  padding: 0 0.18em 0.06em;
  border-radius: 14px;
  color: var(--black);
  background: linear-gradient(180deg, #ffe47a 0%, #ffc72c 100%);
  box-shadow: inset 0 -0.12em 0 rgba(255, 255, 255, 0.42), 0 0.08em 0 var(--black);
  transform: rotate(-1.5deg);
}

.partners {
  padding: 96px 0 104px;
  background:
    linear-gradient(135deg, rgba(255, 199, 44, 0.1) 0 25%, transparent 25% 50%, rgba(255, 199, 44, 0.1) 50% 75%, transparent 75%) 0 0 / 34px 34px,
    linear-gradient(180deg, #f8fff0 0%, #eff9e8 100%);
  color: var(--black);
}

.partners .section-tag {
  color: var(--leaf-dark);
}

.partners h2 {
  color: var(--black);
}

.partners .section-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.partners .section-header p {
  display: block;
  max-width: 680px;
  margin: 12px auto 0;
  color: #495044;
  font-size: 16px;
}

.partner-logos {
  max-width: 1040px;
  gap: 22px;
}

.partner-logo {
  display: grid;
  min-height: 150px;
  padding: 26px 24px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.08);
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(20, 20, 20, 0.12);
}

.partner-mark {
  width: 100%;
  height: 94px;
  overflow: visible;
}

.partner-mark img {
  max-width: 220px;
  width: 100%;
  height: 82px;
  filter: none;
}

.partner-dekatlokal .partner-logo-neutral {
  filter: none;
}

.partner-mark img[src*="rumah-bumn"] {
  max-width: 220px;
  width: 100%;
  height: 88px;
}

.partner-mark img[src*="bri"] {
  max-width: 230px;
  width: 100%;
  height: 64px;
}

.about {
  margin-top: 0;
  padding: 104px 0 112px;
  background:
    linear-gradient(135deg, rgba(143, 23, 66, 0.1) 0 25%, transparent 25% 50%, rgba(143, 23, 66, 0.1) 50% 75%, transparent 75%) 0 0 / 38px 38px,
    linear-gradient(180deg, #fff4bf 0%, #ffc72c 100%);
}

.about::before,
.about::after {
  display: none;
}

.products {
  padding: 88px 0 94px;
}

.products .section-header {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.product-card {
  min-height: 0;
  padding: 24px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.08);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(20, 20, 20, 0.12);
}

.product-media {
  height: 280px;
  margin-bottom: 18px;
}

.product-media img {
  width: min(78%, 260px);
  height: 270px;
}

.product-info h3 {
  font-size: 24px;
}

.product-info p {
  min-height: 48px;
  font-size: 15px;
}

.product-prices {
  min-height: 36px;
  gap: 8px;
}

.product-prices span {
  min-height: 30px;
  padding: 5px 10px;
  font-size: 12px;
}

.product-order,
.icon-btn {
  min-height: 44px;
  height: 44px;
}

.icon-btn {
  width: 44px;
  border-radius: 50%;
  place-items: center;
}

.shopee-btn img {
  width: 25px;
  height: 25px;
}

.testimonial-card .quote-mark {
  display: none;
}

.testimonial-avatar {
  border-radius: 50%;
}

.faq {
  overflow: visible;
}

.faq-grid {
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 112px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 102px 0 108px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 25%, transparent 25% 50%, rgba(255, 255, 255, 0.12) 50% 75%, transparent 75%) 0 0 / 44px 44px,
    radial-gradient(ellipse at 12% 20%, rgba(255, 199, 44, 0.34), transparent 34%),
    linear-gradient(135deg, #125f38 0%, #1f8f4f 48%, #ffc72c 100%);
}

.cta::before,
.cta::after {
  display: block;
  content: "";
  position: absolute;
  pointer-events: none;
}

.cta::before {
  inset: 22px auto auto 7%;
  width: 130px;
  height: 76px;
  border-radius: 48% 52% 44% 56%;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(20, 20, 20, 0.14) 43% 47%, transparent 48%),
    #ffd85e;
  box-shadow: 0 16px 0 rgba(20, 20, 20, 0.08);
  transform: rotate(-14deg);
  animation: ctaFloat 5.8s ease-in-out infinite;
}

.cta::after {
  right: 8%;
  bottom: 28px;
  width: 170px;
  height: 18px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0 18px, transparent 18px 32px);
  animation: ctaSlide 8s linear infinite;
}

.cta-inner {
  display: grid;
  justify-items: center;
  max-width: 900px;
  padding: 46px 36px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(20, 20, 20, 0.16);
}

.cta .section-tag,
.cta h2,
.cta p {
  color: #ffffff;
}

.cta p {
  max-width: 560px;
}

.cta-actions {
  gap: 14px;
}

.btn-shopee img {
  filter: brightness(0);
}

.floating-btn,
.footer-socials a {
  display: grid;
  place-items: center;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 50%;
}

.floating-btn {
  width: 54px;
  min-width: 54px;
  height: 54px;
}

.floating-btn svg,
.floating-btn img,
.footer-socials svg,
.footer-socials img {
  width: 24px;
  height: 24px;
  margin: 0;
  object-fit: contain;
}

.footer-socials a {
  width: 46px;
  height: 46px;
}

.footer-logo {
  display: grid;
  place-items: center;
  width: 178px;
  height: 104px;
  padding: 12px 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.footer-logo-img {
  width: 142px;
  height: auto;
  object-fit: contain;
}

.footer-partner-logos {
  justify-items: start;
}

.footer-partner-logo {
  display: grid;
  place-items: center start;
  width: 190px;
  height: 58px;
  padding: 0;
}

.footer-partner-logo img {
  width: 160px;
  height: 44px;
  object-position: left center;
}

.footer-partner-logo img[src*="rumah-bumn"] {
  width: 178px;
  height: 56px;
}

.footer-bottom {
  padding-bottom: 34px;
}

@keyframes ctaFloat {
  0%,
  100% {
    transform: rotate(-14deg) translateY(0);
  }
  50% {
    transform: rotate(-9deg) translateY(-14px);
  }
}

@keyframes ctaSlide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 64px 0;
  }
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-menu-logo {
    width: 128px;
    height: 92px;
    padding: 10px 14px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 5px 0 rgba(255, 199, 44, 0.95);
  }

  .nav-menu-logo img {
    width: 108px;
    height: auto;
    object-fit: contain;
  }

  .partners {
    padding: 76px 0 82px;
  }

  .partner-logos {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .partner-logo {
    min-height: 132px;
  }

  .about {
    padding: 82px 0 88px;
  }

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

  .product-card {
    min-height: 0;
    padding: 16px;
  }

  .product-media {
    height: 210px;
  }

  .product-media img {
    width: min(84%, 210px);
    height: 205px;
  }

  .product-info h3 {
    font-size: 20px;
  }

  .faq-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-brand,
  .footer-column {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-visual {
    overflow: visible;
  }

  .eyebrow {
    transform: none;
  }

  .hero-nagih {
    border-radius: 10px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card {
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
    padding: 18px;
  }

  .product-media {
    height: 240px;
  }

  .product-media img {
    width: min(82%, 235px);
    height: 232px;
  }

  .product-info h3 {
    font-size: 22px;
  }

  .product-info p,
  .product-prices {
    min-height: 0;
  }

  .cta {
    padding: 80px 0 86px;
  }

  .cta::before {
    left: 16px;
    top: 20px;
    width: 108px;
    height: 64px;
  }

  .cta::after {
    right: -24px;
    bottom: 24px;
    width: 132px;
  }

  .cta-inner {
    padding: 34px 20px;
    border-radius: 18px;
  }

  .floating-group {
    grid-template-columns: repeat(2, 46px);
  }

  .floating-btn {
    width: 46px;
    min-width: 46px;
    height: 46px;
  }

  .floating-btn svg,
  .floating-btn img {
    width: 22px;
    height: 22px;
  }

  .footer {
    padding-top: 54px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo {
    width: 172px;
    height: 98px;
  }

  .footer-logo-img {
    width: 136px;
  }

  .footer-partner-logo {
    width: 190px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-bottom: 36px;
  }
}

/* Clean modern section refinements */
.partners,
.about,
.cta {
  background-size: auto;
}

.partners .section-pattern,
.about .section-pattern,
.cta .section-pattern {
  display: none;
}

.partners {
  background:
    radial-gradient(ellipse at 12% 10%, rgba(255, 199, 44, 0.18), transparent 34%),
    linear-gradient(180deg, #fbfff7 0%, #eef8e9 100%);
}

.partner-logos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  max-width: 940px;
  gap: clamp(22px, 5vw, 72px);
}

.partner-logo {
  min-height: 118px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.partner-mark {
  height: 116px;
  overflow: visible;
}

.partner-mark img {
  max-width: 280px;
  height: 92px;
  object-fit: contain;
  transform: scale(1.42);
  transform-origin: center;
}

.partner-mark img[src*="rumah-bumn"] {
  max-width: 290px;
  height: 104px;
  transform: scale(1.52);
}

.partner-mark img[src*="bri"] {
  max-width: 270px;
  height: 72px;
  transform: scale(1.36);
}

.about {
  background:
    radial-gradient(ellipse at 14% 18%, rgba(255, 255, 255, 0.52), transparent 32%),
    linear-gradient(180deg, #fff9dc 0%, #ffdb68 58%, #ffc72c 100%);
}

.testimonial-card::before,
.testimonial-card p::before,
.testimonial-card .quote-mark,
.quote-mark {
  display: none;
  content: none;
}

.testimonial-card {
  padding-top: 22px;
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 5px 0 rgba(20, 20, 20, 0.16);
}

.testimonial-card strong {
  position: static;
  margin-top: 10px;
  font-size: 17px;
}

.testimonial-card span:last-child {
  position: static;
}

.product-media {
  overflow: visible;
  isolation: isolate;
}

.product-media::before,
.product-card:nth-child(2n) .product-media::before,
.product-card:nth-child(3n) .product-media::before {
  left: 50%;
  top: 54%;
  right: auto;
  bottom: auto;
  width: min(82%, 320px);
  height: 58%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 225, 117, 0.5) 0 42%, rgba(255, 225, 117, 0.18) 43% 62%, transparent 63%),
    radial-gradient(ellipse at center, rgba(20, 20, 20, 0.08), transparent 68%);
  transform: translate(-50%, -50%);
}

.product-card:nth-child(2n) .product-media::before {
  background:
    radial-gradient(ellipse at center, rgba(185, 153, 103, 0.32) 0 42%, rgba(185, 153, 103, 0.12) 43% 62%, transparent 63%),
    radial-gradient(ellipse at center, rgba(20, 20, 20, 0.08), transparent 68%);
}

.product-card:nth-child(3n) .product-media::before {
  background:
    radial-gradient(ellipse at center, rgba(134, 198, 255, 0.34) 0 42%, rgba(134, 198, 255, 0.12) 43% 62%, transparent 63%),
    radial-gradient(ellipse at center, rgba(20, 20, 20, 0.08), transparent 68%);
}

.cta {
  background: linear-gradient(120deg, #125f38, #1f8f4f, #ffc72c, #1f8f4f);
  background-size: 240% 240%;
  animation: ctaGradient 9s ease-in-out infinite;
}

.cta::before,
.cta::after {
  display: none;
}

.cta-inner {
  background: rgba(255, 255, 255, 0.13);
}

.btn,
.btn-shopee {
  gap: 12px;
}

.btn[href*="wa.me"]::before,
.product-order::before {
  margin-right: 0;
}

.cta-actions {
  gap: 22px;
}

.faq-copy {
  position: sticky;
  top: 112px;
  z-index: 2;
}

@keyframes ctaGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 820px) {
  .partner-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    gap: 12px;
  }

  .partner-logo {
    min-height: 86px;
  }

  .partner-mark {
    height: 86px;
  }

  .partner-mark img,
  .partner-mark img[src*="rumah-bumn"],
  .partner-mark img[src*="bri"] {
    width: 100%;
    max-width: 96px;
    height: 58px;
    transform: scale(1.08);
  }

  .partner-mark img[src*="rumah-bumn"] {
    max-width: 98px;
    transform: scale(1.12);
  }

  .partner-mark img[src*="bri"] {
    max-width: 96px;
    height: 44px;
    transform: scale(1.05);
  }

  .faq-copy {
    position: sticky;
    top: 82px;
    padding: 14px 0 16px;
    background: linear-gradient(180deg, #fffaf0 0%, rgba(255, 250, 240, 0.92) 82%, rgba(255, 250, 240, 0) 100%);
  }

  .cta-actions {
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .partner-logos {
    gap: 8px;
  }

  .partner-mark img,
  .partner-mark img[src*="rumah-bumn"],
  .partner-mark img[src*="bri"] {
    max-width: 88px;
    height: 48px;
    transform: scale(1.05);
  }

  .partner-mark img[src*="rumah-bumn"] {
    max-width: 92px;
    height: 54px;
    transform: scale(1.1);
  }

  .partner-mark img[src*="bri"] {
    max-width: 88px;
    height: 36px;
    transform: scale(1.04);
  }

  .cta-actions {
    gap: 14px;
  }
}
