@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --ink: #12231d;
  --ink-soft: #52635c;
  --green-950: #0c2b20;
  --green-900: #123b2d;
  --green-800: #18513a;
  --green-700: #23734d;
  --green-600: #319361;
  --green-100: #dcebdd;
  --green-50: #eff6ec;
  --lime: #d9f59c;
  --lime-strong: #bde96c;
  --cream: #f7f4eb;
  --sand: #eee8da;
  --white: #ffffff;
  --line: rgba(18, 59, 45, 0.13);
  --shadow-sm: 0 10px 30px rgba(16, 45, 34, 0.08);
  --shadow-md: 0 24px 70px rgba(16, 45, 34, 0.13);
  --shadow-lg: 0 38px 100px rgba(10, 35, 25, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--green-700) var(--cream);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  min-height: 56px;
  border: 3px solid var(--cream);
  border-radius: 999px;
  background: var(--green-700);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-900);
}

::selection {
  color: var(--white);
  background: var(--green-700);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  color: inherit;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

p {
  color: var(--ink-soft);
}

:focus-visible {
  outline: 3px solid rgba(49, 147, 97, 0.42);
  outline-offset: 4px;
}

section[id] {
  scroll-margin-top: 96px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 5000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-150%);
  transition: transform .25s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 26px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
}

.section-kicker--light {
  color: var(--lime-strong);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, .68);
  font-size: 1.02rem;
}

.section-heading--dark h2 {
  color: var(--ink);
}

.section-heading--dark > p {
  color: var(--ink-soft);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform .3s var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button--primary {
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 14px 28px rgba(18, 59, 45, .22);
}

.button--primary:hover {
  background: var(--green-700);
  box-shadow: 0 18px 34px rgba(18, 59, 45, .27);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, .7);
}

.button--ghost:hover {
  border-color: var(--green-700);
  color: var(--green-700);
  background: var(--white);
}

.button--dark {
  color: var(--white);
  background: var(--green-950);
}

.button--dark:hover {
  background: var(--green-700);
}

.button--lime {
  color: var(--green-950);
  background: var(--lime);
}

.button--lime:hover {
  background: var(--lime-strong);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 9px 10px 9px 14px;
  border: 1px solid rgba(18, 59, 45, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 38px rgba(18, 50, 39, .07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: auto;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}

.site-header.scrolled .nav-shell {
  border-color: rgba(18, 59, 45, .14);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 15px 46px rgba(18, 50, 39, .12);
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--white);
  object-fit: cover;
  object-position: center;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  color: var(--green-900);
  font-size: .98rem;
  letter-spacing: -.02em;
}

.brand-copy small {
  color: var(--green-600);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 12px;
  color: #3f5049;
  font-size: .82rem;
  font-weight: 700;
  transition: color .25s var(--ease), background .25s var(--ease);
}

.nav-link::after {
  position: absolute;
  right: 14px;
  bottom: 7px;
  left: 14px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--green-700);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-800);
  background: var(--green-50);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 19px;
  border-radius: 14px;
  color: var(--white);
  background: var(--green-900);
  font-size: .82rem;
  font-weight: 800;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.nav-cta:hover {
  background: var(--green-700);
  transform: translateY(-1px);
}

.nav-cta svg {
  width: 18px;
  height: 18px;
}

.menu-toggle,
.menu-close {
  width: 50px;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle {
  margin-left: auto;
  color: var(--white);
  background: var(--green-900);
}

.menu-toggle svg,
.menu-close svg {
  width: 24px;
  height: 24px;
}

.mobile-panel {
  position: fixed;
  z-index: 2100;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 18px clamp(22px, 5vw, 42px) max(24px, env(safe-area-inset-bottom));
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 15%, rgba(189, 233, 108, .38), transparent 25%),
    radial-gradient(circle at 10% 88%, rgba(49, 147, 97, .13), transparent 28%),
    var(--cream);
  transform: translateX(100%);
  transition: transform .52s var(--ease), visibility 0s linear .52s;
}

.mobile-panel.is-open {
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.mobile-panel::after {
  position: absolute;
  z-index: -1;
  right: -80px;
  bottom: 12%;
  width: 240px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(18, 59, 45, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(18, 59, 45, .035), 0 0 0 68px rgba(18, 59, 45, .025);
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-close {
  display: inline-flex;
  color: var(--green-950);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.mobile-nav {
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 30px 0;
}

.mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(18, 59, 45, .11);
  border-radius: 6px;
  color: var(--green-950);
  font-size: clamp(1.7rem, 7vw, 3rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.18;
  opacity: 0;
  transform: translateX(44px);
  transition: color .25s var(--ease), padding-left .25s var(--ease), opacity .45s var(--ease), transform .45s var(--ease);
}

.mobile-nav a span {
  color: var(--green-600);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  padding-left: 12px;
  color: var(--green-700);
}

.mobile-panel.is-open .mobile-nav a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-panel.is-open .mobile-nav a:nth-child(1) { transition-delay: .12s; }
.mobile-panel.is-open .mobile-nav a:nth-child(2) { transition-delay: .16s; }
.mobile-panel.is-open .mobile-nav a:nth-child(3) { transition-delay: .2s; }
.mobile-panel.is-open .mobile-nav a:nth-child(4) { transition-delay: .24s; }
.mobile-panel.is-open .mobile-nav a:nth-child(5) { transition-delay: .28s; }
.mobile-panel.is-open .mobile-nav a:nth-child(6) { transition-delay: .32s; }

.mobile-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mobile-order {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 19px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-900);
  font-size: .83rem;
  font-weight: 800;
}

.mobile-order svg {
  width: 19px;
  height: 19px;
}

.powered-link {
  color: var(--ink-soft);
  font-size: .8rem;
  font-weight: 600;
}

.powered-link strong {
  color: #208acb;
}

.hero {
  position: relative;
  min-height: 880px;
  display: flex;
  align-items: center;
  padding: 142px 0 124px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .92) 0%, rgba(247, 244, 235, .96) 46%, rgba(220, 235, 221, .94) 100%),
    var(--cream);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(18, 59, 45, .1) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, .22), transparent 38%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero-orb--one {
  top: -180px;
  right: -110px;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(18, 59, 45, .1);
  box-shadow: 0 0 0 60px rgba(255, 255, 255, .18), 0 0 0 120px rgba(49, 147, 97, .035);
}

.hero-orb--two {
  bottom: -260px;
  left: -160px;
  width: 480px;
  height: 480px;
  background: rgba(189, 233, 108, .16);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(54px, 6vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: hero-in .75s var(--ease) both;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 12px 8px 9px;
  border: 1px solid rgba(18, 59, 45, .12);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, .66);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.eyebrow svg {
  width: 27px;
  height: 27px;
  padding: 5px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--green-950);
  font-size: clamp(3.2rem, 5.7vw, 5.65rem);
  line-height: .98;
}

.hero h1 span {
  display: block;
  color: var(--green-600);
}

.hero-copy > p {
  max-width: 610px;
  margin-bottom: 31px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  max-width: 610px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  display: grid;
  gap: 2px;
}

.hero-facts strong {
  color: var(--green-900);
  font-size: .98rem;
}

.hero-facts span {
  color: #5f7068;
  font-size: .72rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  z-index: 1;
  padding: 26px 0 30px;
  animation: hero-in .9s .12s var(--ease) both;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: -24px 4% -20px 7%;
  content: "";
  border-radius: 45% 55% 45% 55% / 54% 38% 62% 46%;
  background: var(--green-800);
  transform: rotate(-3deg);
}

.hero-visual::after {
  position: absolute;
  z-index: -2;
  top: 2%;
  right: -2%;
  width: 72%;
  height: 72%;
  content: "";
  border: 1px solid rgba(18, 59, 45, .18);
  border-radius: 50%;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 36px 36px 125px 36px;
  background: rgba(255, 255, 255, .23);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-image-frame img {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(114% - 20px);
  max-width: none;
  height: calc(100% - 20px);
  border-radius: 28px 28px 115px 28px;
  object-fit: cover;
  object-position: center;
  animation: hero-photo-pan 18s cubic-bezier(.45, 0, .2, 1) infinite;
  will-change: transform;
}

@keyframes hero-photo-pan {
  0%, 8%, 100% {
    transform: translate3d(0, 0, 0);
  }

  46%, 54% {
    transform: translate3d(-12.3%, 0, 0);
  }
}

@media (hover: hover) {
  .hero-image-frame:hover img {
    animation-play-state: paused;
  }
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 11px 14px 11px 11px;
  border: 1px solid rgba(18, 59, 45, .1);
  border-radius: 15px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-md);
  animation: float-soft 5s ease-in-out infinite;
}

.floating-note--top {
  top: -2px;
  right: -15px;
}

.floating-note--bottom {
  bottom: -4px;
  left: -22px;
  animation-delay: -2.4s;
}

.floating-note .note-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--white);
  background: var(--green-700);
}

.floating-note svg {
  width: 21px;
  height: 21px;
}

.floating-note > span:last-child {
  display: grid;
  line-height: 1.25;
}

.floating-note small {
  color: #75847d;
  font-size: .64rem;
  font-weight: 600;
}

.floating-note strong {
  color: var(--green-950);
  font-size: .77rem;
}

.hero-seal {
  position: absolute;
  z-index: 3;
  right: -16px;
  bottom: 38px;
  width: 92px;
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: auto auto;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(18, 59, 45, .14);
  border-radius: 50%;
  color: var(--green-900);
  background: var(--lime);
  box-shadow: var(--shadow-sm);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.05;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.hero-seal svg {
  width: 22px;
  height: 22px;
}

.scroll-cue {
  position: absolute;
  bottom: 35px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-900);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 21px;
  height: 32px;
  border: 1px solid rgba(18, 59, 45, .38);
  border-radius: 999px;
}

.scroll-cue i::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: var(--green-700);
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

.partners {
  position: relative;
  z-index: 4;
  padding-bottom: 32px;
  background: var(--white);
}

.partners-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 64px;
  margin-top: -42px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.partners-copy h2 {
  max-width: 500px;
  margin-bottom: 16px;
  color: var(--green-950);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.partners-copy p {
  max-width: 580px;
  margin-bottom: 0;
  font-size: .94rem;
}

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

.partner-logo {
  height: 112px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(18, 59, 45, .09);
  border-radius: 18px;
  background: var(--green-50);
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.partner-logo:hover {
  border-color: rgba(18, 59, 45, .2);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.partner-logo img {
  width: auto;
  max-width: 100%;
  height: 50px;
  object-fit: contain;
  filter: grayscale(1) opacity(.58);
  transition: filter .35s var(--ease), transform .35s var(--ease);
}

.partner-logo:nth-child(2) img {
  height: 70px;
}

.partner-logo:nth-child(3) img {
  height: 38px;
}

.partner-logo--dekat:hover img,
.partner-logo--dekat:focus-visible img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(89%) saturate(1027%) hue-rotate(169deg) brightness(92%) contrast(96%);
  transform: scale(1.04);
}

.about {
  overflow: hidden;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  align-items: center;
  gap: clamp(64px, 8vw, 110px);
}

.about-media {
  position: relative;
  min-height: 620px;
}

.about-media::before {
  position: absolute;
  top: 38px;
  left: 20px;
  width: 76%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: var(--green-50);
}

.about-photo {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}

.about-photo:hover img {
  transform: scale(1.035);
}

.about-photo--main {
  top: 0;
  left: 0;
  width: 76%;
  height: 510px;
  border-radius: 120px 30px 30px 30px;
}

.about-photo--main img {
  object-position: center;
}

.about-photo--small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 275px;
  border: 8px solid var(--white);
  border-radius: 26px 26px 95px 26px;
}

.about-number {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 3%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 17px;
  border-radius: 16px;
  color: var(--green-950);
  background: var(--lime);
  box-shadow: var(--shadow-sm);
}

.about-number strong {
  font-size: 2.5rem;
  line-height: 1;
}

.about-number span {
  font-size: .65rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-bottom: 25px;
  color: var(--green-950);
  font-size: clamp(2.35rem, 4.6vw, 4.15rem);
}

.about-copy > p {
  margin-bottom: 34px;
  font-size: 1rem;
}

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

.benefit-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 12px;
}

.benefit-item > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--green-700);
  background: var(--green-50);
}

.benefit-item svg {
  width: 22px;
  height: 22px;
}

.benefit-item div {
  display: grid;
  gap: 3px;
}

.benefit-item strong {
  color: var(--ink);
  font-size: .88rem;
}

.benefit-item small {
  color: #5f7068;
  font-size: .72rem;
  line-height: 1.45;
}

.advantages {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.advantages::before {
  position: absolute;
  top: -210px;
  right: -160px;
  width: 520px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .018), 0 0 0 140px rgba(255, 255, 255, .012);
}

.advantage-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.advantage-card {
  position: relative;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 24px;
  background: rgba(255, 255, 255, .045);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

.advantage-card:hover {
  border-color: rgba(217, 245, 156, .5);
  background: rgba(255, 255, 255, .08);
  transform: translateY(-7px);
}

.card-index {
  align-self: flex-end;
  color: rgba(255, 255, 255, .38);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.card-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  margin: 22px 0 auto;
  border-radius: 17px;
  color: var(--green-950);
  background: var(--lime);
}

.card-icon svg {
  width: 27px;
  height: 27px;
}

.advantage-card h3 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.advantage-card p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .83rem;
}

.products {
  overflow: hidden;
  background: var(--cream);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(18, 59, 45, .05);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.product-card:hover {
  border-color: rgba(35, 115, 77, .32);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.product-card--featured {
  border-color: rgba(35, 115, 77, .34);
  box-shadow: 0 20px 52px rgba(18, 59, 45, .12);
  transform: translateY(-14px);
}

.product-card--featured:hover {
  transform: translateY(-20px);
}

.product-visual {
  position: relative;
  height: 286px;
  overflow: hidden;
  background-color: #eff3e9;
  background-image: url("../assets/produk-sipatuo.jpg");
  background-repeat: no-repeat;
  background-size: 300% auto;
}

.product-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(to top, rgba(12, 43, 32, .3), transparent);
  pointer-events: none;
}

.product-visual--left { background-position: left 48%; }
.product-visual--center { background-position: center 47%; }
.product-visual--right { background-position: right 48%; }

.product-tag {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--lime);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-body {
  padding: 26px;
}

.product-type {
  margin-bottom: 6px;
  color: var(--green-600);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-body h3 {
  margin-bottom: 21px;
  color: var(--green-950);
  font-size: 1.42rem;
}

.product-body ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.product-body li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: .76rem;
}

.product-body li svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  padding: 3px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-600);
}

.product-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 23px;
}

.product-foot p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.product-foot small {
  color: #5f7068;
  font-size: .65rem;
  font-weight: 600;
}

.product-foot strong {
  color: var(--green-900);
  font-size: 1.35rem;
  letter-spacing: -.035em;
}

.product-foot > a {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-900);
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.product-foot > a:hover {
  background: var(--green-600);
  transform: rotate(-8deg) scale(1.06);
}

.product-foot svg {
  width: 19px;
  height: 19px;
}

.order-flow {
  padding: 46px 0;
  color: var(--white);
  background: var(--green-800);
}

.order-flow-inner {
  display: grid;
  grid-template-columns: .7fr 1.5fr;
  align-items: center;
  gap: 55px;
}

.order-title span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.order-title h2 {
  max-width: 340px;
  margin: 0;
  font-size: 1.8rem;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
}

.order-steps li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -11px;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 1px solid rgba(255, 255, 255, .45);
  border-right: 1px solid rgba(255, 255, 255, .45);
  transform: translateY(-50%) rotate(45deg);
}

.order-steps li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--green-950);
  background: var(--lime);
}

.order-steps svg {
  width: 22px;
  height: 22px;
}

.order-steps div {
  display: grid;
  gap: 2px;
  line-height: 1.25;
}

.order-steps small {
  color: rgba(255, 255, 255, .46);
  font-size: .58rem;
  font-weight: 800;
}

.order-steps strong {
  font-size: .75rem;
}

.payment {
  overflow: hidden;
  background: var(--white);
}

.payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(65px, 9vw, 125px);
}

.payment-copy h2 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--green-950);
  font-size: clamp(2.4rem, 4.8vw, 4.35rem);
}

.payment-copy > p {
  max-width: 650px;
  margin-bottom: 30px;
}

.payment-points {
  max-width: 620px;
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.payment-points > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 13px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fcfdfb;
}

.payment-points > div > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--green-700);
  background: var(--green-50);
}

.payment-points svg {
  width: 22px;
  height: 22px;
}

.payment-points div div {
  display: grid;
  gap: 1px;
}

.payment-points strong {
  color: var(--ink);
  font-size: .83rem;
}

.payment-points small {
  color: #5f7068;
  font-size: .71rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  font-size: .84rem;
  font-weight: 800;
}

.qris-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.qris-wrap::before {
  position: absolute;
  z-index: -1;
  width: 118%;
  aspect-ratio: 1;
  content: "";
  border-radius: 48% 52% 44% 56%;
  background: var(--green-50);
  transform: rotate(8deg);
}

.qris-card {
  width: min(100%, 385px);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.qris-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 2px 2px 13px;
  color: var(--green-950);
  font-size: .73rem;
  font-weight: 800;
}

.secure-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--green-700);
  background: var(--green-50);
  font-size: .6rem;
}

.secure-pill svg {
  width: 14px;
  height: 14px;
}

.qris-card > img {
  width: 100%;
  max-height: 490px;
  border: 1px solid rgba(18, 59, 45, .08);
  border-radius: 17px;
  object-fit: contain;
  background: var(--white);
}

.qris-card > p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: .66rem;
  font-weight: 700;
}

.qris-card > p span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 4px var(--green-50);
}

.story {
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  grid-template-rows: repeat(2, 278px);
  gap: 16px;
}

.story-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.story-photo--tall {
  grid-row: 1 / 3;
  border-radius: 90px 22px 22px 22px;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .65s var(--ease);
}

.story-photo:hover img {
  filter: saturate(1.05);
  transform: scale(1.04);
}

.story-photo figcaption {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 13px;
  color: var(--white);
  background: rgba(12, 43, 32, .72);
  backdrop-filter: blur(7px);
  font-size: .72rem;
  font-weight: 800;
}

.story-photo figcaption span {
  color: var(--lime);
  font-size: .58rem;
}

.owner-quote {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 17px 21px;
  margin: 0;
  padding: 30px;
  border-radius: 22px 22px 78px 22px;
  color: var(--white);
  background: var(--green-900);
}

.owner-quote > svg {
  width: 34px;
  height: 34px;
  align-self: start;
  color: var(--lime);
}

.owner-quote > p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.02rem, 2vw, 1.42rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.45;
}

.owner-quote footer {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 11px;
}

.owner-quote footer img {
  width: 43px;
  height: 43px;
  border: 2px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
}

.owner-quote footer span {
  display: grid;
  line-height: 1.25;
}

.owner-quote footer strong {
  font-size: .75rem;
}

.owner-quote footer small {
  color: rgba(255, 255, 255, .58);
  font-size: .62rem;
}

.testimonials {
  overflow: hidden;
  background: var(--green-50);
}

.testimonial-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.testimonial-heading .section-kicker::before {
  display: none;
}

.testimonial-heading h2 {
  margin-bottom: 19px;
  color: var(--green-950);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.testimonial-heading p {
  max-width: 610px;
  margin: 0 auto;
}

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

.testimonial-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(18, 59, 45, .05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.testimonial-card--accent {
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-13px);
}

.testimonial-card--accent:hover {
  transform: translateY(-20px);
}

.rating {
  display: flex;
  gap: 4px;
  margin-bottom: 30px;
  color: #e8a72e;
}

.rating svg {
  width: 17px;
  height: 17px;
}

.testimonial-card > p {
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.75;
}

.testimonial-card--accent > p {
  color: var(--white);
}

.testimonial-card footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green-900);
  background: var(--lime);
  font-size: .72rem;
  font-weight: 800;
}

.testimonial-card footer > span:nth-child(2) {
  display: grid;
  line-height: 1.35;
}

.testimonial-card footer strong {
  color: var(--ink);
  font-size: .77rem;
}

.testimonial-card footer small {
  color: #5f7068;
  font-size: .63rem;
}

.testimonial-card--accent footer strong {
  color: var(--white);
}

.testimonial-card--accent footer small {
  color: rgba(255, 255, 255, .58);
}

.quote-mark {
  width: 27px;
  height: 27px;
  color: var(--green-100);
}

.testimonial-card--accent .quote-mark {
  color: rgba(217, 245, 156, .45);
}

.swipe-hint {
  display: none;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(60px, 9vw, 120px);
}

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

.faq-intro h2 {
  margin-bottom: 22px;
  color: var(--green-950);
  font-size: clamp(2.3rem, 4.5vw, 4rem);
}

.faq-intro p {
  margin-bottom: 29px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  overflow: clip;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}

.faq-item.is-animating {
  overflow: hidden;
  will-change: height;
}

.faq-item[open] {
  border-color: rgba(35, 115, 77, .25);
  background: var(--green-50);
  box-shadow: 0 12px 35px rgba(18, 59, 45, .06);
}

.faq-item.is-collapsing {
  border-color: var(--line);
  background: var(--white);
  box-shadow: none;
}

.faq-item summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  gap: 22px;
  padding: 19px 21px 19px 25px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.45;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--green-800);
  background: var(--white);
  transition: color .3s var(--ease), background .3s var(--ease), transform .35s var(--ease);
}

.faq-item summary svg {
  width: 19px;
  height: 19px;
}

.faq-item[open] summary i {
  color: var(--white);
  background: var(--green-800);
  transform: rotate(180deg);
}

.faq-item.is-collapsing summary i {
  color: var(--green-800);
  background: var(--white);
  transform: none;
}

.faq-answer {
  padding: 0 84px 24px 25px;
}

.faq-answer p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.8;
}

.map-embed {
  position: relative;
  min-height: clamp(300px, 40vw, 380px);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 25px 25px clamp(78px, 8vw, 115px) 25px;
  overflow: hidden;
  background: #dfe8df;
  box-shadow: 0 22px 55px rgba(5, 28, 20, .24);
  isolation: isolate;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-embed__label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 285px;
  padding: 11px 14px;
  border: 1px solid rgba(18, 59, 45, .12);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 32px rgba(18, 59, 45, .2);
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.map-embed__label:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(18, 59, 45, .25);
}

.map-embed__label svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  color: var(--green-700);
}

.map-embed__label span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.map-embed__label small {
  color: var(--muted);
  font-size: .67rem;
  font-weight: 700;
}

.map-embed__label strong {
  overflow: hidden;
  font-size: .78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location {
  padding-top: 0;
  background: var(--white);
}

.location-card {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: stretch;
  gap: 55px;
  padding: 56px;
  border-radius: 36px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.location-copy {
  align-self: center;
}

.location-copy h2 {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: clamp(2.3rem, 4.7vw, 4.1rem);
}

.location-meta {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.location-meta > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
}

.location-meta svg {
  width: 23px;
  height: 23px;
  color: var(--lime);
}

.location-meta span {
  display: grid;
  gap: 1px;
  line-height: 1.4;
}

.location-meta small {
  color: rgba(255, 255, 255, .5);
  font-size: .61rem;
  font-weight: 700;
  text-transform: uppercase;
}

.location-meta strong {
  font-size: .78rem;
}

.site-footer {
  padding-top: 76px;
  color: var(--white);
  background: #091f18;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr .65fr 1.15fr;
  gap: 70px;
  padding-bottom: 64px;
}

.brand--footer .brand-copy strong {
  color: var(--white);
}

.brand--footer .brand-copy small {
  color: var(--lime-strong);
}

.footer-brand > p {
  max-width: 390px;
  margin: 22px 0 24px;
  color: rgba(255, 255, 255, .57);
  font-size: .8rem;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  transition: color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}

.footer-social a:hover {
  color: var(--green-950);
  background: var(--lime);
  transform: translateY(-3px);
}

.footer-social a.footer-social__instagram {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background:
    radial-gradient(circle at 28% 108%, #feda75 0 19%, #fa7e1e 34%, transparent 54%),
    linear-gradient(135deg, #4f5bd5 0%, #962fbf 38%, #d62976 67%, #fa7e1e 100%);
  box-shadow: 0 9px 24px rgba(214, 41, 118, .25);
}

.footer-social a.footer-social__instagram:hover,
.footer-social a.footer-social__instagram:focus-visible {
  color: #fff;
  background:
    radial-gradient(circle at 28% 108%, #feda75 0 19%, #fa7e1e 34%, transparent 54%),
    linear-gradient(135deg, #405de6 0%, #833ab4 38%, #e1306c 67%, #fd1d1d 100%);
  box-shadow: 0 13px 30px rgba(214, 41, 118, .4);
  transform: translateY(-3px);
}

.footer-social a.footer-social__instagram svg {
  width: 20px;
  height: 20px;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-links h3,
.footer-partners h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: .82rem;
  letter-spacing: -.01em;
}

.footer-links > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 20px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, .56);
  font-size: .75rem;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.footer-links a:hover {
  color: var(--lime);
  transform: translateX(3px);
}

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

.footer-partner-grid > * {
  height: 80px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
}

.footer-partner-grid img {
  width: auto;
  max-width: 100%;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(.7);
}

.footer-partner-grid > *:nth-child(2) img {
  height: 51px;
}

.footer-partner-grid > *:nth-child(3) img {
  height: 27px;
}

.footer-partner-grid > a {
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.footer-partner-grid > a:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-3px);
}

.footer-partner-grid > a:hover img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(91%) saturate(786%) hue-rotate(169deg) brightness(103%) contrast(93%);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .68rem;
  font-weight: 600;
}

.footer-bottom a strong {
  color: #58b8f1;
}

.social-rail {
  position: fixed;
  z-index: 850;
  top: 50%;
  right: 15px;
  display: grid;
  justify-items: end;
  gap: 8px;
  transform: translateY(-50%);
}

.social-pill {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 15px;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(10, 35, 25, .16);
  transition: width .38s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.social-pill:hover,
.social-pill:focus-visible {
  width: 148px;
  box-shadow: 0 16px 34px rgba(10, 35, 25, .22);
  transform: translateX(-2px);
}

.social-pill svg {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  padding: 14px;
}

.social-pill span {
  flex: 1 0 auto;
  padding-left: 17px;
  font-size: .72rem;
  font-weight: 800;
  opacity: 0;
  transform: translateX(9px);
  white-space: nowrap;
  transition: opacity .24s .05s var(--ease), transform .3s .05s var(--ease);
}

.social-pill:hover span,
.social-pill:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.social-pill--whatsapp { background: #25d366; }
.social-pill--facebook { background: #1877f2; }
.social-pill--shopee { background: #ee4d2d; }

.scroll-top {
  position: fixed;
  z-index: 840;
  right: 17px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: var(--green-900);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}

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

.scroll-top:hover {
  background: var(--green-600);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

.mobile-buy {
  display: none;
}

.section-reveal.reveal-ready {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.section-reveal.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translate(-50%, -2px); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 9px); }
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 40px, 1040px);
  }

  .nav-shell {
    gap: 18px;
  }

  .nav-link {
    padding-inline: 10px;
  }

  .nav-link::after {
    right: 10px;
    left: 10px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
    gap: 48px;
  }

  .partners-inner {
    gap: 38px;
    padding: 38px;
  }

  .about-grid {
    gap: 60px;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advantage-card {
    min-height: 285px;
  }

  .order-flow-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .order-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
  }

  .order-title span {
    margin: 0;
  }

  .payment-grid {
    gap: 60px;
  }

  .footer-main {
    gap: 40px;
  }
}

@media (max-width: 960px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding: 138px 0 128px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .partners-inner {
    grid-template-columns: 1fr;
  }

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

  .about-media {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .about-copy {
    max-width: 760px;
  }

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

  .product-card--featured {
    transform: none;
  }

  .product-card--featured:hover {
    transform: translateY(-8px);
  }

  .product-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }

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

  .payment-copy {
    max-width: 760px;
  }

  .qris-wrap {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 380px 270px 270px;
  }

  .story-photo--tall {
    grid-row: 1 / 3;
  }

  .story-photo:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .owner-quote {
    grid-column: 1 / 3;
    grid-row: 3;
  }

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

  .testimonial-card--accent {
    transform: none;
  }

  .testimonial-card--accent:hover {
    transform: translateY(-7px);
  }

  .testimonial-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }

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

  .faq-intro {
    position: static;
    max-width: 700px;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .map-embed {
    min-height: 340px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-partners {
    grid-column: 1 / -1;
  }

  .social-rail {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 70px;
  }

  .container {
    width: min(100% - 30px, 680px);
  }

  .section-pad {
    padding: 76px 0;
  }

  .site-header {
    top: 9px;
  }

  .nav-shell {
    min-height: 64px;
    padding: 7px 8px 7px 10px;
    border-radius: 17px;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
  }

  .brand img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .brand-copy strong {
    font-size: .9rem;
  }

  .brand-copy small {
    font-size: .58rem;
  }

  .brand--mobile .brand-copy {
    display: grid;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .hero {
    padding: 120px 0 108px;
  }

  .hero-grid {
    gap: 56px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.6rem);
  }

  .hero-copy > p {
    font-size: .96rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    padding-inline: 17px;
    font-size: .78rem;
  }

  .hero-facts {
    gap: 8px;
    margin-top: 30px;
  }

  .hero-facts strong {
    font-size: .8rem;
  }

  .hero-facts span {
    font-size: .61rem;
  }

  .hero-visual {
    padding-inline: 5px;
  }

  .hero-visual::before {
    inset: -16px 2% -15px 5%;
  }

  .hero-image-frame {
    padding: 7px;
    border-radius: 25px 25px 82px 25px;
  }

  .hero-image-frame img {
    top: 7px;
    left: 7px;
    width: calc(114% - 14px);
    height: calc(100% - 14px);
    border-radius: 20px 20px 75px 20px;
  }

  .floating-note {
    min-width: 158px;
    padding: 8px 10px 8px 8px;
  }

  .floating-note--top {
    top: -11px;
    right: -5px;
  }

  .floating-note--bottom {
    bottom: -14px;
    left: -5px;
  }

  .floating-note .note-icon {
    width: 34px;
    height: 34px;
  }

  .floating-note strong {
    font-size: .67rem;
  }

  .floating-note small {
    font-size: .56rem;
  }

  .hero-seal {
    right: -4px;
    bottom: 23px;
    width: 74px;
    font-size: .54rem;
  }

  .scroll-cue {
    bottom: 24px;
  }

  .partners-inner {
    gap: 32px;
    margin-top: -26px;
    padding: 27px;
    border-radius: 25px;
  }

  .partners-copy h2 {
    font-size: 2.15rem;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    height: 88px;
  }

  .partner-logo img {
    height: 42px;
  }

  .partner-logo:nth-child(2) img {
    height: 58px;
  }

  .partner-logo:nth-child(3) img {
    height: 31px;
  }

  .about-media {
    min-height: 495px;
  }

  .about-photo--main {
    width: 83%;
    height: 400px;
    border-radius: 78px 22px 22px 22px;
  }

  .about-photo--small {
    width: 49%;
    height: 210px;
    border-width: 6px;
    border-radius: 20px 20px 65px 20px;
  }

  .about-number {
    bottom: 12px;
    left: 0;
  }

  .about-copy h2,
  .payment-copy h2,
  .faq-intro h2,
  .testimonial-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .advantage-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    min-height: 245px;
  }

  .product-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .product-visual {
    height: 300px;
  }

  .order-flow {
    padding: 37px 0;
  }

  .order-title {
    display: block;
  }

  .order-title span {
    margin-bottom: 8px;
  }

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

  .order-steps li:nth-child(2)::after {
    display: none;
  }

  .payment-grid {
    gap: 54px;
  }

  .qris-card {
    width: min(100%, 340px);
  }

  .story-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 430px 260px 260px auto;
  }

  .story-photo--tall,
  .story-photo:nth-child(3),
  .owner-quote {
    grid-column: auto;
    grid-row: auto;
  }

  .story-photo--tall {
    border-radius: 70px 20px 20px 20px;
  }

  .owner-quote {
    grid-template-columns: 1fr;
    padding: 26px;
    border-radius: 22px 22px 65px 22px;
  }

  .owner-quote footer {
    grid-column: 1;
  }

  .testimonial-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .testimonial-heading .section-kicker::before {
    display: block;
  }

  .testimonial-track {
    width: calc(100% + 15px);
    display: flex;
    gap: 14px;
    padding: 8px 15px 22px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .testimonial-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card,
  .testimonial-card:last-child {
    width: min(86vw, 355px);
    min-width: min(86vw, 355px);
    min-height: 345px;
    scroll-snap-align: start;
  }

  .swipe-hint {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
    color: #5f7068;
    font-size: .62rem;
    font-weight: 700;
  }

  .swipe-hint span {
    width: 34px;
    height: 2px;
    background: var(--green-600);
  }

  .faq-grid {
    gap: 38px;
  }

  .faq-item summary {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 16px;
    padding: 17px 17px 17px 20px;
    font-size: .84rem;
  }

  .faq-item summary i {
    width: 38px;
    height: 38px;
  }

  .faq-answer {
    padding: 0 20px 21px;
  }

  .location-card {
    min-height: 0;
    gap: 42px;
    padding: 32px 24px 24px;
    border-radius: 27px;
  }

  .location-copy h2 {
    font-size: 2.55rem;
  }

  .map-embed {
    min-height: 300px;
    border-radius: 20px 20px 78px 20px;
  }

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

  .footer-partners {
    grid-column: auto;
  }

  .footer-bottom .container {
    min-height: 84px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    text-align: center;
  }

  .scroll-top {
    right: 13px;
    bottom: 82px;
  }

  .mobile-buy {
    position: fixed;
    z-index: 900;
    right: 10px;
    bottom: max(9px, env(safe-area-inset-bottom));
    left: 10px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 16px;
    color: var(--white);
    background: var(--green-900);
    box-shadow: 0 16px 36px rgba(10, 35, 25, .25);
    font-size: .79rem;
    font-weight: 800;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }

  body.menu-open .mobile-buy {
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
  }

  .mobile-buy svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .mobile-panel {
    padding-right: 18px;
    padding-left: 18px;
  }

  .nav-shell .brand-copy {
    display: none;
  }

  .nav-shell {
    width: calc(100% - 24px);
  }

  .mobile-panel-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-order {
    justify-content: center;
  }

  .powered-link {
    text-align: center;
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: .67rem;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.65rem, 14vw, 3.7rem);
  }

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

  .hero-grid,
  .hero-copy,
  .hero-visual {
    min-width: 0;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts div:last-child {
    display: none;
  }

  .floating-note--top {
    right: -1px;
  }

  .hero-seal {
    display: none;
  }

  .scroll-cue span {
    display: none;
  }

  .partners-inner {
    padding: 24px 19px;
  }

  .about-media {
    min-height: 425px;
  }

  .about-photo--main {
    height: 350px;
  }

  .about-photo--small {
    height: 170px;
  }

  .about-number {
    padding: 9px 12px;
  }

  .about-number strong {
    font-size: 2rem;
  }

  .product-visual {
    height: 270px;
  }

  .product-body {
    padding: 22px;
  }

  .order-steps {
    grid-template-columns: 1fr;
  }

  .order-steps li::after {
    display: none;
  }

  .payment-points > div {
    grid-template-columns: 42px 1fr;
  }

  .payment-points > div > span {
    width: 42px;
    height: 42px;
  }

  .story-grid {
    grid-template-rows: 370px 230px 230px auto;
  }

  .testimonial-card,
  .testimonial-card:last-child {
    width: 82vw;
    min-width: 82vw;
  }

  .footer-partner-grid {
    grid-template-columns: 1fr;
  }

  .footer-partner-grid > * {
    height: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .section-reveal.reveal-ready {
    opacity: 1;
    transform: none;
  }

  .hero-image-frame img {
    animation: none !important;
    transform: translate3d(-6.15%, 0, 0);
    will-change: auto;
  }
}

@supports not (backdrop-filter: blur(1px)) {
  .nav-shell {
    background: rgba(255, 255, 255, .98);
  }

  .story-photo figcaption {
    background: rgba(12, 43, 32, .9);
  }
}

@supports (content-visibility: auto) {
  .about,
  .advantages,
  .products,
  .payment,
  .story,
  .testimonials,
  .faq,
  .location {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}
